/*
Theme Name: GdzieNaFolie
Theme URI: https://gdzienafolie.pl
Author: GdzieNaFolie
Author URI: https://gdzienafolie.pl
Description: Szablon wyszukiwarki specjalistów od folii samochodowych — układ pod konwersję (CRO).
Version: 2.4.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gdzienafolie
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #08080a;
  --bg-elevated: #0f0f13;
  --bg-card: #131318;
  --bg-input: #18181e;
  --border: #222229;
  --border-hover: #33333d;
  --gold: #c9a84c;
  --gold-dim: #a08638;
  --gold-glow: rgba(201,168,76,0.08);
  --gold-glow-strong: rgba(201,168,76,0.15);
  --text: #e8e5dd;
  --text-mid: #a09d94;
  --text-dim: #5c5a54;
  --green: #5bd67e;
  --r: 10px;
  --r-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ===== NAV ===== */
.gnf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,10,0.92);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.4);
}

.gnf-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gnf-nav-logo {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.6px;
  color: #f0ece2;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.gnf-nav-logo span {
  color: var(--gold);
  filter: brightness(1.1);
}

.gnf-nav-trust-pill {
  display: flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dim);
  white-space: nowrap;
}

.gnf-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
}

.gnf-nav-cta:hover { background: #d4b35a; }

@media (max-width: 900px) {
  .gnf-nav-trust-pill { display: none; }
}

/* ===== HERO ===== */
.gnf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 24px 56px;
}

/* Lekkie tło z wideo (fallback gradient, wideo ładowane asynchronicznie) */
.gnf-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}

.gnf-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.gnf-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.82) 0%, rgba(8,8,10,0.6) 40%, rgba(8,8,10,0.85) 100%),
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(201,168,76,0.06) 0%, transparent 55%);
  z-index: 1;
}

.gnf-hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 440px);
  gap: 64px;
  align-items: center;
}

.gnf-hero-heading { text-align: left; }

.gnf-hero-heading .gnf-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
}

.gnf-hero-heading h1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.gnf-h1-lead {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.6px;
  color: var(--text);
  text-wrap: balance;
}

.gnf-h1-sub {
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--gold);
  text-wrap: balance;
}

.gnf-hero-heading .gnf-subtitle {
  margin-top: 18px;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.6;
  max-width: 44ch;
}

.gnf-hero-points {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gnf-hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
}

.gnf-hero-points svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.gnf-hero-brands { margin-top: 28px; }

.gnf-hero-brands-label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.gnf-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gnf-brand-pill {
  padding: 5px 13px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.gnf-brand-pill:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* ===== FORM CARD ===== */
.gnf-form-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
}

.gnf-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(180deg, rgba(201,168,76,0.18) 0%, transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.gnf-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.gnf-step-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.3s;
}

.gnf-step-dot span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
}

.gnf-step-dot.active { color: var(--gold); }
.gnf-step-dot.active span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.gnf-step-dot.done { color: var(--text-mid); }
.gnf-step-dot.done span {
  background: var(--green);
  border-color: var(--green);
  color: var(--bg);
}

.gnf-step-line {
  width: 56px;
  height: 1px;
  background: var(--border);
  margin: 0 16px;
}

.gnf-step { animation: gnfFadeIn 0.3s ease; }

