:root {
  --green-950: #06271d;
  --green-900: #093a2a;
  --green-800: #0d4c31;
  --green-700: #1d6a36;
  --green-600: #398f2e;
  --green-500: #59ad2d;
  --green-400: #79ca4c;
  --red-700: #c90018;
  --red-600: #e3061b;
  --red-500: #f32638;
  --ink: #0b221a;
  --text: #253b33;
  --muted: #62736d;
  --line: rgba(10, 61, 44, 0.14);
  --soft: #f3f8f1;
  --soft-2: #edf5eb;
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(7, 48, 34, 0.08);
  --shadow: 0 24px 70px rgba(7, 48, 34, 0.14);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --header-height: 84px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p {
  margin-top: 0;
}

::selection {
  color: #fff;
  background: var(--green-700);
}

:focus-visible {
  outline: 3px solid rgba(121, 202, 76, 0.85);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-sprite symbol,
svg use {
  pointer-events: none;
}

svg:not(.svg-sprite) {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 14px;
  right: 0;
  left: 0;
  padding-inline: 16px;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(100%, 1380px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 10px 14px 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 50px rgba(3, 36, 25, 0.16);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 136px;
  margin-right: 28px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 24px);
  margin-inline: auto;
}

.main-nav > a {
  position: relative;
  padding: 12px 0;
  color: #18332a;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  margin-left: 24px;
}

.nav-mobile-actions,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 12px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn svg {
  flex: 0 0 auto;
}

.btn--large {
  min-height: 64px;
  padding: 13px 22px;
  border-radius: 15px;
}

.btn--large span {
  display: grid;
  gap: 3px;
  text-align: left;
}

.btn--large small {
  font-size: 11px;
  font-weight: 650;
  opacity: 0.78;
}

.btn--green {
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  box-shadow: 0 12px 26px rgba(49, 130, 42, 0.24);
}

.btn--green:hover {
  box-shadow: 0 16px 36px rgba(49, 130, 42, 0.32);
}

.btn--red {
  color: #fff;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  box-shadow: 0 12px 26px rgba(201, 0, 24, 0.22);
}

.btn--red:hover {
  box-shadow: 0 16px 36px rgba(201, 0, 24, 0.3);
}

.btn--ghost {
  border-color: rgba(57, 143, 46, 0.5);
  color: var(--green-800);
  background: #fff;
}

.btn--ghost:hover {
  border-color: var(--green-500);
  background: var(--soft);
}

.btn--ghost-dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn--outline-green {
  border-color: rgba(57, 143, 46, 0.45);
  color: var(--green-800);
  background: transparent;
}

.btn--outline-green:hover {
  border-color: var(--green-500);
  background: var(--soft);
}

.btn--outline-red {
  border-color: rgba(227, 6, 27, 0.4);
  color: var(--red-700);
  background: transparent;
}

.btn--outline-red:hover {
  border-color: var(--red-600);
  background: #fff4f5;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 176px 0 70px;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
  isolation: isolate;
}

.hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 33, 23, 0.97) 0%, rgba(4, 53, 37, 0.87) 38%, rgba(5, 42, 30, 0.28) 72%, rgba(4, 27, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 36, 27, 0.92) 0%, transparent 42%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__network,
.section-network {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(121, 202, 76, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 72%, rgba(121, 202, 76, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 67% 22%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 83% 64%, rgba(121, 202, 76, 0.75) 0 2px, transparent 3px),
    linear-gradient(32deg, transparent 49.7%, rgba(130, 226, 86, 0.22) 50%, transparent 50.3%),
    linear-gradient(151deg, transparent 49.7%, rgba(255, 255, 255, 0.14) 50%, transparent 50.3%);
  background-size: auto, auto, auto, auto, 180px 180px, 230px 230px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.68fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(57, 143, 46, 0.2);
  border-radius: 999px;
  color: var(--green-700);
  background: rgba(89, 173, 45, 0.09);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  border-color: rgba(190, 255, 153, 0.22);
  color: #d9ffc2;
  background: rgba(84, 169, 47, 0.28);
  backdrop-filter: blur(8px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 span {
  color: #d4ffbd;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.hero__panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(8, 64, 42, 0.86), rgba(3, 32, 23, 0.76));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero__panel::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(121, 202, 76, 0.22);
  filter: blur(12px);
  content: "";
}

.hero__panel > * {
  position: relative;
}

.hero__panel-label,
.form-kicker {
  display: block;
  margin-bottom: 12px;
  color: #b9f798;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__panel h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
}

.check-list,
.feature-list {
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before,
.feature-list li::before {
  position: absolute;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-500);
  font-size: 12px;
  font-weight: 950;
  content: "✓";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--green-700);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link--light,
.hero__panel .text-link {
  color: #d5ffbd;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 66px;
}

.tile {
  position: relative;
  min-width: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.proof-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(33, 112, 48, 0.88), rgba(4, 52, 35, 0.9));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(16px);
}

.proof-card--red {
  background: linear-gradient(135deg, rgba(212, 8, 30, 0.91), rgba(102, 4, 20, 0.9));
}

.proof-card::after,
.value-card::after,
.service-card::after,
.outcome-card::after,
.benefit-card::after,
.process-card::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.proof-card:hover::after {
  border-color: rgba(255, 255, 255, 0.45);
}

.proof-card strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.proof-card small {
  display: block;
  color: rgba(255, 255, 255, 0.77);
  font-size: 13px;
  line-height: 1.38;
}

.tile__icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  color: #e3ffd2;
  background: rgba(255, 255, 255, 0.12);
}

.tile__icon svg {
  width: 28px;
  height: 28px;
}

.tile__icon--line {
  border-color: rgba(89, 173, 45, 0.24);
  color: var(--green-600);
  background: rgba(89, 173, 45, 0.08);
}

.tile__more {
  color: inherit;
  font-size: 12px;
  font-weight: 850;
  opacity: 0.64;
  white-space: nowrap;
}

.proof-card .tile__more {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section {
  position: relative;
  padding: clamp(82px, 8vw, 118px) 0;
}

.section--light,
.section--white {
  background: #fff;
}

.section--soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(121, 202, 76, 0.11), transparent 25%),
    linear-gradient(180deg, #f8fbf7, var(--soft));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.4fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.section-heading {
  max-width: 720px;
}

.section-heading--center {
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading--center .eyebrow {
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.5vw, 56px);
  text-wrap: balance;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.value-card,
.service-card,
.outcome-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.value-card:hover,
.service-card:hover,
.outcome-card:hover {
  border-color: rgba(89, 173, 45, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.value-card .tile__icon,
.service-card .tile__icon,
.outcome-card .tile__icon {
  margin-bottom: 22px;
}

.value-card h3,
.service-card h3,
.outcome-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
}

.value-card p,
.service-card p,
.outcome-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.value-card .tile__more,
.service-card .tile__more,
.outcome-card .tile__more {
  margin-top: auto;
  color: var(--green-700);
  opacity: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 278px;
}

.section--dark {
  color: #fff;
  background: linear-gradient(135deg, #042b1e, #0c4d2a 65%, #083422);
  isolation: isolate;
  overflow: hidden;
}

.section-network {
  z-index: -1;
  opacity: 0.42;
  mask-image: none;
}

.section-heading--inverse h2 {
  color: #fff;
}

.section-heading--inverse p {
  color: rgba(255, 255, 255, 0.7);
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px);
}

.benefit-card:hover::after {
  border-color: rgba(189, 255, 153, 0.36);
}

.benefit-card .tile__icon {
  margin-bottom: 28px;
}

.benefit-card h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 19px;
}

.benefit-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.benefit-card .tile__more {
  margin-top: auto;
  color: #cfffaf;
  opacity: 1;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 53px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--green-700));
  content: "";
}

.process-grid > li {
  min-width: 0;
}

.process-card {
  display: flex;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  min-height: 310px;
  padding: 20px 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.process-card:hover::after {
  border-color: rgba(89, 173, 45, 0.35);
}

.process-card__number {
  display: grid;
  z-index: 2;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: -38px 0 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--green-600);
  box-shadow: 0 6px 16px rgba(24, 112, 44, 0.24);
  font-size: 14px;
  font-weight: 900;
}

.process-card .tile__icon {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fff;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.process-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.process-card .tile__more {
  margin-top: auto;
  color: var(--green-700);
  opacity: 1;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.outcome-card {
  min-height: 258px;
  padding: 21px 18px;
  text-align: center;
}

.outcome-card .tile__icon {
  align-self: center;
}

.outcome-card h3 {
  font-size: 17px;
}

.outcome-card p {
  font-size: 13px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.package-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  content: "";
}

.package-card--red::before {
  background: linear-gradient(90deg, var(--red-500), var(--red-700));
}

.package-card--featured {
  border-color: rgba(89, 173, 45, 0.45);
  transform: translateY(-12px);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 10px 14px 9px;
  border-radius: 0 0 12px 12px;
  color: #fff;
  background: var(--green-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-card__head {
  padding-top: 5px;
}

.package-card--featured .package-card__head {
  padding-top: 26px;
}

.package-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card--red .package-card__label {
  color: var(--red-600);
}

.package-card h3 {
  margin-bottom: 10px;
  color: var(--green-800);
  font-size: clamp(28px, 2.6vw, 36px);
}

.package-card--red h3 {
  color: var(--red-700);
}

.package-card__head p {
  min-height: 52px;
  margin-bottom: 22px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.feature-list li {
  color: var(--text);
  font-size: 14px;
}

.package-card--red .feature-list li::before {
  background: var(--red-600);
}

.package-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  margin: auto 0 24px;
  color: var(--ink);
  font-size: clamp(27px, 2.5vw, 35px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.package-price > span {
  margin-right: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.package-price small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.package-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about {
  padding-top: 28px;
  background: #fff;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.52fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(4, 45, 31, 0.98), rgba(10, 78, 42, 0.84)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg") center / cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-card::after {
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.about-card__copy,
.holding-card {
  position: relative;
  z-index: 1;
}

.about-card h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 54px);
}

.about-card p {
  color: rgba(255, 255, 255, 0.78);
}

.holding-card {
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.holding-card img {
  width: min(100%, 190px);
  height: auto;
  margin-bottom: 14px;
}

.holding-card strong {
  line-height: 1.4;
}

.contact {
  position: relative;
  padding: clamp(90px, 9vw, 126px) 0;
  color: #fff;
  background: var(--green-950);
  isolation: isolate;
  overflow: hidden;
}

.contact__image {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 39, 28, 0.98), rgba(18, 91, 42, 0.88)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg") center / cover;
}

.contact__image::after {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.contact__copy h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
}

.contact__copy > p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.contact-list {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.contact-list a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-list a:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}

.contact-list a > span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--green-500);
}

.contact-list strong {
  min-width: 0;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-dark);
}

.contact-form__head {
  margin-bottom: 24px;
}

.contact-form .form-kicker {
  margin-bottom: 6px;
  color: var(--green-600);
}

.contact-form h3 {
  margin-bottom: 8px;
  font-size: 32px;
}

.contact-form__head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.field {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field--full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(9, 58, 42, 0.17);
  border-radius: 13px;
  color: var(--text);
  background: #f9fcf8;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(89, 173, 45, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(227, 6, 27, 0.1);
}

.field-error {
  display: block;
  min-height: 0;
  color: var(--red-700);
  font-size: 12px;
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--green-600);
}

.consent a {
  color: var(--green-700);
  font-weight: 800;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.btn--submit {
  min-width: 190px;
}

.btn--submit[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--green-700);
}

.form-status.is-error {
  color: var(--red-700);
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer {
  padding: 62px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #041b14;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(120px, 0.55fr) minmax(170px, 0.8fr) minmax(220px, 1fr) minmax(130px, 0.48fr);
  gap: clamp(24px, 4vw, 48px);
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.footer a,
.footer nav button {
  display: block;
  width: fit-content;
  margin: 8px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.footer a:hover,
.footer nav button:hover {
  color: #fff;
}

.footer__brand img {
  width: 158px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.footer__brand p {
  max-width: 310px;
  font-size: 13px;
}

.footer__holding img {
  width: 128px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__bottom a {
  margin: 0;
  font-size: 12px;
}

.detail-dialog {
  width: min(calc(100% - 28px), 660px);
  max-height: min(88vh, 800px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow-dark);
  overflow: visible;
}

.detail-dialog::backdrop {
  background: rgba(2, 24, 17, 0.72);
  backdrop-filter: blur(7px);
}

.detail-dialog__panel {
  position: relative;
  max-height: min(88vh, 800px);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: #fff;
  overflow-y: auto;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--soft);
  cursor: pointer;
}

.detail-dialog__kicker {
  display: block;
  margin-bottom: 9px;
  padding-right: 42px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-dialog h2 {
  padding-right: 38px;
  margin-bottom: 15px;
  font-size: clamp(29px, 5vw, 42px);
}

.detail-dialog p {
  color: var(--muted);
}

.detail-dialog ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.detail-dialog li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--soft);
}

.detail-dialog li::before {
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-600);
  font-size: 11px;
  font-weight: 900;
  content: "✓";
}

.detail-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.scroll-top {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 14px 32px rgba(4, 48, 33, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  z-index: 1800;
  left: 50%;
  bottom: 24px;
  width: min(calc(100% - 32px), 440px);
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-dark);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.noscript {
  position: fixed;
  z-index: 3000;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--red-700);
  text-align: center;
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.is-visible {
  animation: reveal-in 0.65s ease both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-page {
  min-height: 100vh;
  padding: 150px 0 90px;
  background: var(--soft);
}

.privacy-card {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 58px);
}

.privacy-card h2 {
  margin: 34px 0 12px;
  font-size: 25px;
}

.privacy-card p,
.privacy-card li {
  color: var(--text);
}

.privacy-card a {
  color: var(--green-700);
  font-weight: 800;
}

.privacy-back {
  margin-bottom: 24px;
}

@media (max-width: 1240px) {
  .header-inner {
    padding-left: 18px;
  }

  .brand {
    width: 124px;
    margin-right: 20px;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav > a {
    font-size: 13px;
  }

  .header-actions {
    margin-left: 18px;
  }

  .header-actions .btn {
    padding-inline: 15px;
    font-size: 13px;
  }

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

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

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

@media (max-width: 1060px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    top: 10px;
    padding-inline: 10px;
  }

  .header-inner {
    min-height: var(--header-height);
    padding: 8px 10px 8px 18px;
    border-radius: 0 0 22px 22px;
  }

  .brand {
    width: 118px;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 10px;
    left: 10px;
    display: grid;
    max-height: calc(100vh - 110px);
    align-content: start;
    justify-content: stretch;
    gap: 2px;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav > a:hover,
  .main-nav > a.is-active {
    color: var(--green-800);
    background: var(--soft);
  }

  .nav-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 0;
    padding-top: 142px;
  }

  .hero__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 720px;
  }

  .proof-grid {
    margin-top: 44px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    max-width: 850px;
  }

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 36px;
  }

  .process-grid::before {
    display: none;
  }

  .process-card__number {
    margin-top: -10px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .package-card--featured {
    transform: none;
  }

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

  .holding-card {
    max-width: 360px;
  }

  .contact__grid {
    max-width: 820px;
  }

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

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

  .hero {
    padding: 132px 0 54px;
  }

  .hero__image {
    background-image:
      linear-gradient(90deg, rgba(2, 33, 23, 0.97), rgba(4, 53, 37, 0.82)),
      linear-gradient(0deg, rgba(4, 36, 27, 0.9), transparent 55%),
      url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
    background-position: 56% center;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 65px);
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 112px;
  }

  .proof-card .tile__more {
    writing-mode: initial;
    transform: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading--center {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading--center .eyebrow {
    margin-inline: 0;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 47px);
  }

  .section-heading p {
    font-size: 16px;
  }

  .value-grid,
  .benefits-grid,
  .process-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .process-card,
  .outcome-card {
    min-height: 0;
  }

  .process-grid {
    gap: 24px;
  }

  .process-card {
    align-items: flex-start;
    text-align: left;
  }

  .process-card__number {
    position: absolute;
    top: 18px;
    right: 18px;
    margin: 0;
  }

  .package-card {
    padding: 28px 22px;
  }

  .package-card__actions {
    grid-template-columns: 1fr;
  }

  .about {
    padding-top: 12px;
  }

  .about-card {
    padding: 32px 24px;
  }

  .contact__copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn--submit {
    width: 100%;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding-left: 14px;
  }

  .brand {
    width: 108px;
  }

  .nav-mobile-actions {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    padding: 26px 21px;
    border-radius: 24px;
  }

  .proof-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .proof-card .tile__more {
    grid-column: 2;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: auto;
  }

  .detail-dialog__actions .btn {
    width: 100%;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .scroll-top,
  .toast,
  .detail-dialog,
  .hero__actions,
  .contact-form,
  .footer {
    display: none !important;
  }

  .hero,
  .section,
  .contact {
    padding: 30px 0;
    color: #000;
    background: #fff;
  }

  .hero__image,
  .hero__network,
  .section-network,
  .contact__image {
    display: none;
  }

  .hero h1,
  .hero h1 span,
  .section--dark h2,
  .section--dark h3,
  .contact h2 {
    color: #000;
  }
}

.package-card.is-selected {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(89, 173, 45, 0.14), var(--shadow);
}

.package-card--red.is-selected {
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(227, 6, 27, 0.1), var(--shadow);
}

.privacy-header-back {
  margin-left: auto;
}

@media (max-width: 560px) {
  .privacy-header-back {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 12px;
  }
}

/* =========================================================
   OKE PREMIUM — spójny system wizualny oparty na pierwotnym
   kierunku: energia, samorząd, zaufanie, funkcjonalność.
   ========================================================= */
:root {
  --green-950: #03291d;
  --green-900: #073d29;
  --green-850: #0a4b2d;
  --green-800: #105d31;
  --green-700: #247e32;
  --green-600: #3f982f;
  --green-500: #60b832;
  --green-400: #86d05c;
  --lime: #b8f18c;
  --red-700: #c80018;
  --red-600: #e3061b;
  --red-500: #f52d40;
  --ink: #09261b;
  --text: #254237;
  --muted: #677b72;
  --line: rgba(8, 61, 40, 0.13);
  --soft: #f4f8f1;
  --soft-2: #eaf4e6;
  --white: #fff;
  --shadow-sm: 0 14px 34px rgba(6, 43, 30, 0.08);
  --shadow: 0 22px 60px rgba(6, 43, 30, 0.13);
  --shadow-dark: 0 32px 90px rgba(0, 0, 0, 0.28);
  --radius-sm: 15px;
  --radius: 22px;
  --radius-lg: 32px;
  --header-height: 82px;
  --container: 1240px;
}

body {
  background:
    radial-gradient(circle at 12% 17%, rgba(96, 184, 50, 0.055), transparent 25rem),
    #fff;
}

.container {
  width: min(calc(100% - 44px), var(--container));
}

.site-header {
  top: 12px;
  padding-inline: 18px;
}

.header-inner {
  width: min(100%, 1410px);
  min-height: 78px;
  padding: 8px 14px 8px 28px;
  border: 1px solid rgba(8, 63, 40, 0.08);
  border-radius: 0 0 27px 27px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 44px rgba(2, 43, 28, 0.16);
}

.brand {
  width: 130px;
  margin-right: 34px;
}

.main-nav {
  gap: clamp(14px, 1.45vw, 25px);
}

.main-nav > a {
  padding: 13px 0;
  color: #16382b;
  font-size: 14px;
  font-weight: 780;
}

.btn {
  min-height: 48px;
  border-radius: 12px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.btn--green {
  background: linear-gradient(135deg, #55ac2f, #248334);
  box-shadow: 0 12px 28px rgba(48, 137, 45, 0.25);
}

.btn--red {
  background: linear-gradient(135deg, #f00b27, #cf001b);
  box-shadow: 0 12px 28px rgba(218, 0, 27, 0.22);
}

.btn--ghost {
  border-color: rgba(54, 145, 47, 0.5);
  background: #fff;
}

/* HERO */
.hero {
  min-height: 910px;
  padding: 166px 0 72px;
  isolation: isolate;
  background: var(--green-950);
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: -1px;
  left: -4%;
  z-index: 4;
  height: 58px;
  border-radius: 55% 55% 0 0 / 100% 100% 0 0;
  background: #fff;
  content: "";
  pointer-events: none;
}

.hero__image {
  background-image:
    linear-gradient(90deg, rgba(2, 39, 27, 0.98) 0%, rgba(3, 47, 31, 0.86) 42%, rgba(3, 40, 29, 0.27) 72%, rgba(3, 35, 25, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 45, 31, 0.08) 0%, rgba(3, 33, 24, 0.08) 58%, rgba(1, 28, 20, 0.88) 100%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.03);
}

.hero__network {
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 12% 38%, rgba(137, 255, 105, 0.82) 0 2px, transparent 3px),
    radial-gradient(circle at 37% 23%, rgba(137, 255, 105, 0.68) 0 2px, transparent 3px),
    radial-gradient(circle at 69% 66%, rgba(137, 255, 105, 0.64) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 31%, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px),
    linear-gradient(24deg, transparent 48.7%, rgba(128, 235, 91, 0.13) 49%, rgba(128, 235, 91, 0.13) 49.3%, transparent 49.6%),
    linear-gradient(152deg, transparent 48.7%, rgba(128, 235, 91, 0.11) 49%, rgba(128, 235, 91, 0.11) 49.3%, transparent 49.6%);
  background-size: auto, auto, auto, auto, 270px 210px, 330px 260px;
}

.hero__grid {
  position: relative;
  z-index: 5;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.72fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}

.hero__copy {
  max-width: 690px;
}

.eyebrow {
  min-height: 30px;
  padding: 6px 13px;
  border: 1px solid rgba(59, 145, 52, 0.18);
  border-radius: 999px;
  background: rgba(89, 173, 45, 0.08);
  color: #398f2e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.075em;
}

.eyebrow--light {
  border-color: rgba(183, 247, 140, 0.22);
  background: rgba(86, 176, 49, 0.34);
  color: #d6ffc0;
}

.hero h1 {
  max-width: 710px;
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(56px, 6.25vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  color: var(--lime);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.48;
}

.hero__actions {
  gap: 14px;
}

.btn--large {
  min-height: 65px;
  padding: 13px 22px;
  border-radius: 15px;
}

.hero__note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  padding: 38px 38px 34px;
  border: 1px solid rgba(190, 255, 164, 0.23);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(116, 211, 76, 0.21), transparent 42%),
    linear-gradient(145deg, rgba(10, 70, 46, 0.95), rgba(4, 44, 32, 0.95));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.31);
  backdrop-filter: blur(14px);
}

.hero__panel::after {
  position: absolute;
  right: -55px;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(188, 255, 158, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(188, 255, 158, 0.04), 0 0 0 58px rgba(188, 255, 158, 0.025);
  content: "";
}

.hero__panel-label {
  color: #b7f88f;
  letter-spacing: 0.09em;
}

.hero__panel h2 {
  max-width: 460px;
  margin: 13px 0 22px;
  color: #fff;
  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.03;
}

.check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.proof-grid {
  position: relative;
  z-index: 7;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-card {
  min-height: 128px;
  padding: 22px 24px;
  border: 1px solid rgba(163, 246, 129, 0.26);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(12, 92, 47, 0.94), rgba(4, 60, 39, 0.97));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.proof-card--red {
  border-color: rgba(255, 129, 141, 0.32);
  background: linear-gradient(135deg, rgba(208, 2, 25, 0.97), rgba(112, 0, 16, 0.98));
}

.proof-card strong {
  font-size: clamp(24px, 2vw, 31px);
}

.proof-card small {
  max-width: 245px;
}

.proof-card .tile__more {
  opacity: 0.72;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* SECTIONS & GRAPHIC BACKGROUNDS */
.section {
  position: relative;
  padding: 88px 0;
}

.section--light,
.section--white,
.section--soft {
  isolation: isolate;
  overflow: hidden;
}

.section--light::before,
.section--soft::before,
.section--white::before,
#pakiety::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.section--light::before {
  background:
    radial-gradient(circle at 9% 42%, rgba(103, 196, 58, 0.13), transparent 25rem),
    radial-gradient(circle at 89% 12%, rgba(27, 116, 62, 0.08), transparent 22rem),
    linear-gradient(135deg, transparent 49.5%, rgba(57, 143, 46, 0.045) 50%, transparent 50.5%);
  background-size: auto, auto, 180px 180px;
}

.section--soft {
  background: linear-gradient(180deg, #f7fbf5 0%, #eef6eb 100%);
}

.section--soft::before {
  opacity: 0.72;
  background:
    radial-gradient(circle at 12% 22%, rgba(101, 190, 57, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 33% 63%, rgba(101, 190, 57, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 24%, rgba(101, 190, 57, 0.13) 0 2px, transparent 3px),
    linear-gradient(29deg, transparent 49.1%, rgba(48, 137, 45, 0.05) 49.4%, rgba(48, 137, 45, 0.05) 49.7%, transparent 50%),
    linear-gradient(150deg, transparent 49.1%, rgba(48, 137, 45, 0.04) 49.4%, rgba(48, 137, 45, 0.04) 49.7%, transparent 50%);
  background-size: auto, auto, auto, 270px 190px, 330px 230px;
}

.section--white::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 180, 53, 0.08), transparent 24rem),
    linear-gradient(90deg, transparent 49.7%, rgba(22, 94, 53, 0.035) 50%, transparent 50.3%);
  background-size: auto, 150px 150px;
}

.intro-grid {
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 58px;
  align-items: center;
}

.section-heading h2 {
  margin: 15px 0 15px;
  color: var(--ink);
  font-size: clamp(36px, 4.15vw, 58px);
  line-height: 1.02;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading--center {
  max-width: 790px;
  margin-bottom: 42px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.value-card,
.service-card,
.outcome-card,
.process-card {
  border: 1px solid rgba(10, 78, 47, 0.11);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 38px rgba(7, 50, 34, 0.08);
  backdrop-filter: blur(8px);
}

.value-card {
  min-height: 265px;
  padding: 24px 20px 20px;
  text-align: center;
}

.tile__icon--line {
  border: 1px solid rgba(84, 172, 48, 0.22);
  background: linear-gradient(145deg, #f6fbf4, #e9f5e5);
  color: #52a938;
}

.value-card .tile__icon,
.service-card .tile__icon,
.outcome-card .tile__icon {
  margin-inline: auto;
}

.value-card h3,
.service-card h3,
.outcome-card h3 {
  color: #17392d;
}

.tile__more {
  color: #3a8f38;
  font-weight: 850;
}

.tile:hover,
.tile:focus-visible {
  border-color: rgba(81, 173, 46, 0.43);
  box-shadow: 0 24px 52px rgba(7, 50, 34, 0.14);
  transform: translateY(-5px);
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 258px;
  padding: 26px 22px 20px;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
}

.service-card p {
  max-width: 250px;
  margin-inline: auto;
}

/* BENEFITS */
.section--dark {
  padding: 86px 0 92px;
  background:
    linear-gradient(135deg, rgba(2, 39, 26, 0.98), rgba(7, 85, 39, 0.91)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg") center 58% / cover;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.section--dark::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(32deg, transparent 49.25%, rgba(123, 240, 84, 0.09) 49.5%, rgba(123, 240, 84, 0.09) 49.75%, transparent 50%),
    linear-gradient(148deg, transparent 49.25%, rgba(123, 240, 84, 0.075) 49.5%, rgba(123, 240, 84, 0.075) 49.75%, transparent 50%),
    radial-gradient(circle at 8% 26%, rgba(167, 255, 129, 0.48) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 72%, rgba(167, 255, 129, 0.36) 0 2px, transparent 3px);
  background-size: 260px 220px, 330px 260px, auto, auto;
  content: "";
  opacity: 0.82;
}

.section-heading--inverse h2,
.section-heading--inverse p {
  color: #fff;
}

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

.benefit-card {
  min-height: 245px;
  padding: 25px 19px 21px;
  border: 1px solid rgba(173, 255, 137, 0.17);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(13px);
  text-align: center;
}

.benefit-card .tile__icon {
  margin-inline: auto;
  background: rgba(121, 207, 81, 0.16);
  color: #baf494;
}

.benefit-card h3 {
  color: #fff;
  font-size: 18px;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.72);
}

.benefit-card .tile__more {
  color: #baf494;
}

/* PROCESS */
.process-grid {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-grid::before {
  position: absolute;
  top: 57px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(85, 165, 54, 0.46) 7%, rgba(85, 165, 54, 0.46) 93%, transparent);
  content: "";
}

.process-card {
  min-height: 275px;
  padding: 28px 18px 20px;
  text-align: center;
}

.process-card__number {
  top: -13px;
  left: 19px;
  width: 32px;
  height: 32px;
  border: 3px solid #fff;
  background: linear-gradient(135deg, #5eb63b, #2d8036);
  box-shadow: 0 7px 16px rgba(40, 121, 42, 0.24);
}

.process-card .tile__icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin: 0 auto 17px;
  background: #fff;
  box-shadow: 0 0 0 7px #edf6e9;
}

/* OUTCOMES */
.outcomes-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.outcome-card {
  min-height: 232px;
  padding: 23px 15px 19px;
  text-align: center;
}

.outcome-card h3 {
  font-size: 17px;
}

.outcome-card p {
  font-size: 14px;
}

/* PACKAGES */
#pakiety {
  background: #fff;
}

#pakiety::after {
  opacity: 0.82;
  background:
    radial-gradient(circle at 12% 75%, rgba(94, 183, 52, 0.13), transparent 22rem),
    radial-gradient(circle at 92% 26%, rgba(225, 6, 27, 0.06), transparent 20rem),
    linear-gradient(31deg, transparent 49.5%, rgba(52, 138, 48, 0.035) 49.8%, transparent 50.1%);
  background-size: auto, auto, 230px 180px;
}

.packages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.package-card {
  min-height: 520px;
  padding: 34px 30px 28px;
  border: 1px solid rgba(9, 75, 45, 0.13);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 58px rgba(5, 45, 30, 0.11);
}

.package-card::before {
  height: 7px;
}

.package-card--featured {
  transform: translateY(-10px);
  border-color: rgba(75, 166, 46, 0.42);
  box-shadow: 0 30px 72px rgba(5, 61, 35, 0.17);
}

.package-card h3 {
  font-size: clamp(27px, 2.4vw, 34px);
}

.package-card__label {
  color: #3c8f35;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.package-card--red .package-card__label,
.package-card--red h3 {
  color: var(--red-600);
}

.package-price {
  padding-top: 21px;
  border-top: 1px solid rgba(10, 73, 45, 0.1);
  font-size: 31px;
}

.package-card__actions {
  grid-template-columns: 1fr 1fr;
}

.package-badge {
  top: 9px;
  right: 22px;
  border-radius: 0 0 12px 12px;
}

/* ABOUT */
.about {
  padding: 70px 0 84px;
  background: linear-gradient(180deg, #f1f7ee, #fff);
}

.about-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.55fr);
  padding: 44px 52px;
  border: 1px solid rgba(164, 247, 128, 0.19);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(3, 48, 31, 0.98) 0%, rgba(4, 66, 36, 0.94) 54%, rgba(4, 54, 36, 0.72) 100%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg") center 38% / cover;
  box-shadow: 0 28px 72px rgba(3, 43, 27, 0.17);
}

.about-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(28deg, transparent 49.3%, rgba(132, 236, 94, 0.08) 49.6%, transparent 49.9%),
    radial-gradient(circle at 82% 24%, rgba(143, 251, 103, 0.4) 0 2px, transparent 3px);
  background-size: 280px 200px, auto;
  content: "";
  pointer-events: none;
}

.about-card__copy,
.holding-card {
  position: relative;
  z-index: 1;
}

.about-card h2 {
  color: #fff;
  font-size: clamp(36px, 4vw, 55px);
}

.about-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.holding-card {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 21px 55px rgba(0, 0, 0, 0.24);
}

.holding-card img {
  max-width: 210px;
  max-height: 180px;
  object-fit: contain;
}

/* CONTACT */
.contact {
  padding: 86px 0;
  background: #073b2a;
}

.contact__image {
  background-image:
    linear-gradient(90deg, rgba(2, 39, 28, 0.98), rgba(7, 81, 39, 0.91) 58%, rgba(5, 52, 36, 0.82)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center 52%;
  background-size: cover;
}

.contact::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 49.35%, rgba(125, 235, 87, 0.08) 49.6%, transparent 49.85%),
    radial-gradient(circle at 15% 72%, rgba(133, 244, 95, 0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 67% 12%, rgba(133, 244, 95, 0.32) 0 2px, transparent 3px);
  background-size: 280px 210px, auto, auto;
  content: "";
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
  gap: clamp(48px, 7vw, 96px);
}

.contact h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(45px, 5vw, 68px);
}

.contact-list {
  max-width: 600px;
  gap: 10px;
}

.contact-list a {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.contact-form {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.31);
}

.field input,
.field select,
.field textarea {
  border-radius: 11px;
  background: #fbfdf9;
}

/* FOOTER */
.footer {
  background: #02241a;
}

.footer__holding img {
  max-height: 165px;
  object-fit: contain;
}

/* DIALOG */
.detail-dialog {
  max-width: 760px;
  border-radius: 28px;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.38);
}

.detail-dialog__panel {
  padding: 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(99, 185, 54, 0.11), transparent 17rem),
    #fff;
}

.detail-dialog__panel li::before {
  background: linear-gradient(135deg, #64b83c, #2d8434);
}

/* RESPONSIVE */
@media (max-width: 1160px) {
  .header-actions {
    margin-left: 14px;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav > a {
    font-size: 13px;
  }

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

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

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 142px;
  }

  .hero__grid,
  .intro-grid,
  .contact__grid,
  .about-card {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__panel {
    max-width: 700px;
  }

  .proof-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .package-card--featured {
    min-height: auto;
    transform: none;
  }

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

  .process-grid::before {
    display: none;
  }

  .holding-card {
    max-width: 360px;
  }
}

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

  .site-header {
    top: 8px;
    padding-inline: 8px;
  }

  .header-inner {
    min-height: 67px;
    padding: 8px 10px 8px 16px;
    border-radius: 0 0 21px 21px;
  }

  .brand {
    width: 112px;
  }

  .hero {
    padding: 124px 0 64px;
  }

  .hero::after {
    height: 34px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__panel {
    padding: 28px 23px;
  }

  .hero__panel h2 {
    font-size: 31px;
  }

  .proof-grid {
    margin-top: 34px;
  }

  .proof-card .tile__more {
    writing-mode: initial;
    transform: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .value-grid,
  .services-grid,
  .benefits-grid,
  .outcomes-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .service-card,
  .benefit-card,
  .outcome-card,
  .process-card {
    min-height: 0;
  }

  .packages-grid {
    gap: 16px;
  }

  .package-card {
    padding: 29px 23px 24px;
  }

  .package-card__actions {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 33px 25px;
  }

  .contact {
    padding: 72px 0;
  }

  .contact h2 {
    font-size: 44px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .detail-dialog__panel {
    padding: 31px 22px 25px;
  }
}

/* =========================================================
   OKE PREMIUM v4 — bezpieczne dopracowanie detali
   Cel: poprawa typografii, numerów procesu i stabilności kafelków
   bez zmiany głównej siatki strony.
   ========================================================= */
.heading-line {
  display: block;
}

.section-heading--center h2 {
  text-wrap: balance;
}

.section-heading--center p {
  max-width: 720px;
  margin-inline: auto;
}

/* Kafelki: stały rytm i mniej przypadkowych różnic w wysokościach tekstu. */
.value-card,
.service-card,
.benefit-card,
.outcome-card,
.process-card {
  will-change: transform;
}

.value-card p,
.service-card p,
.benefit-card p,
.outcome-card p,
.process-card p {
  text-wrap: pretty;
}

.value-card h3,
.service-card h3,
.benefit-card h3,
.outcome-card h3,
.process-card h3 {
  text-wrap: balance;
}

/* Proces: numerki nie mogą być ucięte przez overflow kafelka. */
.process-grid {
  padding-top: 22px;
}

.process-grid > li {
  position: relative;
}

.process-card.tile {
  position: relative;
  overflow: visible;
}

.process-card__number {
  position: absolute;
  top: -18px;
  left: 50%;
  right: auto;
  z-index: 5;
  margin: 0;
  transform: translateX(-50%);
}

.process-card .tile__icon {
  margin-top: 4px;
}

.process-card::after {
  inset: 0;
  overflow: hidden;
}

/* Delikatne dopracowanie procesu: ikona i numer mają wyglądać jak jedna oś. */
.process-card .tile__icon::after {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(95, 184, 59, 0.09);
  content: "";
}

/* Pakiety: badge nie nachodzi na nagłówki na węższych szerokościach. */
.package-card--featured .package-card__head {
  padding-top: 34px;
}

.package-badge {
  max-width: calc(100% - 44px);
  white-space: nowrap;
}

/* Stopka i kontakt: bezpieczne łamanie długich adresów. */
.footer a,
.footer nav button,
.contact-list strong {
  overflow-wrap: anywhere;
}

/* Bardzo małe ekrany: numerki procesu po prawej, bez kolizji z ikoną. */
@media (max-width: 720px) {
  .heading-line {
    display: inline;
  }

  .section-heading--center p {
    margin-inline: 0;
  }

  .process-grid {
    padding-top: 0;
  }

  .process-card.tile {
    overflow: hidden;
    padding-right: 68px;
  }

  .process-card__number {
    top: 18px;
    right: 18px;
    left: auto;
    transform: none;
  }

  .process-card .tile__icon {
    margin-top: 0;
  }
}

@media (max-width: 420px) {
  .section-heading h2 {
    letter-spacing: -0.045em;
  }

  .contact h2,
  .hero h1 {
    letter-spacing: -0.06em;
  }

  .package-badge {
    right: 16px;
    font-size: 10px;
  }
}


/* =========================================================
   OKE PREMIUM v4 — dopracowanie hierarchii, merytoryki i CTA
   Bez przebudowy siatki: tylko bezpieczne wzmocnienia tekstu i detali.
   ========================================================= */
.hero__lead {
  max-width: 740px;
}

.hero__panel .check-list li {
  line-height: 1.5;
}

.hero__panel-label::before,
.package-card__label::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translateY(-1px);
}

.value-card,
.service-card,
.benefit-card,
.outcome-card,
.process-card,
.package-card {
  isolation: isolate;
}

.tile:hover .tile__icon,
.tile:focus-visible .tile__icon {
  transform: translateY(-2px) scale(1.03);
}

.tile__icon {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.value-card::before,
.service-card::before,
.outcome-card::before {
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green-500), rgba(89, 173, 45, 0));
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.value-card:hover::before,
.service-card:hover::before,
.outcome-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.value-card h3,
.service-card h3 {
  min-height: 2.25em;
}

.service-card p,
.outcome-card p {
  min-height: 3.1em;
}

.package-meta {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 16px;
  border: 1px solid rgba(10, 61, 44, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(243, 248, 241, 0.95), rgba(255,255,255,0.82));
}

.package-card--red .package-meta {
  border-color: rgba(227, 6, 27, 0.12);
  background: linear-gradient(180deg, rgba(255, 244, 245, 0.94), rgba(255,255,255,0.82));
}

.package-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.package-meta strong {
  color: var(--ink);
}

.package-card__head p {
  min-height: 74px;
}

.package-card--featured .package-card__head {
  padding-top: 38px;
}


.contact-list a:hover,
.footer a:hover,
.footer nav button:hover {
  color: #d5ffbd;
}

.section-heading--center p {
  text-wrap: pretty;
}

@media (max-width: 1240px) {
  .value-card h3,
  .service-card h3,
  .service-card p,
  .outcome-card p {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .hero__lead {
    font-size: 17px;
  }

  .package-card__head p {
    min-height: 0;
  }

  .package-meta {
    padding: 14px;
  }
}


/* ===== V5 cosmetic refinements: footer logos + hero background ===== */

.footer {
  background: linear-gradient(180deg, #041b14 0%, #07271d 100%);
}

.footer__grid {
  align-items: start;
}

.footer__brand img,
.footer__holding img {
  display: block;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.footer__brand img {
  width: 184px;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.footer__holding img {
  width: 154px;
  padding: 14px 16px;
}

.hero__image {
  background-image:
    linear-gradient(90deg, rgba(2, 39, 27, 0.97) 0%, rgba(3, 47, 31, 0.82) 39%, rgba(3, 40, 29, 0.17) 73%, rgba(3, 35, 25, 0.02) 100%),
    linear-gradient(180deg, rgba(4, 45, 31, 0.05) 0%, rgba(3, 33, 24, 0.05) 58%, rgba(1, 28, 20, 0.84) 100%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: 68% 47%;
  background-size: cover;
  filter: saturate(1.04) contrast(1.02);
}

@media (min-width: 1500px) {
  .hero__image {
    background-position: 72% 46%;
  }
}

@media (max-width: 1024px) {
  .hero__image {
    background-position: 63% 49%;
  }
}

@media (max-width: 767px) {
  .hero__image {
    background-position: 61% 50%;
  }

  .footer__brand img {
    width: 172px;
  }

  .footer__holding img {
    width: 146px;
  }
}


/* ===== V6 refined background + footer logos ===== */

.hero__image {
  background-image:
    linear-gradient(90deg, rgba(2, 39, 27, 0.98) 0%, rgba(3, 47, 31, 0.88) 38%, rgba(3, 40, 29, 0.18) 70%, rgba(3, 35, 25, 0.04) 100%),
    linear-gradient(180deg, rgba(4, 45, 31, 0.05) 0%, rgba(3, 33, 24, 0.07) 60%, rgba(1, 28, 20, 0.84) 100%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, center, right 2% center;
  background-size: auto, auto, 1260px auto;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.02);
}

.section--dark {
  background-image:
    linear-gradient(135deg, rgba(2, 39, 26, 0.98), rgba(7, 85, 39, 0.91)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, right -34px center;
  background-size: auto, 1160px auto;
  background-repeat: no-repeat;
}

.about-card {
  background-image:
    linear-gradient(90deg, rgba(3, 48, 31, 0.98) 0%, rgba(4, 66, 36, 0.94) 54%, rgba(4, 54, 36, 0.72) 100%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, right -36px center;
  background-size: auto, 980px auto;
  background-repeat: no-repeat;
}

.contact__image {
  background-image:
    linear-gradient(90deg, rgba(2, 39, 28, 0.98), rgba(7, 81, 39, 0.91) 58%, rgba(5, 52, 36, 0.82)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, right -34px center;
  background-size: auto, 1160px auto;
  background-repeat: no-repeat;
}

.footer {
  background: linear-gradient(180deg, #041b14 0%, #06251a 100%);
}

.footer__logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 146px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.footer__brand .footer__logo-panel {
  margin-bottom: 18px;
}

.footer__brand img,
.footer__holding img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 88px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  filter: none;
}

.footer__holding img {
  max-height: 96px;
}

@media (max-width: 1280px) {
  .hero__image {
    background-position: center, center, right -46px center;
    background-size: auto, auto, 1180px auto;
  }

  .section--dark,
  .contact__image {
    background-position: center, right -92px center;
    background-size: auto, 1080px auto;
  }

  .about-card {
    background-position: center, right -86px center;
    background-size: auto, 930px auto;
  }
}

@media (max-width: 1024px) {
  .hero__image {
    background-position: center, center, right -160px center;
    background-size: auto, auto, 1080px auto;
  }

  .section--dark,
  .contact__image {
    background-position: center, right -170px center;
    background-size: auto, 980px auto;
  }

  .about-card {
    background-position: center, right -130px center;
    background-size: auto, 860px auto;
  }
}

@media (max-width: 767px) {
  .hero__image {
    background-position: center, center, 68% 52%;
    background-size: auto, auto, 920px auto;
  }

  .section--dark,
  .contact__image {
    background-position: center, 64% center;
    background-size: auto, 900px auto;
  }

  .about-card {
    background-position: center, 68% center;
    background-size: auto, 780px auto;
  }

  .footer__logo-panel {
    width: min(100%, 210px);
    min-height: 138px;
  }

  .footer__brand img,
  .footer__holding img {
    max-height: 82px;
  }
}


/* ===== V7: clean thematic background replacement ===== */

.hero__image {
  background-image:
    linear-gradient(90deg, rgba(2, 39, 27, 0.98) 0%, rgba(3, 47, 31, 0.90) 34%, rgba(3, 40, 29, 0.34) 63%, rgba(3, 35, 25, 0.14) 100%),
    linear-gradient(180deg, rgba(4, 45, 31, 0.06) 0%, rgba(3, 33, 24, 0.05) 58%, rgba(1, 28, 20, 0.84) 100%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, center, 74% 52%;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}

.section--dark {
  background-image:
    linear-gradient(135deg, rgba(2, 39, 26, 0.98), rgba(7, 85, 39, 0.91)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, 72% 52%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.about-card {
  background-image:
    linear-gradient(90deg, rgba(3, 48, 31, 0.98) 0%, rgba(4, 66, 36, 0.94) 54%, rgba(4, 54, 36, 0.72) 100%),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, 74% 52%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.contact__image {
  background-image:
    linear-gradient(90deg, rgba(2, 39, 28, 0.98), rgba(7, 81, 39, 0.91) 58%, rgba(5, 52, 36, 0.82)),
    url("assets/hero-energy-bg-wdrozenie-20260715.jpg");
  background-position: center, 72% 52%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

@media (max-width: 1280px) {
  .hero__image {
    background-position: center, center, 71% 52%;
  }

  .section--dark,
  .contact__image {
    background-position: center, 69% 52%;
  }

  .about-card {
    background-position: center, 70% 52%;
  }
}

@media (max-width: 1024px) {
  .hero__image {
    background-position: center, center, 68% 52%;
  }

  .section--dark,
  .contact__image {
    background-position: center, 66% 52%;
  }

  .about-card {
    background-position: center, 67% 52%;
  }
}

@media (max-width: 767px) {
  .hero__image {
    background-position: center, center, 64% 52%;
  }

  .section--dark,
  .contact__image {
    background-position: center, 62% 52%;
  }

  .about-card {
    background-position: center, 63% 52%;
  }
}


/* ===== FINAL 10/10 polishing: controlled refinements only ===== */

/* Stronger readability over the new background without hiding the scenery */
.hero__copy {
  position: relative;
}

.hero__copy::before {
  position: absolute;
  inset: -28px -34px -24px -34px;
  z-index: -1;
  border-radius: 34px;
  background: radial-gradient(circle at 22% 35%, rgba(2, 39, 27, 0.44), rgba(2, 39, 27, 0.12) 56%, transparent 74%);
  content: "";
  pointer-events: none;
}

.hero__lead {
  text-wrap: balance;
}

.hero__note {
  max-width: 620px;
}

/* More premium, consistent CTA rhythm */
.hero__actions .btn {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.btn--green:hover,
.btn--red:hover {
  box-shadow: 0 20px 48px rgba(4, 45, 31, 0.22);
}

/* More controlled proof cards in hero */
.proof-card {
  min-height: 128px;
}

.proof-card strong {
  letter-spacing: -0.025em;
}

/* Tighter, more premium text rhythm for cards */
.value-card h3,
.service-card h3,
.benefit-card h3,
.process-card h3,
.outcome-card h3,
.package-card h3 {
  text-wrap: balance;
}

.value-card p,
.service-card p,
.benefit-card p,
.process-card p,
.outcome-card p,
.package-card p {
  text-wrap: pretty;
}

/* Better visual separation between content and background in dark sections */
.section--dark::after,
.contact::after {
  opacity: 0.72;
}

/* Contact section: keep form visually premium but not too heavy */
.contact-form {
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.27);
}

.contact-list a {
  min-height: 74px;
}

/* Final footer polish: more intentional spacing and equal logo presentation */
.footer {
  padding-top: 70px;
}

.footer__grid {
  align-items: start;
}

.footer__brand p {
  margin-top: 18px;
}

.footer__logo-panel {
  width: min(100%, 226px);
  min-height: 150px;
  border-color: rgba(255, 255, 255, 0.115);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025));
}

.footer__brand img,
.footer__holding img {
  max-height: 92px;
}

/* Keep the new clean background, never old files */
.hero__image,
.section--dark,
.about-card,
.contact__image {
  background-attachment: scroll;
}

/* Mobile final refinements */
@media (max-width: 767px) {
  .hero__copy::before {
    inset: -22px -20px -18px -20px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(2, 39, 27, 0.36), rgba(2, 39, 27, 0.08));
  }

  .hero__actions .btn {
    width: 100%;
  }

  .proof-card {
    min-height: 116px;
  }

  .footer {
    padding-top: 56px;
  }

  .footer__logo-panel {
    min-height: 132px;
  }
}

/* Reduced motion remains respected */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .tile,
  .reveal {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


/* ===== PATCH: typography and value cards must not cut words ===== */
#onas .intro-grid {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(30px, 3.6vw, 48px);
}

#onas .value-grid {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 14px;
}

#onas .value-card {
  min-width: 0;
  padding-inline: clamp(18px, 1.7vw, 24px);
}

#onas .value-card h3,
#onas .value-card p,
#onas .value-card .tile__more {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

#onas .value-card h3 {
  font-size: clamp(18px, 1.15vw, 20px);
  line-height: 1.12;
}

#onas .value-card .tile__more {
  white-space: normal;
  line-height: 1.25;
}

@media (max-width: 1320px) {
  #onas .intro-grid {
    grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1.46fr);
    gap: 34px;
  }
}

@media (max-width: 1180px) {
  #onas .intro-grid {
    grid-template-columns: 1fr;
  }

  #onas .value-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  #onas .value-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== WDROŻENIE 10/10: FAQ, thank-you page, tracking-safe polish ===== */
.faq {
  background:
    radial-gradient(circle at 86% 18%, rgba(88, 174, 45, 0.10), transparent 22rem),
    linear-gradient(180deg, #f4f9f2, #fff);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq .section-heading .btn {
  margin-top: 8px;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(9, 75, 45, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(5, 45, 30, 0.075);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(89, 173, 45, 0.12);
  color: var(--green-700);
  content: "+";
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: -6px 22px 21px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.thanks-page .site-header {
  position: fixed;
}

.thanks-hero {
  position: relative;
  min-height: 760px;
  padding: 190px 0 110px;
  isolation: isolate;
  background: var(--green-950);
}

.thanks-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(190, 255, 164, 0.22);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(9, 64, 43, 0.94), rgba(3, 39, 29, 0.94));
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.thanks-card h1 {
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(46px, 7vw, 78px);
}

.thanks-card p {
  max-width: 650px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.thanks-card strong {
  color: #fff;
}

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

  .faq .section-heading {
    position: static;
  }
}

@media (max-width: 767px) {
  .faq-list summary {
    padding: 18px 18px;
  }

  .faq-list p {
    margin-inline: 18px;
  }

  .thanks-hero {
    min-height: 700px;
    padding-top: 150px;
  }

  .thanks-card {
    padding: 28px 22px;
  }
}


/* ===== Final logo refinement: header/footer brand integration ===== */

.brand {
  width: auto;
  margin-right: 34px;
  padding: 4px 0;
}

.brand img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 170px;
  object-fit: contain;
}

.site-header .brand {
  flex-shrink: 0;
}

.footer__logo-panel {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-start;
}

.footer__brand .footer__logo-panel,
.footer__holding .footer__logo-panel {
  margin-bottom: 18px;
}

.footer__brand img,
.footer__holding img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.footer__brand img {
  max-height: 72px;
}

.footer__holding img {
  max-height: 84px;
}

.footer__brand p {
  max-width: 240px;
}

@media (max-width: 1024px) {
  .brand img {
    height: 54px;
    max-width: 158px;
  }
}

@media (max-width: 767px) {
  .brand {
    margin-right: 16px;
  }

  .brand img {
    height: 46px;
    max-width: 132px;
  }

  .footer__brand img {
    max-height: 66px;
  }

  .footer__holding img {
    max-height: 76px;
  }
}
