:root {
  color-scheme: light only;
  --navy: #004f80;
  --navy-mid: #006199;
  --blue: #007ac3;
  --cyan: #1a9eeb;
  --cyan-light: #5ec4ff;
  --green: #56af31;
  --mint: #eef6ff;
  --white: #ffffff;
  --off-white: #f2f7fc;
  --gray-light: #dbe6f2;
  --gray: #6889a8;
  --gray-dark: #345878;
  --text: #0c1d30;
  --text-light: #355878;
  --success: #56af31;
  --error: #d63031;
  --shadow-sm: 0 2px 12px rgba(0,122,195,0.10);
  --shadow-md: 0 8px 32px rgba(0,122,195,0.15);
  --shadow-lg: 0 20px 60px rgba(0,122,195,0.20);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --gradient-primary: linear-gradient(135deg, #1a9eeb, #0070b8);
  --gradient-green: linear-gradient(135deg, #56af31, #3d8c22);
  --space-xs: 0.5rem;

  /* Powtarzane kolory z przezroczystością */
  --cyan-10: rgba(26,158,235,0.1);
  --cyan-12: rgba(26,158,235,0.12);
  --cyan-25: rgba(26,158,235,0.25);
  --cyan-30: rgba(26,158,235,0.3);
  --cyan-40: rgba(26,158,235,0.4);
  --cyan-45: rgba(26,158,235,0.45);
  --navy-15: rgba(0,79,128,0.15);
  --white-60: rgba(255,255,255,0.6);
  --white-65: rgba(255,255,255,0.65);
  --black-04: rgba(0,0,0,0.04);
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-section: 6rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, input, select, textarea { font-family: inherit; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: 'Titillium Web', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Titillium Web', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--white); padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-weight: 600; z-index: 10000; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,79,128,0.1);
  border-bottom: 1px solid rgba(0,122,195,0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.header.scrolled { background: var(--white); box-shadow: 0 4px 24px var(--navy-15); }
.header__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 140px;
  transition: height 0.3s;
}
.header.scrolled .header__inner { height: 116px; }
.header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header__logo img { height: 101px; width: auto; object-fit: contain; transition: height 0.3s; }
.header.scrolled .header__logo img { height: 82px; }

.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav a {
  font-size: 14px; color: var(--text); text-decoration: none;
  transition: color 0.2s; font-weight: 600; letter-spacing: 0.02em;
}
.header__nav a:hover, .header__nav a:focus, .header__nav a:focus-visible { color: var(--cyan); }
.header__cta { display: flex; gap: 10px; align-items: center; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 8px; transition: background 0.2s; position: relative; z-index: 1002;
}
.hamburger:hover { background: rgba(0,122,195,0.06); }
.hamburger__lines { width: 24px; height: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger__lines span {
  display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger[aria-expanded="true"] .hamburger__lines span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__lines span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__lines span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; position: fixed; top: 140px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 2rem;
  flex-direction: column; gap: 0; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 16px 0; font-size: 16px; font-weight: 600;
  color: var(--text); text-decoration: none; border-bottom: 1px solid var(--gray-light);
}
.mobile-nav a:hover, .mobile-nav a:focus, .mobile-nav a:focus-visible { color: var(--cyan); }
.mobile-nav__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 2rem; }
.mobile-nav__cta .btn { justify-content: center; text-align: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  font-family: 'Titillium Web', sans-serif; text-decoration: none;
  border: none; cursor: pointer; transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s, border-color 0.25s, color 0.25s;
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn:focus, .btn:focus-visible { outline: 3px solid var(--cyan-light); outline-offset: 2px; }
.btn-primary {
  background: var(--gradient-primary);
  color: white; box-shadow: 0 4px 20px rgba(26,158,235,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--cyan-45); }
.btn-outline {
  background: transparent; border: 1.5px solid var(--blue); color: var(--blue);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(26,158,235,0.06); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-green {
  background: var(--gradient-green);
  color: white; box-shadow: 0 4px 20px rgba(86,175,49,0.35);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(86,175,49,0.45); }
.btn-outline-hero {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.25); color: #fff;
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-glow { box-shadow: 0 4px 20px rgba(0,122,194,0.5); }
.btn-glow:hover { box-shadow: 0 8px 28px rgba(0,122,194,0.6); }
.section-badge--light { border-color: rgba(26,158,235,0.35); color: var(--cyan-light); }
.section-cta-group { text-align: center; margin-top: 3rem; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.form-inline-error { color: var(--error); font-size: 14px; font-weight: 600; text-align: center; margin-top: 1rem; padding: 10px 16px; background: rgba(214,48,49,0.08); border-radius: var(--radius-sm); }
.chat-inline-error { color: var(--error); font-size: 13px; font-weight: 600; text-align: center; margin-top: 8px; padding: 8px 12px; background: rgba(214,48,49,0.1); border-radius: 8px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; min-height: 100dvh; background: var(--navy);
  display: flex; align-items: center; padding-top: 140px; position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, var(--cyan-12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(0,79,128,0.25) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #005fa0 100%);
}
.hero__grid-lines {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(26,158,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,158,235,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__inner {
  max-width: 1280px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 4rem; align-items: center; position: relative; z-index: 1; width: 100%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-12); border: 1px solid var(--cyan-30);
  border-radius: 50px; padding: 7px 16px; font-size: 13px; color: var(--cyan-light);
  font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.03em;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--cyan-light);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }
.hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); color: var(--white);
  margin-bottom: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
}
.hero__title .accent {
  background: linear-gradient(135deg, var(--cyan-light), #a8e0ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  color: var(--cyan-light);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  display: inline-block; margin-top: -0.3rem; line-height: 1.2;
}
.hero__title-sub {
  display: block; font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--white); font-weight: 700; letter-spacing: -0.01em;
  margin-top: 0.3rem; opacity: 0.85;
}
.hero__subtitle {
  font-size: 1.1rem; color: var(--white-65); max-width: 520px;
  margin-bottom: 2rem; line-height: 1.75; font-weight: 300;
}
.hero__cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Trust Bullets */
.hero__trust {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 400;
}
.hero__trust-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(86,175,49,0.15); border: 1px solid rgba(86,175,49,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero__trust-icon svg { width: 14px; height: 14px; stroke: #7dd460; fill: none; }

/* ─── KALKULATOR ─── */
.calc-card {
  background: var(--white); border: 1px solid rgba(0,122,195,0.12);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: 0 24px 64px rgba(0,79,128,0.25);
}
.calc-header { margin-bottom: 1.5rem; text-align: center; }
.calc-header h3 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.calc-header p { font-size: 14px; color: var(--text-light); }
.calc-tabs {
  display: flex; gap: 6px; background: var(--gray-light);
  border-radius: 10px; padding: 5px; margin-bottom: 1.5rem;
}
.calc-tab {
  flex: 1; padding: 9px; border: none; background: transparent;
  color: var(--text-light); font-size: 12px;
  font-weight: 600; cursor: pointer; border-radius: 7px; transition: background 0.2s, color 0.2s; text-align: center;
}
.calc-tab:focus, .calc-tab:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }
.calc-tab.active { background: var(--gradient-primary); color: white; }
.calc-field { margin-bottom: 1rem; }
.calc-field label {
  display: block; font-size: 12px; color: var(--text-light); margin-bottom: 7px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}
.calc-input-wrap { position: relative; }
.calc-input-wrap input, .calc-input-wrap select {
  width: 100%; background: var(--off-white); border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm); color: var(--text); font-size: 15px;
  padding: 12px 50px 12px 16px;
  outline: none; transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none;
}
.calc-input-wrap select { cursor: pointer; }
.calc-fixed-value {
  display: block; width: 100%; background: var(--off-white); border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm); color: var(--text); font-size: 15px;
  padding: 12px 16px; opacity: 0.8;
}
.calc-input-wrap select option { background: white; color: var(--text); }
.calc-input-wrap input:focus, .calc-input-wrap select:focus {
  border-color: var(--cyan-light); background: rgba(26,158,235,0.07);
  box-shadow: 0 0 0 3px var(--cyan-12);
}
.calc-input-wrap input::placeholder { color: var(--gray); }
.calc-unit {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--gray); pointer-events: none;
}
.calc-result {
  background: linear-gradient(135deg, var(--cyan-12), rgba(0,79,128,0.12));
  border: 1px solid var(--cyan-25); border-radius: var(--radius-sm);
  padding: 1.25rem; margin: 1.25rem 0; text-align: center;
}
.calc-result-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.calc-result-value { font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.calc-result-note { font-size: 11px; color: var(--gray); margin-top: 5px; }
.calc-btn {
  width: 100%; padding: 14px;
  background: var(--gradient-primary);
  border: none; border-radius: var(--radius-sm); color: white;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; box-shadow: 0 4px 20px var(--cyan-30);
  display: block; text-align: center; text-decoration: none;
}
.calc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--cyan-40); }
.calc-btn:focus, .calc-btn:focus-visible { outline: 3px solid var(--cyan-light); outline-offset: 2px; }
.calc-cta-secondary {
  display: block; text-align: center; margin-top: 12px;
  font-size: 15px; color: var(--blue); text-decoration: none; font-weight: 600;
}
.calc-cta-secondary:hover { text-decoration: underline; }
.calc-error { font-size: 12px; color: var(--error); margin-top: 4px; display: none; }

/* ─── SECTION COMMON ─── */
section { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,158,235,0.09); border: 1px solid var(--cyan-25);
  border-radius: 50px; padding: 6px 14px; font-size: 12px; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--text);
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 560px; line-height: 1.75; }
.section-sub.light { color: var(--white-60); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── DLACZEGO WARTO ─── */
.benefits { background: var(--white); padding: 5rem 0; }
.benefits__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem;
}
.benefit-card {
  background: var(--off-white); border-radius: var(--radius); padding: 2rem 1.5rem;
  border: 1px solid var(--black-04); transition: transform 0.25s, box-shadow 0.25s; text-align: center;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--cyan-10), rgba(0,79,128,0.08));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.benefit-card__icon svg { width: 26px; height: 26px; }