@keyframes gnfFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gnfSlideUp {
  from { transform: translateY(100%); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}

/* Backdrop bottom-sheeta — ukryty na desktopie, używany tylko na mobile */
.gnf-select-backdrop { display: none; }

.gnf-form-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.gnf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gnf-form-group { display: flex; flex-direction: column; }
.gnf-form-group.span2 { grid-column: span 2; }

.gnf-form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.gnf-form-label .req { color: var(--gold); }

.gnf-label-optional {
  font-weight: 400;
  color: var(--text-dim);
  font-size: 11px;
}

.gnf-form-input,
.gnf-form-select,
.gnf-form-textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.gnf-form-input:focus,
.gnf-form-select:focus,
.gnf-form-textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.gnf-form-input::placeholder,
.gnf-form-textarea::placeholder { color: var(--text-dim); }

.gnf-form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235c5a54' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.gnf-form-select option { background: var(--bg-input); color: var(--text); }

.gnf-form-textarea { resize: vertical; min-height: 80px; }

.gnf-field-hint {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 5px;
  line-height: 1.4;
}

/* City autocomplete */
.gnf-city-wrap { position: relative; }

.gnf-city-list {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.gnf-city-list.open { display: block; }

.gnf-city-opt {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mid);
  transition: all 0.1s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gnf-city-opt:hover,
.gnf-city-opt.active {
  background: var(--gold-glow);
  color: var(--text);
}

.gnf-city-opt svg { width: 14px; height: 14px; color: var(--gold-dim); flex-shrink: 0; }

.gnf-city-list::-webkit-scrollbar { width: 4px; }
.gnf-city-list::-webkit-scrollbar-track { background: transparent; }
.gnf-city-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Custom dropdown (zamiast natywnego select) */
.gnf-select-wrap { position: relative; }

.gnf-select {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-dim);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gnf-select.has-value { color: var(--text); }

.gnf-select:focus,
.gnf-select.open {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.gnf-select svg {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.gnf-select.open svg { transform: rotate(180deg); color: var(--gold); }

.gnf-select-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 130;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  padding: 6px;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}

.gnf-select-panel.open { display: block; animation: gnfFadeIn 0.18s ease; }

.gnf-select-opt {
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  line-height: 1.35;
}

.gnf-select-opt em {
  font-style: normal;
  color: var(--text-dim);
  font-size: 13px;
}

.gnf-select-opt:hover,
.gnf-select-opt.active {
  background: var(--gold-glow);
  color: var(--text);
}

.gnf-select-opt:hover em,
.gnf-select-opt.active em { color: var(--text-mid); }

.gnf-select-opt.selected { color: var(--gold); }

.gnf-select-panel::-webkit-scrollbar { width: 4px; }
.gnf-select-panel::-webkit-scrollbar-track { background: transparent; }
.gnf-select-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Pole opisu pokazywane TYLKO przy wyborze "Inne" */
.gnf-inne-wrap[hidden] { display: none !important; }
.gnf-inne-wrap { animation: gnfFadeIn 0.25s ease; }
.gnf-inne-textarea { min-height: 64px; resize: vertical; }

/* Buttons */
.gnf-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  margin-top: 6px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: var(--r);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  grid-column: span 2;
}

.gnf-btn-submit:hover {
  background: #d4b35a;
  box-shadow: 0 0 30px rgba(201,168,76,0.25);
}

.gnf-btn-submit svg { width: 16px; height: 16px; }

.gnf-form-buttons {
  grid-column: span 2;
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.gnf-btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 20px;
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.gnf-btn-back:hover { border-color: var(--border-hover); color: var(--text); }
.gnf-btn-back svg { width: 16px; height: 16px; }
.gnf-btn-grow { flex: 1; margin-top: 0; }

.gnf-form-note {
  grid-column: span 2;
  text-align: left;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.5;
}

.gnf-form-note svg {
  width: 11px;
  height: 11px;
  vertical-align: -1px;
  margin-right: 3px;
}

.gnf-form-note a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success */
.gnf-form-success { display: none; text-align: center; padding: 36px 12px; }
.gnf-form-success.show { display: block; }
.gnf-form-inner.hidden { display: none; }

.gnf-form-success .gnf-check-ico {
  width: 56px;
  height: 56px;
  background: rgba(91,214,126,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--green);
}

.gnf-form-success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }

.gnf-success-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 22px;
  text-align: left;
}

.gnf-success-step { display: flex; align-items: flex-start; gap: 14px; }

.gnf-success-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-glow-strong);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gnf-success-step p {
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  padding-top: 3px;
}

.gnf-success-step p strong { color: var(--text); }

.gnf-success-phone {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}

.gnf-success-phone:hover { text-decoration: underline; }

/* ===== JAK TO DZIAŁA ===== */
.gnf-how {
  padding: 40px 24px 100px;
  max-width: 1080px;
  margin: 0 auto;
}

.gnf-how-header { text-align: center; margin-bottom: 48px; }

.gnf-how-header .gnf-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.gnf-how-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
}

.gnf-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gnf-how-step {
  text-align: center;
  padding: 36px 22px;
  background: var(--bg-card);
}

