/* components.css — Komponenty: przyciski, nav, hero, marquee, karty usług, o mnie, kontakt, footer */

/* ===================== PRZYCISKI ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  white-space: nowrap;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              background var(--transition-base), border-color var(--transition-base),
              color var(--transition-base);
}

.btn--lg {
  padding: 18px 36px;
  font-size: var(--text-base);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================== NAV ===================== */
.nav__logo {
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
  opacity: 1 !important;
  filter: none !important;
}

.nav__logo:hover {
  opacity: 1 !important;
  filter: none !important;
}

.nav__links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: #ffffff !important;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

/* Nav po scrollu */
.nav.scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 0 var(--color-gray-200);
}

.nav__cta {
  padding: 10px 20px;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 200;
}

.nav__hamburger:hover {
  background: rgba(255,255,255,0.14);
}

.nav__hamburger svg rect {
  transition: all 0.3s ease;
}

.nav__hamburger.is-open rect:nth-child(1) {
  transform: translateY(5.25px) rotate(45deg);
  transform-origin: center;
}

.nav__hamburger.is-open rect:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.is-open rect:nth-child(3) {
  transform: translateY(-5.25px) rotate(-45deg);
  transform-origin: center;
}

@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }
}

/* Menu mobilne — nakładka */
.nav__mobile {
  position: fixed;
  top: 68px;
  right: 16px;
  left: auto;
  bottom: auto;
  width: 260px;
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 8px;
  z-index: 999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.50);
  transform: translateY(-8px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}

.nav__mobile.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__mobile-link {
  display: block;
  padding: 11px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__mobile-link:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff !important;
}

.nav__mobile-cta {
  display: block !important;
  margin: 6px 0 2px;
  padding: 12px 16px !important;
  background: #2563EB !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  text-align: center;
  font-size: 14px !important;
  font-weight: 600 !important;
  width: 100%;
  box-sizing: border-box;
}

.nav__mobile-cta:hover {
  background: #1D4ED8 !important;
}

/* ===================== MARQUEE ===================== */
.marquee-wrapper {
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  overflow: hidden;
  padding: var(--space-4) 0;
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 var(--space-6);
}

.marquee__dot {
  color: var(--color-gray-300);
  font-size: var(--text-lg);
  flex-shrink: 0;
  padding: 0 var(--space-2);
}

/* ===================== KARTY USŁUG ===================== */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-500);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
}

.service-card__list li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  padding-left: var(--space-5);
  position: relative;
  line-height: var(--leading-relaxed);
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== O MNIE ===================== */
.about__content {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about__content p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
}

/* Liczby count-up */
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: var(--leading-normal);
}

/* Placeholder zdjęcia */
.about__photo {
  width: 100%;
}

.photo-placeholder {
  background: var(--color-gray-200);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  font-family: var(--font-body);
  font-size: var(--text-base);
  text-align: center;
}

/* ===================== KONTAKT ===================== */
.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact__bg svg {
  width: 100%;
  height: 100%;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.contact__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-gray-400);
  line-height: var(--leading-relaxed);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  padding: 18px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              background var(--transition-base);
}

.contact-btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.contact-btn--whatsapp:hover,
.contact-btn--whatsapp:focus-visible {
  background: var(--color-whatsapp-hover);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-btn--phone {
  background: var(--color-white);
  color: var(--color-navy);
}

.contact-btn--phone:hover,
.contact-btn--phone:focus-visible {
  background: var(--color-gray-100);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.contact__email {
  margin-top: var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-300);
}

.contact__email-link {
  color: var(--color-gray-300);
  text-decoration: underline;
  text-decoration-color: rgba(203, 213, 225, 0.4);
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.contact__email-link:hover {
  color: var(--color-white);
}

/* ===================== FOOTER ===================== */
.footer__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: var(--leading-normal);
}

/* Etykiety kolumn nad kartami */
.col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 12px;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2563EB;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Nav link hover underline */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2563EB;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Footer hover letter-spacing */
.footer-copy {
  display: inline-block;
  transition: letter-spacing 0.4s ease;
}
.footer-copy:hover {
  letter-spacing: 0.15em;
}

.nav-logo {
  height: 48px;
  width: auto;
  display: block;
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
}

/* ══════════════════════════════════════
   HERO COMPONENTS
══════════════════════════════════════ */

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  font-size: 13px; color: rgba(255,255,255,0.85);
  margin-bottom: 28px; width: fit-content;
}