.benefit-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.benefit-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ─── ABOUT ─── */
.about { background: var(--off-white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }
.about__image {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  min-height: 400px; box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
}
.about__image-inner { display: none; }
.about__stats {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; z-index: 1;
}
.about__stat-card {
  background: rgba(255,255,255,0.96); border-radius: var(--radius-sm);
  padding: 14px 16px; box-shadow: var(--shadow-md);
}
.about__stat-num { font-size: 1.6rem; font-weight: 700; color: var(--blue); line-height: 1; }
.about__stat-label { font-size: 11px; color: var(--text-light); margin-top: 3px; }
.about__content { padding-left: 1rem; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.feature-tile {
  background: var(--white); border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--black-04); transition: transform 0.25s, box-shadow 0.25s;
}
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-tile__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cyan-10), rgba(0,79,128,0.1));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.feature-tile__icon svg { width: 22px; height: 22px; }
.feature-tile h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-tile p { font-size: 12px; color: var(--text-light); line-height: 1.55; }

/* ─── PRODUKTY ─── */
.products { background: var(--white); }
.products__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
.product-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: transform 0.3s; }
.product-card:hover { transform: translateY(-6px); }
.product-card--a { background: linear-gradient(145deg, var(--navy), #005fa0); box-shadow: 0 20px 60px rgba(0,79,128,0.35); }
.product-card--b { background: linear-gradient(145deg, #0f3d1a, #0a2a12); box-shadow: 0 20px 60px rgba(0,60,20,0.3); }
.product-card__decor {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%; opacity: 0.07;
  background: var(--cyan-light);
}
.product-card__inner { padding: 2.5rem; position: relative; z-index: 1; }
.product-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  background: rgba(26,158,235,0.15); border: 1px solid var(--cyan-30);
}
.product-card__icon svg { width: 28px; height: 28px; }
.product-card__tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; color: var(--cyan-light); }
.product-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem; }
.product-card p { font-size: 14px; color: var(--white-60); line-height: 1.75; margin-bottom: 1.5rem; }
.product-card__list { list-style: none; margin-bottom: 2rem; }
.product-card__list li {
  font-size: 13px; color: rgba(255,255,255,0.75); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px;
}
.product-card__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: var(--cyan-light); }
.product-card .btn-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: white;
  padding: 12px 22px; border-radius: 50px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background-color 0.25s, border-color 0.25s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.product-card .btn-card:hover { background: rgba(26,158,235,0.2); border-color: var(--cyan-light); }