.gnf-how-step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.gnf-how-step:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }

.gnf-how-step-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.gnf-how-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.gnf-how-step p { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

/* ===== GALERIA WIZUALNA ===== */
.gnf-gallery {
  padding: 0;
  overflow: hidden;
}

.gnf-gallery-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.gnf-gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gnf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.8);
}

.gnf-gallery-item:nth-child(1) img,
.gnf-gallery-item:nth-child(3) img,
.gnf-gallery-item:nth-child(4) img {
  object-position: center 45%;
}

.gnf-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

@media (max-width: 768px) {
  .gnf-gallery-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .gnf-gallery-inner { grid-template-columns: 1fr 1fr; gap: 2px; }
  .gnf-gallery-item { aspect-ratio: 9 / 14; }
}

/* ===== CTA KOŃCOWE ===== */
.gnf-cta { padding: 80px 24px 110px; text-align: center; }

.gnf-cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

.gnf-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.gnf-cta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.gnf-cta-box h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  position: relative;
}

.gnf-cta-box p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
}

.gnf-cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
}

.gnf-cta-trust-row span { display: inline-flex; align-items: center; gap: 5px; }
.gnf-cta-trust-row svg { color: var(--gold); }

.gnf-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.gnf-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--r);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.gnf-btn-gold:hover { background: #d4b35a; }
.gnf-btn-gold svg { width: 16px; height: 16px; }

.gnf-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.gnf-btn-ghost:hover { border-color: var(--border-hover); background: var(--bg-input); }
.gnf-btn-ghost svg { width: 16px; height: 16px; }

/* ===== FOOTER ===== */
.gnf-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}

.gnf-footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.gnf-footer a { color: var(--gold-dim); }

/* ===== PAGE TEMPLATE ===== */
.gnf-page {
  min-height: 100vh;
  padding: 112px 24px 72px;
  background:
    radial-gradient(circle at 18% 0%, rgba(201,168,76,0.08), transparent 32%),
    var(--bg);
}

.gnf-page-inner {
  width: min(100%, 860px);
  margin: 0 auto;
}

.gnf-page-content {
  color: var(--text-mid);
}

.gnf-page-content h1 {
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.gnf-page-body {
  display: grid;
  gap: 18px;
  font-size: 16px;
}

.gnf-page-body h2,
.gnf-page-body h3 {
  margin-top: 24px;
  color: var(--text);
  line-height: 1.25;
}

.gnf-page-body h2 { font-size: 24px; }
.gnf-page-body h3 { font-size: 19px; }

.gnf-page-body p,
.gnf-page-body li {
  color: var(--text-mid);
}

.gnf-page-body ul,
.gnf-page-body ol {
  padding-left: 22px;
}

.gnf-page-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== STICKY MOBILE BAR ===== */
.gnf-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8,8,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

.gnf-mobile-bar-call,
.gnf-mobile-bar-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
}

.gnf-mobile-bar-call {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.gnf-mobile-bar-call svg { width: 16px; height: 16px; color: var(--gold); }

.gnf-mobile-bar-form {
  background: var(--gold);
  color: var(--bg);
}

.gnf-mobile-bar-full {
  flex: 1;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .gnf-hero-grid { grid-template-columns: 1fr; gap: 28px; max-width: 560px; }
  .gnf-hero-heading h1 { max-width: none; }
  .gnf-hero-heading .gnf-subtitle { max-width: none; }
}

@media (max-width: 900px) {
  .gnf-how-steps { grid-template-columns: 1fr; gap: 2px; }
  .gnf-how-step { border-radius: 0 !important; }
  .gnf-how-step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0 !important; }
  .gnf-how-step:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg) !important; }
}