.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  animation: pulsedot 2s ease-in-out infinite;
}

@keyframes pulsedot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}

.hero-h1 {
  display: flex; flex-direction: column;
  gap: 4px; margin-bottom: 20px;
  font-family: var(--font-heading);
}

.h1-white {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: #ffffff;
  line-height: 1.12; letter-spacing: -0.02em;
}

.h1-blue {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h1-heavy {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900 !important;
}

.hero-tagline {
  font-size: 20px; font-weight: 500;
  color: rgba(255,255,255,0.90);
  margin-bottom: 16px; line-height: 1.5;
}

.tagline-blue {
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}

.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 36px; max-width: 440px;
}

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

.hero-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.06);
  color: white; font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

/* PRAWA STRONA HERO — patrz: sekcja HERO LEFT / RIGHT na końcu pliku */

.hero-browser {
  width: 100%; max-width: 460px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,20,50,0.80);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(37,99,235,0.15);
}

.browser-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bdot {
  width: 10px; height: 10px; border-radius: 50%;
}
.bdot.red    { background: #f87171; }
.bdot.yellow { background: #fbbf24; }
.bdot.green  { background: #4ade80; }

.browser-url {
  margin-left: 8px; padding: 3px 14px;
  border-radius: 6px; background: rgba(255,255,255,0.06);
  font-size: 11px; color: rgba(255,255,255,0.40);
}

.browser-content { position: relative; }

.browser-wave {
  height: 200px;
  background: linear-gradient(135deg, #0d1f4e 0%, #0a1628 50%, #061030 100%);
  position: relative; overflow: hidden;
}

.browser-wave::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 50%, rgba(37,99,235,0.40) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 60%, rgba(34,211,238,0.20) 0%, transparent 70%);
}

.browser-inner-hero {
  position: absolute; top: 20px; left: 20px; z-index: 2;
}

.bin-title {
  font-size: 14px; font-weight: 700; color: white;
  line-height: 1.4; margin-bottom: 8px;
}

.bin-blue {
  color: #60a5fa;
}

.bin-sub {
  font-size: 10px; color: rgba(255,255,255,0.60);
  line-height: 1.5; margin-bottom: 12px; max-width: 200px;
}

.bin-btn {
  display: inline-block; padding: 7px 14px;
  border-radius: 6px; background: #2563EB;
  color: white; font-size: 11px; font-weight: 600;
  cursor: pointer;
}

.browser-icons {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 14px 16px;
  background: rgba(5,12,30,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bicon {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}

.bicon-svg {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(37,99,235,0.20);
  border: 1px solid rgba(37,99,235,0.30);
}

.bicon span {
  font-size: 8px; color: rgba(255,255,255,0.50);
  text-align: center; line-height: 1.3;
}

.browser-globe {
  position: absolute; bottom: -20px; left: -20px;
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #0a1628);
  border: 2px solid rgba(37,99,235,0.50);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.40);
  z-index: 5;
}

/* KARTA GOOGLE ADS */
.hero-ads-card {
  position: absolute;
  right: -20px; bottom: 40px;
  width: 260px;
  border-radius: 16px;
  background: rgba(8,16,40,0.95);
  border: 1px solid rgba(37,99,235,0.30);
  padding: 18px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.50), 0 0 30px rgba(37,99,235,0.15);
  backdrop-filter: blur(12px);
}

.ads-card-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 4px;
}

.ads-card-title {
  font-size: 14px; font-weight: 700; color: white;
}

.ads-card-badge {
  font-size: 13px; font-weight: 700; color: #4ade80;
}

.ads-card-label {
  font-size: 11px; color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.ads-chart { margin-bottom: 14px; }

.ads-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ads-metric {
  display: flex; flex-direction: column; gap: 2px;
}

.ads-metric-label {
  font-size: 9px; color: rgba(255,255,255,0.40);
}

.ads-metric-val {
  font-size: 13px; font-weight: 700; color: white;
}

.ads-metric-change {
  font-size: 10px; font-weight: 600;
}

.ads-metric-change.up   { color: #4ade80; }
.ads-metric-change.down { color: #f87171; }

/* LOGO GOOGLE ADS */
.hero-gads-logo {
  position: absolute;
  top: -16px; right: 220px;
  width: 64px; height: 64px;
  border-radius: 14px;
  background: rgba(10,20,50,0.90);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  backdrop-filter: blur(8px);
}

/* ══════════════════════════════════════
   ABOUT (KIM JESTEM)
══════════════════════════════════════ */

.about-label {
  font-size: 12px; font-weight: 700;
  color: #2563EB; letter-spacing: 0.12em;
  text-transform: uppercase; display: block;
  margin-bottom: 12px;
}

.about-h2 {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 800;
  color: #0A1628; margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.about-text-wrap {
  padding-left: 20px;
  border-left: 3px solid #2563EB;
  margin-bottom: 36px;
}

.about-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
  }
  .about {
    padding: 48px 0;
  }
}

.about-text:last-child { margin-bottom: 0; }

.about-stats {
  display: flex; align-items: center; gap: 0;
}

.about-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 32px;
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 800; color: #0A1628;
}

.about-stat-label {
  font-size: 12px; color: #94A3B8;
}

.about-stat-divider {
  width: 1px; height: 44px;
  background: #E2E8F0;
  margin-right: 32px; flex-shrink: 0;
}

/* PRAWA STRONA ABOUT */
.about-right {
  display: flex; gap: 20px; align-items: flex-start;
}

.about-ads-card {
  flex: 1;
  border-radius: 16px;
  background: #0d1b35;
  padding: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  position: relative; overflow: hidden;
}

.aac-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 4px;
}