.product-card .btn-card:focus, .product-card .btn-card:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* ─── HOW IT WORKS ─── */
.how { background: var(--navy); position: relative; overflow: hidden; }
.how__bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(26,158,235,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 50%, var(--navy-15) 0%, transparent 60%);
}
.how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; z-index: 1; }
.how__step { position: relative; text-align: center; }
.how__step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cyan-10); border: 2px solid var(--cyan-30);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  color: #5ec4ff; margin: 0 auto 1.25rem; transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; position: relative;
}
.how__step:hover .how__step-num {
  background: var(--gradient-primary);
  color: white; border-color: transparent; box-shadow: 0 8px 24px rgba(26,158,235,0.35);
}
.how__connector {
  position: absolute; top: 27px;
  right: calc(-50% - 1rem); left: calc(50% + 1rem + 28px);
  height: 1px; background: linear-gradient(90deg, var(--cyan-40), var(--cyan-10));
}
.how__step:last-child .how__connector { display: none; }
.how__step h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.6rem; }
.how__step p { font-size: 15px; color: var(--white-65); line-height: 1.7; }

/* ─── STATS ─── */
.stats { background: linear-gradient(135deg, var(--navy), #007ac3); padding: 5rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.stat-item { text-align: center; }
.stat-item__num { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.stat-item__label { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ─── DLA KOGO ─── */
.for-whom { background: var(--off-white); }
.for-whom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.for-whom__list { list-style: none; }
.for-whom__list li {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 15px; color: var(--text);
}
.for-whom__list li:last-child { border-bottom: none; }
.for-whom__check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
}
.for-whom__check svg { width: 12px; height: 12px; stroke: var(--white); fill: none; }
.for-whom__docs {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--black-04);
}
.for-whom__docs h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 1.25rem; }
.for-whom__docs ul { list-style: none; }
.for-whom__docs ul li {
  padding: 10px 0; border-bottom: 1px solid var(--black-04);
  font-size: 14px; color: var(--text-light); display: flex; align-items: center; gap: 10px;
}
.for-whom__docs ul li::before {
  content: '📄'; font-size: 16px; flex-shrink: 0;
}

/* ─── LEAD FORM ─── */
.lead-section { background: var(--off-white); }
.lead__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.lead__benefits { margin-top: 2rem; list-style: none; }
.lead__benefits li {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
  font-size: 14px; color: var(--text-light); border-bottom: 1px solid rgba(0,0,0,0.05);
}
.lead__benefits li:last-child { border-bottom: none; }
.lead__benefits li .check {
  width: 20px; height: 20px;
  background: var(--cyan); color: #ffffff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.lead__benefits li .check svg { width: 11px; height: 11px; stroke: #ffffff; fill: none; }
.lead__form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--black-04);
  scroll-margin-top: 160px;
}

