
/* ============================================================
   ENERGETSKA IZKAZNICA — style.css (2025 Redesign)
   Colors: rgba(208,50,56,1) red · #1a1a1a ink · white/light
   Fonts: Source Sans 3 + Domine
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        rgba(208, 50, 56, 1.00);
  --redDark:    #b8242f;
  --redLight:   rgba(208, 50, 56, 0.07);
  --redMid:     rgba(208, 50, 56, 0.14);

  --black:      #0e0e0e;
  --ink:        #1a1a1a;
  --inkMid:     #3d3d3d;
  --inkMuted:   #6b6b6b;
  --rule:       #e2e2e0;
  --bg:         #ffffff;
  --bgLight:    #f6f6f4;
  --bgDark:     #111111;

  --ffSans:     'Source Sans 3', system-ui, sans-serif;
  --ffSerif:    'Domine', Georgia, serif;

  --maxW:       1220px;
  --gutter:     clamp(1.5rem, 5vw, 2.5rem);
  --sectionPy:  clamp(3.85rem, 7vw, 6.65rem);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeOut:    cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 220ms var(--ease);
  --transitionSlow: 360ms var(--easeOut);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ffSans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bgLight); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── FOCUS ────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: var(--maxW);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.9rem;
  font-family: var(--ffSans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 0;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}
.btn--primary:hover {
  background: var(--redDark);
  border-color: var(--redDark);
  box-shadow: 0 6px 24px rgba(208, 50, 56, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--rule);
}
.btn--ghost:hover { border-color: var(--inkMid); }

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--red);
  border: 2px solid #fff;
  font-weight: 600;
}
.btn--white:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1.1rem; font-size: .875rem; }
.btn--full { width: 100%; }

/* ── SECTION SHARED ───────────────────────────────────────── */
.section { padding: var(--sectionPy) 0; }
.section--light { background: var(--bgLight); }
.section--dark  { background: var(--bgDark); }
.section--accent { background: var(--red); }