@media (max-width: 768px) {
  /* --- NAV --- */
  .gnf-nav { padding: 0 16px; height: 56px; }
  .gnf-nav-logo { font-size: 16px; }
  .gnf-nav-cta { display: none; }

  /* --- HERO: nagłówek krótki, formularz blisko góry --- */
  .gnf-hero {
    min-height: auto;
    padding: 72px 16px 28px;
    align-items: flex-start;
  }
  .gnf-hero-heading { text-align: left; }
  .gnf-hero-heading .gnf-label { font-size: 10px; letter-spacing: 2.5px; margin-bottom: 10px; }
  .gnf-hero-heading h1 { gap: 8px; }
  .gnf-h1-lead { font-size: 27px; line-height: 1.12; letter-spacing: -0.8px; }
  .gnf-h1-sub { font-size: 16px; }
  .gnf-hero-heading .gnf-subtitle { font-size: 14px; margin-top: 12px; }
  /* na mobile chowamy listę punktów i marki znad formularza — żeby był wysoko */
  .gnf-hero-points { display: none; }
  .gnf-hero-brands { display: none; }

  /* --- FORM --- */
  .gnf-form-card { padding: 20px 16px; }
  .gnf-steps-bar { margin-bottom: 20px; }
  .gnf-step-dot { font-size: 11px; }
  .gnf-step-dot span { width: 24px; height: 24px; font-size: 11px; }
  .gnf-step-line { width: 40px; margin: 0 10px; }
  .gnf-form-section-title { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 16px; padding-bottom: 10px; }
  .gnf-form-grid { grid-template-columns: 1fr; gap: 12px; }
  .gnf-form-group.span2 { grid-column: span 1; }
  .gnf-btn-submit { grid-column: span 1; padding: 14px; }
  .gnf-form-buttons { grid-column: span 1; flex-direction: column; }
  .gnf-btn-back { width: 100%; }
  .gnf-form-note { grid-column: span 1; }

  /* --- LISTA ROZWIJANA: bottom sheet na mobile (gwarantowany scroll) --- */
  .gnf-select-panel {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 70vh;
    max-height: 70dvh;
    border-radius: 18px 18px 0 0;
    padding: 18px 8px max(20px, env(safe-area-inset-bottom));
    z-index: 2000;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.7);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .gnf-select-panel.open {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    animation: gnfSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* Pasek "drag handle" u góry — jak w natywnym iOS bottom sheet */
  .gnf-select-panel::before {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    background: var(--border-hover);
    border-radius: 2px;
    margin: 0 auto 14px;
    flex-shrink: 0;
  }
  .gnf-select-opt {
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.4;
    flex-shrink: 0;
  }
  .gnf-select-opt em { font-size: 14px; }
  /* Backdrop za panelem */
  .gnf-select-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    display: block;
  }
  .gnf-select-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* --- JAK TO DZIAŁA --- */
  .gnf-how { padding: 24px 16px 60px; }
  .gnf-how-header { margin-bottom: 28px; }
  .gnf-how-header h2 { font-size: 22px; }
  .gnf-how-step { padding: 26px 18px; }
  .gnf-how-step-num { font-size: 28px; }

  /* --- CTA --- */
  .gnf-cta { padding: 48px 16px 96px; }
  .gnf-cta-box { padding: 36px 22px; }
  .gnf-cta-box h2 { font-size: 21px; }
  .gnf-cta-trust-row { gap: 8px; font-size: 11px; flex-direction: column; }
  .gnf-cta-buttons { flex-direction: column; align-items: stretch; }
  .gnf-btn-gold, .gnf-btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }

  /* --- FOOTER + STICKY BAR --- */
  .gnf-footer { padding: 24px 16px 96px; font-size: 11px; }
  .gnf-footer-inner { flex-direction: column; gap: 8px; }
  .gnf-page { padding: 88px 16px 56px; }
  .gnf-page-body { font-size: 15px; }
  .gnf-mobile-bar {
    display: flex;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gnf-mobile-bar.visible {
    transform: translateY(0);
  }
}

@media (max-width: 380px) {
  .gnf-h1-lead { font-size: 24px; }
  .gnf-h1-sub { font-size: 15px; }
  .gnf-hero-heading .gnf-subtitle { font-size: 13px; }
  .gnf-form-card { padding: 16px 14px; }
}

/* ===== NAV — menu + burger ===== */
.gnf-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gnf-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.gnf-nav-menu li a {
  display: block;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.gnf-nav-menu li a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* Burger */
.gnf-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
}

.gnf-nav-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all 0.25s;
}