/* ─── FORMS ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.1rem; position: relative; }
.form-field label {
  display: block; font-size: 12px; font-weight: 700; color: var(--text-light);
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 14px;
  color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-10);
}
.form-field input.field-error, .form-field select.field-error, .form-field textarea.field-error {
  border-color: var(--error); box-shadow: 0 0 0 3px rgba(214,48,49,0.1);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray); }
.form-field .field-error-msg {
  display: none; font-size: 12px; color: var(--error); margin-top: 4px;
}
.form-field .field-error-msg.visible { display: block; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; }
.form-checkbox input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--cyan); cursor: pointer; }
.form-checkbox label { font-size: 12px; color: var(--text-light); line-height: 1.6; cursor: pointer; }
textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; padding: 16px;
  background: var(--gradient-primary);
  border: none; border-radius: var(--radius-sm); color: white;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; box-shadow: 0 4px 20px var(--cyan-30);
  letter-spacing: 0.03em;
}
.form-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px var(--cyan-40); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-submit:focus, .form-submit:focus-visible { outline: 3px solid var(--cyan-light); outline-offset: 2px; }
.form-submit--loading { position: relative; color: transparent; }
.form-submit--loading::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 22px; height: 22px; margin: -11px 0 0 -11px;
  border: 3px solid rgba(255,255,255,0.3); border-top-color: var(--white);
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--gradient-green);
  display: flex; align-items: center; justify-content: center;
}
.form-success__icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; }
.form-success h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.form-success p { font-size: 14px; color: var(--text-light); }

/* ─── OPINIE ─── */
.testimonials { background: var(--white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--black-04); transition: transform 0.25s, box-shadow 0.25s; position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; color: var(--cyan-10); line-height: 1;
}
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: #e8a020; font-size: 14px; }
.testimonial-card p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 14px; flex-shrink: 0;
}
.testimonial-card__name { font-size: 13px; font-weight: 700; color: var(--text); }
.testimonial-card__role { font-size: 11px; color: var(--gray); margin-top: 2px; }