.aac-title {
  font-size: 15px; font-weight: 700; color: white;
}

.aac-badge {
  font-size: 13px; font-weight: 700; color: #4ade80;
}

.aac-sub {
  font-size: 11px; color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.aac-chart { margin-bottom: 12px; }

.aac-donut-wrap {
  position: absolute; bottom: 16px; right: 16px;
}

/* BROWSER KARTA W ABOUT */
.about-browser-card {
  width: 200px; flex-shrink: 0;
  border-radius: 16px;
  background: white;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.abc-topbar {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.abc-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.abc-dot.red    { background: #f87171; }
.abc-dot.yellow { background: #fbbf24; }
.abc-dot.green  { background: #4ade80; }

.abc-content { padding: 14px; }

.abc-row {
  display: flex; gap: 10px; align-items: flex-start;
}

.abc-row.mt { margin-top: 10px; }

.abc-img-block {
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  flex-shrink: 0;
}

.abc-img-block.large { width: 80px; height: 70px; }
.abc-img-block.small { width: 70px; height: 55px; }

.abc-lines {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
  padding-top: 4px; position: relative;
}

.abc-line {
  height: 8px; border-radius: 4px;
  background: #E2E8F0;
}

.abc-line.long   { width: 100%; }
.abc-line.medium { width: 80%; }
.abc-line.short  { width: 60%; }

.abc-code-tag {
  position: absolute; top: -8px; right: -8px;
  width: 36px; height: 36px; border-radius: 8px;
  background: #2563EB;
  color: white; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── NAV scrolled na dark hero ── */
.scrolled {
  background: rgba(8,13,26,0.92) !important;
  backdrop-filter: blur(20px) !important;
}

.nav-link, nav a, .nav-links a {
  color: #ffffff !important;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-link:hover, nav a:hover, .nav-links a:hover {
  opacity: 1;
}

/* ── HERO GRAPHIC ── */
.hero-graphic {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right center;
  mix-blend-mode: lighten;
  opacity: 0.95;
  pointer-events: none;
}

/* ── ABOUT GRAPHIC ── */
.about-graphic {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-inner {
    padding: 0 24px;
  }
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-graphic {
    max-width: 100%;
    margin: 0 auto;
  }
  .about-graphic {
    max-width: 100%;
    margin: 24px auto 0;
  }
}

/* ── HERO TRUST LINE ── */
.hero-trust-line {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 32px;
  margin-top: -8px;
  letter-spacing: 0.02em;
}

/* ── HERO BTN PRIMARY / GHOST ── */
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  background: linear-gradient(135deg, #2563EB, #22d3ee);
  color: white; font-size: 15px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,99,235,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(37,99,235,0.50);
}
.hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.40);
}

/* ── SECTION LABEL / SUB ── */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #2563EB;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; color: #ffffff;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.65; max-width: 580px; margin: 0 auto;
}

/* ── TRANSFORMACJA ── */
.transformacja {
  background: #ffffff;
  padding: 40px 0 80px 0;
  border-top: none;
  border-bottom: none;
}
.transformacja-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}
.transformacja-visual {
  position: relative;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
}
.transformacja-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: none;
  box-shadow: none;
  background: none;
}
.transformacja-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.transformacja-text .section-label {
  color: #2563EB;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.transformacja-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.transformacja-h2-blue {
  background: linear-gradient(90deg, #2563EB, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.transformacja-sub {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}
.transformacja-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.transformacja-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}
.transformacja-check {
  color: #2563EB;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.transformacja-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2563EB;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.transformacja-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .transformacja-inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .transformacja { padding: 60px 0; }
  .transformacja-inner { padding: 0 24px; gap: 32px; }
  .transformacja-cta { width: 100%; justify-content: center; }
}

/* ── PROCES ── */
.proces {
  background: #ffffff;
  padding: 60px 0;
  border-top: none;
}
.proces-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.proces-header {
  text-align: center;
  margin-bottom: 40px;
}
.proces-header .section-label {
  color: #2563EB;
}
.proces-header .section-title {
  color: #0A1628;
}
.proces-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proces-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #22d3ee, #2563EB);
  z-index: 0;
}
.proces-step {
  position: relative;
  padding: 0 24px;
  text-align: center;
  background: transparent;
  border: none;
  z-index: 1;
}
.proces-step:hover {
  transform: translateY(-6px);
  border: none;
  background: transparent;
}
.step-number-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(37,99,235,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proces-step:hover .step-number-wrap {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,99,235,0.50);
}
.step-number {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .proces-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .proces-steps::before { display: none; }
}
@media (max-width: 768px) {
  .proces-steps { grid-template-columns: 1fr; gap: 40px; }
  .proces-inner { padding: 0 24px; }
  .proces { padding: 60px 0; }
}

/* ── KONTAKT FORM ── */
.kontakt-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}
.kontakt-header {
  text-align: center;
  margin-bottom: 56px;
}
.kontakt-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.kontakt-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .kontakt-inner { padding: 0 24px; }
}