.gnf-nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.gnf-nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gnf-nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.gnf-nav-drawer {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(10,10,14,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.gnf-nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gnf-drawer-link {
  display: block;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}

.gnf-drawer-link:hover, .gnf-drawer-link:active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.gnf-drawer-call {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  padding: 14px 14px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

.gnf-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 985;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.gnf-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .gnf-nav-menu { display: none; }
  .gnf-nav-cta { display: none; }
  .gnf-nav-burger { display: flex; }
  .gnf-nav-overlay { display: block; }
}

/* ===== DLACZEGO MY ===== */
.gnf-why {
  padding: 100px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.gnf-why-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.gnf-why-text .gnf-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.gnf-why-text h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.gnf-why-text p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 60ch;
}

.gnf-why-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.gnf-why-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.gnf-why-point svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.gnf-why-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

.gnf-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
}

.gnf-why-card-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-glow-strong);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}

.gnf-why-card-icon svg { width: 19px; height: 19px; }

.gnf-why-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.gnf-why-card-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.gnf-why-card-note {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ===== TRUST MODEL ===== */
.gnf-trust-model {
  padding: 0 24px 96px;
  max-width: 1140px;
  margin: 0 auto;
}

.gnf-trust-model-inner {
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.gnf-trust-model-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.gnf-trust-model-header .gnf-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.gnf-trust-model-header h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.gnf-trust-model-header p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
}

.gnf-trust-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gnf-trust-model-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
}

.gnf-trust-model-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-glow-strong);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.gnf-trust-model-icon svg { width: 19px; height: 19px; }

.gnf-trust-model-item h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}

.gnf-trust-model-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-mid);
}

@media (max-width: 980px) {
  .gnf-why-inner { grid-template-columns: 1fr; gap: 32px; }
  .gnf-why-aside { position: static; flex-direction: row; }
  .gnf-why-card { flex: 1; }
  .gnf-trust-model-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gnf-why { padding: 56px 16px; }
  .gnf-why-aside { flex-direction: column; }
  .gnf-trust-model { padding: 0 16px 60px; }
  .gnf-trust-model-inner { padding-top: 44px; }
  .gnf-trust-model-header { margin-bottom: 24px; }
}

/* ===== TABS — WERYFIKACJA ===== */
.gnf-verify {
  padding: 96px 24px 100px;
  max-width: 1080px;
  margin: 0 auto;
}

.gnf-verify-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.gnf-verify-header .gnf-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.gnf-verify-header h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.gnf-verify-header p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

/* Tab bar */
.gnf-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px;
  margin-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gnf-tabs::-webkit-scrollbar { display: none; }

.gnf-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  background: transparent;
  border: none;
  border-radius: 9px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
  flex-shrink: 0;
}

.gnf-tab svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.18s;
}

.gnf-tab:hover { color: var(--text-mid); background: rgba(255,255,255,0.04); }
.gnf-tab:hover svg { opacity: 0.7; }

.gnf-tab.active {
  background: var(--bg-elevated);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.18);
}

.gnf-tab.active svg { opacity: 1; color: var(--gold); }

/* Tab panels */
.gnf-tab-panels {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  border-top: none;
  overflow: hidden;
}

.gnf-tab-panel {
  animation: gnfFadeIn 0.22s ease;
}

.gnf-tab-panel[hidden] { display: none; }

.gnf-tab-panel-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 40px;
  align-items: start;
}

.gnf-tab-panel-num {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: rgba(201,168,76,0.15);
  letter-spacing: -2px;
  padding-top: 4px;
}

.gnf-tab-panel-content h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  color: var(--text);
}

.gnf-tab-panel-content p {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 70ch;
}

.gnf-tab-panel-content p:last-child { margin-bottom: 0; }

.gnf-verify-note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-mid);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
}

.gnf-verify-note svg {
  width: 15px;
  height: 15px;
  vertical-align: -3px;
  margin-right: 6px;
  color: var(--gold);
}

.gnf-verify-note strong { color: var(--text); }

@media (max-width: 768px) {
  .gnf-verify { padding: 56px 16px 60px; }
  .gnf-verify-header { margin-bottom: 28px; }
  .gnf-verify-header h2 { font-size: 22px; }
  .gnf-tabs { padding: 5px; gap: 2px; }
  .gnf-tab { padding: 8px 12px; font-size: 12px; gap: 5px; }
  .gnf-tab-panel-inner { grid-template-columns: 1fr; gap: 0; padding: 24px 20px; }
  .gnf-tab-panel-num { font-size: 36px; margin-bottom: 10px; }
  .gnf-tab-panel-content h3 { font-size: 17px; }
  .gnf-tab-panel-content p { font-size: 13.5px; }
}