/* ─── PARTNERS ─── */
.partners { background: var(--off-white); padding: 3.5rem 0; }
.partners__inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.partners__label { font-size: 13px; color: var(--gray); font-weight: 600; white-space: nowrap; }
.partners__logos { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.partner-logo {
  height: 36px; background: rgba(0,0,0,0.05); border-radius: 8px; padding: 0 16px;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  font-weight: 700; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase;
  min-width: 100px; opacity: 0.65; transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }

/* ─── FAQ ─── */
.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.faq-item { border: 1.5px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s; }
.faq-item:hover { border-color: var(--cyan-40); }
.faq-trigger {
  width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left;
  font-size: 14px; font-weight: 600;
  color: var(--text); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; transition: color 0.2s;
}
.faq-trigger:hover { color: var(--blue); }
.faq-trigger:focus, .faq-trigger:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }
.faq-arrow {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.25s, color 0.25s, transform 0.25s; font-size: 12px; color: var(--gray);
}
.faq-item.open .faq-arrow { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: white; transform: rotate(180deg); }
.faq-panel {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-panel__inner { padding: 0 1.5rem 1.25rem; font-size: 13px; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-panel { max-height: 600px; }

/* ─── CONTACT ─── */
.contact { background: var(--navy); overflow: hidden; position: relative; }
.contact__bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26,158,235,0.08) 0%, transparent 60%);
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; position: relative; z-index: 1;
}
.contact__grid-right { margin-top: 0; }
.contact__info { padding-top: 1rem; }
.contact__detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 1.75rem; }
.contact__detail-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; }
.contact__detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white-60); margin-bottom: 4px; font-weight: 700; }
.contact__detail-value { font-size: 15px; color: var(--white); font-weight: 500; }
.contact__detail-value a { color: var(--cyan-light); text-decoration: none; }
.contact__detail-value a:hover { text-decoration: underline; }
.contact__hours { font-size: 13px; color: var(--white-60); margin-top: 0.5rem; }

/* Map block */
.map-block {
  margin-top: 2rem; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-block iframe {
  width: 100%; height: 220px; border: 0; display: block;
  filter: saturate(0.7) brightness(0.85);
}
.map-block__link {
  display: block; text-align: center; padding: 12px;
  background: rgba(255,255,255,0.04); color: var(--cyan-light);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.map-block__link:hover { background: var(--cyan-10); }

.contact__form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact__form h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 1.75rem; }
.contact__form .form-field label { color: var(--white-60); }
.contact__form .form-field input, .contact__form .form-field select, .contact__form textarea {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1); color: white;
}
.contact__form .form-field input:focus, .contact__form .form-field select:focus, .contact__form textarea:focus {
  border-color: var(--cyan-light); box-shadow: 0 0 0 3px var(--cyan-12); background: rgba(26,158,235,0.05);
}
.contact__form .form-field input::placeholder, .contact__form textarea::placeholder { color: rgba(255,255,255,0.25); }
.contact__form .form-field select option { background: var(--navy); color: white; }
.contact__form .form-field input.field-error, .contact__form .form-field select.field-error, .contact__form textarea.field-error {
  border-color: #e74c3c;
}

/* ─── STICKY MOBILE CTA ─── */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px var(--navy-15);
  z-index: 998; gap: 10px; border-top: 1px solid var(--gray-light);
}
.sticky-mobile-cta .btn { flex: 1; justify-content: center; text-align: center; font-size: 13px; padding: 12px 14px; }

/* ─── FOOTER ─── */
.footer { background: #003356; padding: 4rem 0 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer__main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-top: 1rem; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer__social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: background-color 0.2s, color 0.2s; font-size: 14px; color: var(--white-60);
}
.footer__social-link:hover { background: rgba(26,158,235,0.18); color: var(--cyan-light); }
.footer__col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a { font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--cyan-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 12px; color: var(--white-65); flex-wrap: wrap; gap: 1rem; }
.footer__bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer__bottom a:hover { color: var(--cyan-light); }

/* ─── CHAT WIDGET ─── */
.chat-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 997;
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--blue);
  box-shadow: 0 6px 28px var(--cyan-45);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s; animation: chat-fab-pulse 3s ease-in-out infinite;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 36px rgba(26,158,235,0.55); }
.chat-fab svg { width: 28px; height: 28px; stroke: #ffffff; fill: none; color: #ffffff; }
.chat-fab.open svg.icon-chat { display: none; }
.chat-fab:not(.open) svg.icon-close { display: none; }
.chat-fab__badge {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #e74c3c; border: 2px solid var(--white);
  font-size: 10px; font-weight: 700; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.chat-fab.open .chat-fab__badge { display: none; }
@keyframes chat-fab-pulse {
  0%,100% { box-shadow: 0 6px 28px var(--cyan-45); }
  50% { box-shadow: 0 6px 28px var(--cyan-45), 0 0 0 12px var(--cyan-12); }
}

.chat-popup {
  position: fixed; bottom: 96px; right: 24px; z-index: 1001;
  width: 370px; max-height: calc(100vh - 112px);
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,79,128,0.22), 0 0 0 1px rgba(0,122,195,0.08);
  transform: translateY(20px) scale(0.95); opacity: 0;
  pointer-events: none; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden; display: flex; flex-direction: column;
}
.chat-popup.open {
  transform: translateY(0) scale(1); opacity: 1; pointer-events: auto;
}
.chat-popup__header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 1.25rem 1.5rem; color: var(--white); position: relative;
}
.chat-popup__header-title {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 2px;
}
.chat-popup__header-sub {
  font-size: 12px; color: var(--white-65);
}
.chat-popup__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 0.2s; color: var(--white);
}
.chat-popup__close:hover { background: rgba(255,255,255,0.25); }
.chat-popup__close svg { width: 18px; height: 18px; }