/* Animacja kroków procesu */
.proces-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.proces-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.proces-step:nth-child(1) { transition-delay: 0.0s; }
.proces-step:nth-child(2) { transition-delay: 0.15s; }
.proces-step:nth-child(3) { transition-delay: 0.30s; }
.proces-step:nth-child(4) { transition-delay: 0.45s; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

.proces-step:hover .step-number-wrap {
  animation: pulse-ring 1s ease-out;
}

/* ── KONTAKT PRZYCISKI ── */
.kontakt-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.kontakt-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  background: #25D366;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 32px rgba(37,211,102,0.30);
}

.kontakt-btn-whatsapp:hover {
  background: #1EA952;
  transform: scale(1.03);
}

.kontakt-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.kontakt-btn-phone:hover {
  background: rgba(255,255,255,0.14);
  transform: scale(1.03);
}

.kontakt-email {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.kontakt-email a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
}

/* ── HAMBURGER MENU ── */

/* ── HERO LEFT / RIGHT ── */
.hero-left {
  position: relative;
  z-index: 3;
  padding-right: 40px;
  min-width: 0;
}

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

@media (max-width: 1024px) {
  .hero-right {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 32px;
    grid-column: 1 / -1;
  }

  .hero-graphic {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-graphic {
    max-width: 100%;
  }
}

@media (max-width: 1280px) {
  .hero-left {
    padding-right: 24px;
  }
}