/* ===== KONTAKT ===== */
.gnf-contact {
  padding: 80px 24px 60px;
  max-width: 1080px;
  margin: 0 auto;
}

.gnf-contact-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

.gnf-contact-text .gnf-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.gnf-contact-text h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.gnf-contact-text > p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 52ch;
}

.gnf-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gnf-contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s;
}

.gnf-contact-method:hover { border-color: var(--border-hover); }

.gnf-contact-method-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-glow-strong);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.gnf-contact-method-icon svg { width: 18px; height: 18px; }

.gnf-contact-method-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.gnf-contact-method-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

/* CTA card */
.gnf-contact-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: sticky;
  top: 80px;
}

.gnf-contact-cta-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.gnf-contact-cta-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-glow-strong);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.gnf-contact-cta-icon svg { width: 20px; height: 20px; }

.gnf-contact-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.gnf-contact-cta-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}

.gnf-btn-full { width: 100%; justify-content: center; }

.gnf-contact-cta-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.5;
}

/* Contact form card */
.gnf-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: sticky;
  top: 80px;
}

.gnf-contact-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.gnf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gnf-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gnf-btn-contact-submit {
  margin-top: 4px;
  grid-column: auto;
}

.gnf-contact-form .gnf-form-note {
  grid-column: auto;
  margin-top: 0;
}

.gnf-contact-form-success {
  display: none;
  text-align: center;
  padding: 36px 12px;
}

.gnf-contact-form-success.show {
  display: block;
}

.gnf-contact-form-success .gnf-check-ico {
  width: 48px;
  height: 48px;
  background: rgba(91,214,126,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--green);
}

.gnf-contact-form-success p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.gnf-contact-form.hidden { display: none; }

@media (max-width: 980px) {
  .gnf-contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .gnf-contact-cta-card { position: static; }
}

@media (max-width: 768px) {
  .gnf-contact { padding: 48px 16px 48px; }
  .gnf-cf-row { grid-template-columns: 1fr; }
  .gnf-contact-card { position: static; }

  /* Hero video — lżejszy na mobile */
  .gnf-hero-video {
    filter: brightness(0.7);
    object-position: center top;
  }
}

/* ===== ANTYSPAM — HONEYPOT ===== */
.gnf-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== BŁĘDY WALIDACJI ===== */
.gnf-input-error {
  border-color: #c0564a !important;
  box-shadow: 0 0 0 3px rgba(192, 86, 74, 0.12) !important;
}

.gnf-field-error {
  display: block;
  font-size: 11.5px;
  color: #d98a80;
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== KROK 2 — PODSUMOWANIE WYBORU ===== */
.gnf-step2-recap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
  max-width: 100%;
}

.gnf-step2-recap svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.gnf-step2-recap span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gnf-step2-recap[hidden] { display: none !important; }

/* ===== FAQ ===== */
.gnf-faq {
  padding: 0 24px 100px;
  max-width: 800px;
  margin: 0 auto;
}

.gnf-faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.gnf-faq-header .gnf-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.gnf-faq-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
}

.gnf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gnf-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}

.gnf-faq-item.open { border-color: var(--border-hover); }

.gnf-faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  line-height: 1.45;
  cursor: pointer;
}

.gnf-faq-q svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--text-dim);
  transition: transform 0.25s, color 0.25s;
}

.gnf-faq-item.open .gnf-faq-q svg {
  transform: rotate(180deg);
  color: var(--gold);
}

.gnf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gnf-faq-a p {
  padding: 0 20px 18px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.gnf-faq-a a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .gnf-faq { padding: 0 16px 60px; }
  .gnf-faq-header { margin-bottom: 24px; }
  .gnf-faq-header h2 { font-size: 22px; }
  .gnf-faq-q { padding: 15px 16px; font-size: 14px; }
  .gnf-faq-a p { padding: 0 16px 15px; font-size: 13.5px; }
}