.chat-popup__body { padding: 1.25rem 1.5rem; overflow-y: auto; flex: 1; }

.chat-bubble {
  background: var(--off-white); border-radius: 16px 16px 16px 4px;
  padding: 0.9rem 1.1rem; margin-bottom: 0.75rem;
  font-size: 14px; color: var(--text); line-height: 1.6;
  border: 1px solid var(--black-04);
  animation: chat-bubble-in 0.4s ease both;
}
.chat-bubble:nth-child(2) { animation-delay: 0.5s; }
.chat-bubble strong { color: var(--navy); }
@keyframes chat-bubble-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-popup__call {
  display: flex; align-items: center; gap: 10px;
  background: rgba(86,175,49,0.08); border: 1px solid rgba(86,175,49,0.2);
  border-radius: 12px; padding: 0.75rem 1rem; margin-bottom: 1rem;
  text-decoration: none; transition: background-color 0.2s; animation: chat-bubble-in 0.4s 0.8s ease both;
}
.chat-popup__call:hover { background: rgba(86,175,49,0.14); }
.chat-popup__call-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-popup__call-icon svg { width: 18px; height: 18px; stroke: #ffffff; fill: none; color: #ffffff; }
.chat-popup__call-text { font-size: 13px; color: var(--text); line-height: 1.4; }
.chat-popup__call-text strong { display: block; font-size: 15px; color: #2d7a14; }

.chat-popup__divider {
  text-align: center; font-size: 11px; color: var(--gray);
  margin: 0.25rem 0 1rem; text-transform: uppercase; letter-spacing: 0.08em;
  animation: chat-bubble-in 0.4s 1s ease both;
}

.chat-popup__form { animation: chat-bubble-in 0.4s 1.1s ease both; }
.chat-popup__form label {
  display: block; font-size: 12px; font-weight: 700; color: var(--text-light);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em;
}
.chat-popup__form input {
  width: 100%; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 15px;
  color: var(--text); background: var(--off-white); outline: none; transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  margin-bottom: 0.75rem;
}
.chat-popup__form input:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-10); background: var(--white);
}
.chat-popup__form input::placeholder { color: var(--gray); }
.chat-popup__form-btn {
  width: 100%; padding: 13px; border: none; border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s; box-shadow: 0 4px 16px var(--cyan-30);
}
.chat-popup__form-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--cyan-40); }
.chat-popup__form-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.chat-popup__consent {
  font-size: 10px; color: var(--gray); line-height: 1.5; margin-top: 0.6rem;
}
.chat-popup__consent a { color: var(--blue); }

.chat-popup__success {
  text-align: center; padding: 1rem 0;
  animation: chat-bubble-in 0.4s ease both;
}
.chat-popup__success-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 0.75rem;
  background: var(--gradient-green);
  display: flex; align-items: center; justify-content: center;
}
.chat-popup__success-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; }
.chat-popup__success h4 { font-size: 1rem; color: var(--text); margin-bottom: 0.3rem; }
.chat-popup__success p { font-size: 13px; color: var(--text-light); }