.section__header {
  max-width: 680px;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.section__header--light { color: #fff; }

/* Section tag with a leading accent line */
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.section__tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section__tag--light { color: rgba(255,255,255,0.65); }

.section__heading {
  font-family: var(--ffSerif);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -.025em;
}
.section__heading--light { color: #fff; }

.section__intro {
  font-size: 1.125rem;
  color: var(--inkMuted);
  line-height: 1.78;
}
.section__intro--light { color: rgba(255,255,255,0.72); }
.section__intro strong { color: var(--ink); font-weight: 500; }
.section--accent .section__intro--light strong { color: #fff; }

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 28px rgba(0,0,0,0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.logo__icon { display: flex; align-items: center; }
.logo__text {
  font-size: .875rem;
  font-weight: 300;
  letter-spacing: .01em;
  color: var(--ink);
  line-height: 1.1;
}
.logo__text strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: -.02em;
}

/* Nav */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.nav__link {
  font-size: .9375rem;
  font-weight: 400;
  color: var(--inkMuted);
  padding: .45rem .8rem;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--ink); }

.nav__cta { margin-left: .5rem; flex-shrink: 0; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem var(--gutter) 2rem;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile-list { display: flex; flex-direction: column; gap: .25rem; }
.nav__mobile-list .nav__link {
  font-size: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--rule);
  display: block;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

/* Large decorative watermark */
.hero__decor {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-55%);
  font-family: var(--ffSerif);
  font-size: clamp(14rem, 26vw, 24rem);
  font-weight: 700;
  color: var(--bgLight);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.05em;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero__heading {
  font-family: var(--ffSerif);
  font-size: clamp(3.25rem, 7vw, 6rem);
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 1.75rem;
  letter-spacing: -.03em;
}
.hero__heading-sub {
  display: block;
  font-size: .44em;
  color: var(--red);
  letter-spacing: -.01em;
  margin-top: .35rem;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--inkMuted);
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero__sub strong { color: var(--ink); font-weight: 500; }

.hero__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.trust-item__num {
  font-family: var(--ffSerif);
  font-size: 1.65rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.trust-item__label {
  font-size: .775rem;
  color: var(--inkMuted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.trust-divider {
  width: 1px;
  height: 34px;
  background: var(--rule);
  flex-shrink: 0;
}

/* ── EPC CARD VISUAL ──────────────────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.epc-card {
  background: #fff;
  font-family: var(--ffSans);
  padding: 2.25rem 2rem;
  width: 100%;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red);
  box-shadow: 0 20px 64px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.05);
  animation: slideUp .65s var(--easeOut) both .15s;
}
.epc-card__header {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--inkMuted);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.epc-card__scale { display: flex; flex-direction: column; gap: .28rem; }

.epc-scale-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .6rem;
  height: 32px;
  min-width: 72px;
  font-family: var(--ffSans);
  color: #fff;
  position: relative;
}
.epc-scale-row__letter { font-size: .82rem; font-weight: 700; }
.epc-scale-row__val    { font-size: .7rem;  font-weight: 400; opacity: .82; white-space: nowrap; }

.epc-scale-row--a { background: #2ecc71; }
.epc-scale-row--b { background: #a8d842; }
.epc-scale-row--c { background: #f7c948; }
.epc-scale-row--d { background: #f5a623; }
.epc-scale-row--e { background: #f07c2e; }
.epc-scale-row--f { background: #e84848; }
.epc-scale-row--g { background: #c0392b; }

.epc-scale-row--active::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border: 12px solid transparent;
  border-left-color: #f7c948;
}
.epc-card__footer {
  font-size: .63rem;
  color: var(--inkMuted);
  text-align: right;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  letter-spacing: .05em;
}

/* ── KAJ JE ───────────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.info-card {
  background: #fff;
  padding: 2.25rem 1.85rem;
  position: relative;
  transition: background var(--transition);
}
.info-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background var(--transition);
}
.info-card:hover { background: var(--bgLight); }
.info-card:hover::before { background: var(--red); }

.info-card--accent { background: var(--redLight); }
.info-card--accent::before { background: var(--red); }
.info-card--accent:hover { background: rgba(208,50,56,0.11); }

.info-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bgLight);
  border: 1px solid var(--rule);
  color: var(--red);
  margin-bottom: 1.2rem;
}
.info-card--accent .info-card__icon {
  background: rgba(208,50,56,0.1);
  border-color: rgba(208,50,56,0.2);
}

.info-card__title {
  font-family: var(--ffSans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .6rem;
}
.info-card__text {
  font-size: .975rem;
  color: var(--inkMuted);
  line-height: 1.7;
}
.info-card--accent .info-card__text strong { color: var(--redDark); }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service-card {
  background: var(--bg);
  padding: 3rem 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
/* Top accent bar */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}
.service-card:hover { background: var(--bgLight); }
.service-card:hover::after { background: var(--red); }

.service-card--highlight {
  background: var(--red);
  color: #fff;
}
.service-card--highlight::after { background: rgba(0,0,0,0.2); }
.service-card--highlight:hover { background: var(--redDark); }

.service-card__number {
  font-family: var(--ffSerif);
  font-size: 2.75rem;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
  transition: color var(--transition);
}
.service-card:hover .service-card__number { color: var(--redMid); }
.service-card--highlight .service-card__number { color: rgba(255,255,255,0.15); }

.service-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .8rem;
}
.service-card--highlight .service-card__title { color: #fff; }

.service-card__text {
  font-size: 1rem;
  color: var(--inkMuted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.service-card--highlight .service-card__text { color: rgba(255,255,255,0.8); }

.service-card__price {
  display: inline-block;
  font-weight: 700;
  font-size: .95rem;
  color: var(--red);
  border-top: 2px solid var(--red);
  padding-top: .5rem;
}
.service-card--highlight .service-card__price { color: #fff; border-color: rgba(255,255,255,0.45); }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.pricing-card--featured {
  background: rgba(255,255,255,0.08);
  border-color: var(--red);
  border-top-width: 3px;
}
.pricing-card--featured:hover { background: rgba(255,255,255,0.11); }

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  white-space: nowrap;
}

.pricing-card__type {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.pricing-card__from {
  font-size: .8rem;
  color: rgba(255,255,255,0.35);
}
.pricing-card__amount {
  font-family: var(--ffSerif);
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2.25rem;
}
.pricing-card__features li {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--red);
  flex-shrink: 0;
}
.pricing-card--featured .pricing-card__features li::before { background: rgba(255,255,255,0.55); }

.cenik-note {
  font-size: .78rem;
  color: rgba(255,255,255,0.32);
  text-align: center;
  padding-top: .5rem;
}

/* ── STEPS ────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 27px;
  right: 27px;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2.5rem 0 0;
  position: relative;
}
.step:last-child { padding-right: 0; }

.step__num {
  width: 54px;
  height: 54px;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ffSerif);
  font-size: 1.15rem;
  color: var(--inkMuted);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  transition:
    background var(--transitionSlow),
    border-color var(--transitionSlow),
    color var(--transitionSlow);
}
.step:hover .step__num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.step__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .6rem;
}
.step__text {
  font-size: 1rem;
  color: var(--inkMuted);
  line-height: 1.72;
}

/* ── WHY US ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.why-stat {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  transition: background var(--transition);
}
.why-stat:hover { background: rgba(255,255,255,0.09); }
.why-stat__num {
  font-family: var(--ffSerif);
  font-size: 2.75rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.why-stat__label {
  font-size: .875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.45;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  border-top: 1px solid var(--rule);
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  gap: 1.5rem;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--red); }
.faq-item__question[aria-expanded="true"] { color: var(--red); }

.faq-item__icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--rule);
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--inkMuted);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.faq-item__icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item__icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  background: var(--red);
  border-color: var(--red);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon::before,
.faq-item__question[aria-expanded="true"] .faq-item__icon::after { background: #fff; }
.faq-item__question[aria-expanded="true"] .faq-item__icon::after  { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-item__answer {
  padding: 0 3rem 1.75rem 0;
  font-size: 1rem;
  color: var(--inkMuted);
  line-height: 1.8;
  animation: fadeIn .25s var(--ease);
}
.faq-item__answer strong { color: var(--ink); font-weight: 500; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: 1rem;
  color: var(--inkMuted);
}
.contact__detail svg { color: var(--red); flex-shrink: 0; }
.contact__detail a { color: var(--ink); transition: color var(--transition); }
.contact__detail a:hover { color: var(--red); }

/* Form panel */
.contact-form {
  background: var(--bgLight);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--red);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .38rem; }
.form-label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--inkMid);
}
.form-input {
  width: 100%;
  padding: .9rem 1.1rem;
  font-family: var(--ffSans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--redLight);
}
.form-input.error { border-color: var(--red); }
.form-input::placeholder { color: #c0c0c0; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-error {
  font-size: .73rem;
  color: var(--red);
  min-height: 1em;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  flex-wrap: wrap;
}
.form-check__input {
  width: 16px;
  height: 16px;
  border: 1px solid var(--rule);
  border-radius: 0;
  appearance: none;
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.form-check__input:checked {
  background: var(--red);
  border-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath stroke='white' stroke-width='2' fill='none' d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
}
.form-check__label { font-size: .9375rem; color: var(--inkMuted); line-height: 1.5; }
.form-link { color: var(--red); text-decoration: underline; }

.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: #eafaf1;
  border: 1px solid #2ecc71;
  color: #1a7a43;
  font-size: .9375rem;
  font-weight: 500;
  animation: fadeIn .3s var(--ease);
}
.form-success svg { color: #2ecc71; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__brand .logo__text,
.footer__brand .logo__text strong { color: rgba(255,255,255,0.88); }
.footer__tagline {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.42);
  margin-top: 1.25rem;
  max-width: 280px;
}
.footer__company {
  font-size: .78rem;
  color: rgba(255,255,255,0.28);
  margin-top: .75rem;
}
.footer__company a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer__company a:hover { color: rgba(255,255,255,0.85); }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__nav-title {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.35rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .65rem; }
.footer__nav a {
  font-size: .9375rem;
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
}
.footer__nav a:hover { color: rgba(255,255,255,0.88); }

.footer__bottom { padding: 1.25rem 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,0.22);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.22); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 500px;
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 3px solid var(--red);
  z-index: 200;
  animation: slideUp .4s var(--ease);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.cookie-banner p { font-size: .9375rem; line-height: 1.5; }
.cookie-banner a { color: var(--red); text-decoration: underline; }
.cookie-banner.hidden { display: none; }
.cookie-banner__actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .info-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; }
  .steps         { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .steps::before { display: none; }
}

@media (max-width: 860px) {
  .hero__inner   { grid-template-columns: 1fr; }
  .hero__visual  { order: 1; }
  .hero__decor   { display: none; }
  .epc-card      { max-width: 480px; margin: 0 auto; }
.why-grid      { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__list, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .info-grid     { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .hero__trust   { flex-wrap: wrap; gap: 1.25rem; }
  .contact-form  { padding: 1.75rem; }
}

@media (max-width: 560px) {
  .steps          { grid-template-columns: 1fr; }
  .why__stats     { grid-template-columns: 1fr 1fr; }
  .footer__nav    { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cookie-banner  { left: 1rem; right: 1rem; bottom: 1rem; }
}