@media (max-width: 480px) {
  .chat-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .chat-fab svg { width: 24px; height: 24px; }
}
/* potrzebne żeby sticky CTA nie nakładał się z FAB na mobile */
@media (max-width: 768px) {
  .chat-fab { bottom: 80px; }
  .chat-popup {
    top: 84px; bottom: 142px; right: 12px; left: 12px;
    width: auto; max-height: none; border-radius: 16px;
    display: flex; flex-direction: column;
  }
  .chat-popup__header { padding: 0.75rem 1rem; padding-right: 3.2rem; }
  .chat-popup__header-title { font-size: 0.95rem; }
  .chat-popup__header-sub { font-size: 11px; }
  .chat-popup__close {
    width: 34px; height: 34px; top: 0.6rem; right: 0.6rem;
    background: rgba(255,255,255,0.25); border: 1.5px solid rgba(255,255,255,0.4);
  }
  .chat-popup__close svg { width: 16px; height: 16px; stroke-width: 3; }
  .chat-popup__avatar { display: none; }
  .chat-popup__body { padding: 0.75rem 1rem; overflow-y: auto; flex: 1; }
  .chat-bubble { padding: 0.6rem 0.85rem; font-size: 13px; margin-bottom: 0.5rem; }
  .chat-popup__call { padding: 0.6rem 0.85rem; margin-bottom: 0.6rem; }
  .chat-popup__divider { margin: 0.15rem 0 0.6rem; }
  .chat-popup__form input { padding: 10px 12px; font-size: 14px; margin-bottom: 0.5rem; }
  .chat-popup__form label { margin-bottom: 3px; font-size: 11px; }
  .chat-popup__form-btn { padding: 11px; font-size: 13px; }
  .chat-popup__consent { font-size: 9px; margin-top: 0.4rem; }
}

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .calc-card { max-width: 500px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { height: 300px; }
  .products__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .how__connector { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lead__inner { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__grid-right { margin-top: 1.5rem; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .for-whom__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  /* Zmniejsz header na mobile — był zbyt wysoki (140px) */
  .header__inner { height: 72px; }
  .header.scrolled .header__inner { height: 64px; }
  .header__logo img { height: 52px; }
  .header.scrolled .header__logo img { height: 46px; }
  .mobile-nav { top: 72px; }
  .hero { padding-top: 72px; }
  .hero__inner { padding-top: 40px; padding-bottom: 3rem; }
  .hero__title .accent { display: block; margin-top: 0.5rem; }
  .hero__title { font-size: 2rem; }
  .hero__trust { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: 1fr; }
  .section-title { font-size: 1.9rem; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { justify-content: center; text-align: center; }
}

/* ─── FORM CARD HEADER ─── */
.form-card-title {
  font-size: 1.6rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.35rem; text-align: center;
}
.form-card-sub {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 1.5rem; text-align: center;
}

/* ─── UTILITIES ─── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.icon-blue { color: var(--blue); }
.icon-cyan { color: var(--cyan); }
.icon-cyan-light { color: var(--cyan-light); }
.icon-green { color: var(--green); }
.icon-navy { color: var(--navy); }

/* ─── CONTACT PREFERENCE TOGGLE ─── */
.contact-pref { margin-bottom: 1.25rem; }
.contact-pref__label {
  display: block; font-size: 12px; font-weight: 700; color: var(--text-light);
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-pref__options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.contact-pref__option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm); cursor: pointer; transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.contact-pref__option:hover { border-color: var(--cyan-40); }
.contact-pref__option.active {
  border-color: var(--cyan); background: rgba(26,158,235,0.06);
  box-shadow: 0 0 0 3px var(--cyan-10);
}
.contact-pref__option input[type="radio"] { display: none; }
.contact-pref__radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--gray-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s;
}
.contact-pref__option.active .contact-pref__radio {
  border-color: var(--cyan);
}
.contact-pref__radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); transform: scale(0); transition: transform 0.2s;
}
.contact-pref__option.active .contact-pref__radio::after { transform: scale(1); }
.contact-pref__text { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.contact-pref__text small { display: block; font-size: 11px; font-weight: 400; color: var(--gray); margin-top: 2px; }
.contact-pref__icon { width: 20px; height: 20px; flex-shrink: 0; }
.contact-pref__icon svg { width: 20px; height: 20px; stroke-width: 2; }

/* Dark theme variant for contact section */
.contact-pref--dark .contact-pref__label { color: var(--white-60); }
.contact-pref--dark .contact-pref__option {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12);
}
.contact-pref--dark .contact-pref__option:hover { border-color: rgba(0,122,194,0.5); }
.contact-pref--dark .contact-pref__option.active {
  border-color: var(--cyan-light); background: var(--cyan-10);
  box-shadow: 0 0 0 3px rgba(26,158,235,0.15);
}
.contact-pref--dark .contact-pref__radio { border-color: rgba(255,255,255,0.2); }
.contact-pref--dark .contact-pref__option.active .contact-pref__radio { border-color: var(--cyan-light); }
.contact-pref--dark .contact-pref__radio::after { background: var(--cyan-light); }
.contact-pref--dark .contact-pref__text { color: rgba(255,255,255,0.85); }
.contact-pref--dark .contact-pref__text small { color: rgba(255,255,255,0.4); }

/* Time slot picker */
.time-slots { margin-bottom: 1.25rem; }
.time-slots__label {
  display: block; font-size: 12px; font-weight: 700; color: var(--text-light);
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em;
}
.time-slots__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.time-slot {
  padding: 9px 4px; border: 1.5px solid var(--gray-light); border-radius: 8px;
  background: var(--white); cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  font-size: 13px; font-weight: 600;
  color: var(--text); text-align: center;
}
.time-slot:hover { border-color: var(--cyan-40); }
.time-slot.active {
  border-color: var(--cyan); background: var(--gradient-primary);
  color: white; box-shadow: 0 2px 8px var(--cyan-25);
}
.time-slot input[type="radio"] { display: none; }

@media (max-width: 480px) {
  .time-slots__grid { grid-template-columns: repeat(4, 1fr); }
  .contact-pref__options { grid-template-columns: 1fr; }
}

/* ─── FLEX GAP FALLBACK (Safari < 14.1) ─── */
.header__nav > a { margin-left: 1rem; margin-right: 1rem; }
.header__cta > * { margin-left: 5px; margin-right: 5px; }
.hero__cta-group > * { margin-bottom: 7px; margin-right: 7px; }
.footer__social > * { margin-right: 5px; }
@supports (gap: 1px) {
  .header__nav > a { margin-left: 0; margin-right: 0; }
  .header__cta > * { margin-left: 0; margin-right: 0; }
  .hero__cta-group > * { margin-bottom: 0; margin-right: 0; }
  .footer__social > * { margin-right: 0; }
}
/* ─── COOKIE CONSENT BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--white); box-shadow: 0 -4px 24px var(--navy-15);
  border-top: 1px solid var(--gray-light); padding: 1.25rem 2rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: 13px; color: var(--text-light); line-height: 1.6; max-width: 720px; }
.cookie-banner__text a { color: var(--blue); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; border: none;
}
.cookie-banner__btn--accept {
  background: var(--gradient-primary); color: var(--white);
  box-shadow: 0 2px 12px var(--cyan-30);
}
.cookie-banner__btn--accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--cyan-40); }
.cookie-banner__btn--reject {
  background: none; border: none; color: var(--gray); font-size: 12px; font-weight: 400;
  padding: 10px 14px; opacity: 0.6; text-decoration: underline; text-underline-offset: 2px;
}
.cookie-banner__btn--reject:hover { opacity: 1; color: var(--text-light); }
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; padding: 0.75rem 1rem; gap: 0.5rem; bottom: 0; padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner__text { font-size: 11px; line-height: 1.5; }
  .cookie-banner__actions { width: 100%; gap: 8px; }
  .cookie-banner__btn { flex: 1; text-align: center; padding: 8px 14px; font-size: 12px; }
}

/* ─── SAMSUNG INTERNET NIGHT MODE OVERRIDE ─── */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: light only; }
  html, body { background-color: #ffffff !important; color: #0c1d30 !important; }
  .header { background-color: #ffffff !important; }
  .header.scrolled { background-color: #ffffff !important; }
  .header__logo img { background: transparent !important; filter: none !important; }
  .hero__title .accent {
    -webkit-text-fill-color: #5ec4ff !important;
    background: none !important;
    color: #5ec4ff !important;
  }
  .hero__subtitle { color: rgba(255,255,255,0.65) !important; }
  .hero__title { color: #ffffff !important; }
  .calc-card { background-color: #ffffff !important; color: #0c1d30 !important; }
  .calc-header h3 { color: #004f80 !important; }
  .calc-input-wrap input, .calc-input-wrap select { background-color: #f2f7fc !important; color: #0c1d30 !important; }
  .benefits, .products, .faq, .testimonials { background-color: #ffffff !important; }
  .about, .for-whom, .lead-section { background-color: #f2f7fc !important; }
  .benefit-card, .feature-tile, .testimonial-card { background-color: #f2f7fc !important; }
  .lead__form-card, .for-whom__docs { background-color: #ffffff !important; }
  .benefit-card h4, .feature-tile h4, .section-title, .form-card-title { color: #0c1d30 !important; }
  .benefit-card p, .feature-tile p, .section-sub, .form-card-sub { color: #355878 !important; }
  .sticky-mobile-cta { background-color: #ffffff !important; }
  .cookie-banner { background-color: #ffffff !important; }
  .cookie-banner__text { color: #355878 !important; }
  .mobile-nav { background-color: #ffffff !important; }
  .mobile-nav a { color: #0c1d30 !important; }
  .footer { background-color: #003356 !important; }
}
