/* =========================
   IMPORTUJEMY.PL — PREMIUM BLUE/TEAL
   (granat → niebieski → turkus → morski)
========================= */

/* =========================
   ZMIENNE
========================= */
:root {
  --bg: #060b14;
  --bg-2: #0b1220;

  --fg: #ffffff;
  --muted: rgba(210, 225, 245, .78);
  --muted-2: rgba(190, 205, 225, .62);

  --accent: #2f6bff;
  --accent-2: #2fd2c9;
  --accent-3: #1b3a8a;

  --panel: rgba(255, 255, 255, .055);
  --panel-2: rgba(255, 255, 255, .035);
  --border: rgba(255, 255, 255, .12);
  --border-2: rgba(255, 255, 255, .08);

  --radius: 18px;
  --radius-lg: 26px;

  --shadow: 0 22px 80px rgba(0, 0, 0, .55);
  --shadow-soft: 0 12px 45px rgba(0, 0, 0, .38);

  --glow-blue: 0 0 90px rgba(47, 107, 255, .18);
  --glow-teal: 0 0 90px rgba(47, 210, 201, .20);

  --max: 1200px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--fg);
  overflow-x: hidden;
  background:
    radial-gradient(900px 600px at 15% 12%, rgba(47, 107, 255, .22), transparent 60%),
    radial-gradient(900px 650px at 85% 35%, rgba(47, 210, 201, .18), transparent 55%),
    radial-gradient(700px 420px at 50% -10%, rgba(27, 58, 138, .35), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: rgba(255, 255, 255, .95);
}

main {
  padding-top: 72px;
}

::selection {
  background: rgba(47, 107, 255, .32);
}

/* delikatna siatka (enterprise vibe) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
}

/* =========================
   HEADER / NAV
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 11, 20, .62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav {
  max-width: var(--max);
  height: 150px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

/* LOGO + slogan (jeden pod drugim) 
.logo-block{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:240px;
}
.logo{
  font-weight:850;
  letter-spacing:1.6px;
  white-space:nowrap;
  font-size:14px;
  text-transform:uppercase;
  background:linear-gradient(90deg, rgba(255,255,255,.98), rgba(210,225,245,.72));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.logo-desc{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.1;
  font-size:12px;
  color:var(--muted-2);
}
.logo-desc .logo-slogan{
  color:rgba(255,255,255,.92);
  letter-spacing:.2px;
}
*/

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-height: 250px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  z-index: 3;
}




/* NAV */
nav a {
  margin-left: 30px;
  font-size: 14px;
  color: var(--muted-2);
  position: relative;
  transition: color .22s var(--ease), transform .22s var(--ease);
}

nav a:hover {
  color: rgba(255, 255, 255, .92);
  transform: translateY(-1px);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .28s var(--ease);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: rgba(255, 255, 255, .92);
}

nav a.active::after {
  width: 100%;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .92);
  margin: 4px 0;
  transition: .25s var(--ease);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 76px 20px;
}

/* aurora overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 28% 32%, rgba(47, 107, 255, .22), transparent 45%),
    radial-gradient(circle at 72% 65%, rgba(47, 210, 201, .18), transparent 50%),
    radial-gradient(circle at 55% 15%, rgba(27, 58, 138, .22), transparent 48%);
  filter: blur(46px);
  opacity: .95;
  animation: floatGlow 10s var(--ease) infinite alternate;
  pointer-events: none;
}

@keyframes floatGlow {
  from {
    transform: translate3d(-10px, -10px, 0) scale(1);
  }

  to {
    transform: translate3d(10px, 10px, 0) scale(1.03);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-content h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.35px;
  font-weight: 900;
}

.hero-content p {
  margin-top: 16px;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-list {
  margin-top: 16px;
  font-size: .96rem;
  color: rgba(255, 255, 255, .86);
  letter-spacing: .15px;
}

/* GLOWS z HTML */
.glow {
  position: absolute;
  filter: blur(140px);
  opacity: .48;
  pointer-events: none;
}

.glow-1 {
  width: 560px;
  height: 560px;
  background: var(--accent);
  top: 12%;
  left: 6%;
}

.glow-2 {
  width: 480px;
  height: 480px;
  background: var(--accent-2);
  bottom: 8%;
  right: 10%;
}

/* =========================
   SECTIONS
========================= */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px 28px;
  position: relative;
}

.section h2 {
  text-align: center;
  font-weight: 800;
  letter-spacing: .7px;
  margin-bottom: 64px;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  color: rgba(255, 255, 255, .95);
}

/* sekcja dark na całą szerokość */
.section.dark {
  max-width: none;
  width: 100%;
  margin: 0;
  background:
    radial-gradient(900px 650px at 15% 15%, rgba(47, 107, 255, .10), transparent 60%),
    radial-gradient(900px 650px at 85% 40%, rgba(47, 210, 201, .08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section.dark>* {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* =========================
   ABOUT
========================= */
.about {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.95;
  color: var(--muted);
}

.about p {
  margin: 14px auto;
  max-width: 920px;
}

.about p:first-of-type {
  color: rgba(255, 255, 255, .84);
}

.about h3 {
  margin: 42px 0 18px;
  color: rgba(255, 255, 255, .94);
  font-weight: 850;
  letter-spacing: .2px;
  font-size: 1.05rem;
}

/* ✅ NOWE FILARY (kafle 2×2) — pod HTML: .pillars-grid / .pillar-card */
.pillars-grid {
  margin: 18px auto 30px;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(47, 107, 255, .16), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(47, 210, 201, .12), transparent 50%);
  filter: blur(30px);
  opacity: .55;
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 24px 85px rgba(0, 0, 0, .55), var(--glow-teal);
}

.pillar-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .95);
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: .98rem;
}

/* fallback — jeśli gdzieś jeszcze zostanie stary <ul class="pillars"> */
.pillars {
  list-style: none;
  padding: 0;
  margin: 16px auto 26px;
  display: grid;
  gap: 12px;
  text-align: left;
  max-width: 900px;
}

.pillars li {
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .028));
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.pillars li strong {
  color: rgba(255, 255, 255, .95);
}

/* =========================
   GRID / CARDS (USŁUGI)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.glass::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 140%;
  height: 120%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, .12), transparent 55%);
  opacity: .55;
  pointer-events: none;
  transform: rotate(10deg);
}

.glass:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .6), var(--glow-blue), var(--glow-teal);
}

.card.glass {
  border-left: 1px solid rgba(47, 107, 255, 0);
}

.card.glass:hover {
  border-left: 1px solid rgba(47, 210, 201, .45);
}

.card h3 {
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: .15px;
  color: rgba(255, 255, 255, .96);
}

.card p {
  color: var(--muted);
  line-height: 1.85;
}

.card ul {
  margin-top: 14px;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.85;
}

.card ul li {
  margin: 6px 0;
}

.note {
  margin-top: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
  line-height: 1.75;
}

/*
.consulting::after{
  content:"CONSULTING";
  position:absolute;
  right:-20px;
  bottom:-24px;
  font-size:46px;
  letter-spacing:3px;
  color:rgba(255,255,255,.06);
  transform:rotate(-8deg);
  pointer-events:none;
}
*/

/* =========================
   CONTACT (2 kolumny + optyczne wyśrodkowanie)
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  /* formularz większy */
  gap: 64px;
  align-items: start;
  margin-top: -10px;
}

/* lewa kolumna: centrowanie + kontrola szerokości */
.contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  padding-top: 40px;
  /* dopasowanie do formy */
}

.contact-text>* {
  max-width: 520px;
  width: 100%;
}

/* hasło opuszczone w dół (oś formularza) */
.contact-text .contact-intro {
  margin-top: 48px;
  margin-bottom: 26px;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
  text-align: left;
}

/* lista bez wcięć, z markerem */
.contact-text .contact-list {
  margin: 0 0 26px 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.9;
}

.contact-text .contact-list li {
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.85;
}

.contact-text .contact-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 800;
}

/* claim */
.contact-text .contact-claim {
  margin-top: 8px;
  text-align: left;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* FORM — szerszy, premium */
.contact-form {
  max-width: 760px;
  width: 100%;
  justify-self: end;
  padding: 38px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* jeśli ma klasę glass — dodatkowe “ważenie” */
.contact-form.glass {
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04), var(--glow-blue);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 16px 18px;
  color: rgba(255, 255, 255, .92);
  border-radius: 14px;
  font-size: 15px;
  transition: border .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(190, 205, 225, .72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(47, 107, 255, .75);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, .14);
  background: rgba(255, 255, 255, .045);
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 8px;
  padding: 16px 18px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .2px;
  color: #071018;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 55px rgba(47, 107, 255, .30);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(47, 107, 255, .42);
  filter: saturate(1.06);
}

.contact-form button:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

/* status (z klasami ok/err/info z JS) */
.status {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted-2);
}

.status.ok {
  color: rgba(47, 210, 201, .95);
}

.status.err {
  color: rgba(255, 130, 130, .95);
}

.status.info {
  color: var(--muted-2);
}

/* =========================
   PRIVACY
========================= */
.section.privacy {
  max-width: 1000px;
}

.section.privacy h2 {
  margin-bottom: 28px;
}

.section.privacy p {
  color: var(--muted);
  line-height: 1.95;
  margin: 10px 0;
}

.section.privacy ul {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.95;
}

.section.privacy li {
  margin: 6px 0;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 52px 20px;
  color: var(--muted-2);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* =========================
   ANIMATIONS
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   STAŁY PRZYCISK — WYCENA
   Premium glass CTA dopasowany do strony
========================= */
.floating-client-form {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 118px;
  padding: 12px 17px 12px 13px;
  border-radius: 999px;

  color: rgba(255, 255, 255, .96);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .22px;
  text-align: center;
  white-space: nowrap;

  background:
    radial-gradient(circle at 18% 18%, rgba(47, 210, 201, .20), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(255, 255, 255, .045),
    0 0 34px rgba(47, 210, 201, .18),
    0 0 42px rgba(47, 107, 255, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;
  isolation: isolate;
  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease),
    border-color .25s var(--ease),
    background .25s var(--ease),
    filter .25s var(--ease);
}

.floating-client-form::before {
  content: "↗";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;

  color: #071018;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;

  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:
    0 10px 28px rgba(47, 107, 255, .34),
    0 0 22px rgba(47, 210, 201, .26);
}

.floating-client-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  opacity: .72;
  background:
    linear-gradient(135deg, rgba(47, 107, 255, .18), rgba(47, 210, 201, .12)),
    linear-gradient(90deg, rgba(255, 255, 255, .10), transparent 42%);
}

.floating-client-form:hover {
  transform: translateY(-50%) translateX(-4px) scale(1.02);
  border-color: rgba(47, 210, 201, .34);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .50),
    0 0 0 1px rgba(47, 210, 201, .12),
    0 0 46px rgba(47, 210, 201, .28),
    0 0 62px rgba(47, 107, 255, .18);
  filter: saturate(1.08);
}

.floating-client-form:active {
  transform: translateY(-50%) translateX(-2px) scale(.99);
}

.floating-client-form:focus-visible {
  outline: none;
  border-color: rgba(47, 210, 201, .55);
  box-shadow:
    0 0 0 4px rgba(47, 210, 201, .22),
    0 24px 80px rgba(0, 0, 0, .50),
    0 0 46px rgba(47, 210, 201, .28);
}

/* =========================
   MOBILE / RESPONSIVE
========================= */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-text {
    padding-top: 0;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .contact-text>* {
    max-width: 100%;
  }

  .contact-text .contact-intro {
    margin-top: 0;
    text-align: center;
  }

  .contact-text .contact-list {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .contact-form {
    justify-self: stretch;
    padding: 26px;
    max-width: 100%;
  }

  .contact-form textarea {
    min-height: 180px;
  }
}

@media (max-width:768px) {

  .nav {
    padding: 0 16px;
  }

  .logo-block {
    gap: 10px;
    min-width: 0;
  }

  .logo {
    font-size: 13px;
    letter-spacing: 1.1px;
  }

  .logo-desc {
    font-size: 11px;
  }


  nav {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(6, 11, 20, .96);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
    transition: .35s var(--ease);
  }

  nav.active {
    right: 0;
  }

  nav a {
    margin: 18px 0;
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 32px 18px;
  }

  .section {
    padding: 86px 16px;
  }

  .section.dark>* {
    padding-left: 16px;
    padding-right: 16px;
  }

  .glass {
    padding: 26px;
  }

  .glow {
    opacity: .30;
  }
}

@media (max-width:768px) {
  .logo img {
    max-height: 36px;
  }
}

@media (max-width:768px) {
  .floating-client-form {
    top: auto;
    right: 50%;
    bottom: 18px;
    transform: translateX(50%);
    min-width: 132px;
    padding: 12px 17px 12px 13px;
    font-size: 14px;
    box-shadow:
      0 18px 58px rgba(0, 0, 0, .50),
      0 0 34px rgba(47, 210, 201, .18),
      0 0 42px rgba(47, 107, 255, .12);
  }

  .floating-client-form:hover {
    transform: translateX(50%) translateY(-2px) scale(1.01);
  }

  .floating-client-form:active {
    transform: translateX(50%) translateY(0) scale(.99);
  }
}

@media (max-width:420px) {
  .floating-client-form {
    bottom: 14px;
    min-width: 124px;
    padding: 11px 15px 11px 12px;
    font-size: 13px;
  }

  .floating-client-form::before {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 14px;
  }
}

/* mniej ruchu */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   HERO BACKGROUND IMAGE (Premium)
========================= */
.hero {
  position: relative;
  background:
    radial-gradient(900px 600px at 15% 12%, rgba(47, 107, 255, .20), transparent 60%),
    radial-gradient(900px 650px at 85% 35%, rgba(47, 210, 201, .16), transparent 55%),
    linear-gradient(180deg, rgba(6, 11, 20, .55), rgba(6, 11, 20, .92)),
    url("img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay „czytelność + klimat” */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(0, 0, 0, .20), transparent 60%),
    linear-gradient(90deg, rgba(6, 11, 20, .72), rgba(6, 11, 20, .40) 55%, rgba(6, 11, 20, .78));
  z-index: 1;
  pointer-events: none;
}

/* Twoje glowy zostają, ale pod tekstem */
.glow {
  z-index: 0;
}

.hero-content {
  z-index: 2;
}

/* glass panel mocniej, żeby tekst siadł na zdjęciu */
.hero-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .55), var(--glow-blue), var(--glow-teal);
}

/* =========================
   CONSULTING – logo w tle
========================= */
.consulting {
  position: relative;
  overflow: hidden;
}

/* obraz w tle */
.consulting::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    url("img/logo-white.png") center/60% no-repeat;

  opacity: .06;
  /* siła logo – zmień 0.04–0.10 */
  filter: grayscale(100%);
  pointer-events: none;
}

/* żeby treść była nad logo */
.consulting>* {
  position: relative;
  z-index: 2;
}

/* ========================================
   CONSULTING — PERFECT CENTER LOGO
======================================== */

.consulting {
  position: relative;
  overflow: hidden;
}

/* logo */
.consulting::before {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* idealne centrowanie */

  width: 70%;
  height: 70%;

  background: url("img/logo-white.png") center/contain no-repeat;

  opacity: .07;
  filter: grayscale(100%);

  pointer-events: none;
  z-index: 1;
}

/* treść nad logo */
.consulting>* {
  position: relative;
  z-index: 2;
}

/* =========================
   RODO / CONSENTS
========================= */
.consents {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  cursor: pointer;
}

.consent-item input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent-2);
  cursor: pointer;
}

.consent-item a {
  color: var(--accent-2);
  text-decoration: underline;
}

.consent-item a:hover {
  color: #fff;
}

/* =========================
   CONTACT – DANE FIRMY
========================= */
.contact-direct {
  margin-top: 48px;
  color: var(--muted);
  max-width: 520px;
}

.contact-direct-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 18px;
}

.contact-company {
  line-height: 1.85;
  margin-bottom: 18px;
}

.contact-company .label {
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-company strong {
  color: rgba(255, 255, 255, .95);
}

.contact-email {
  margin-top: 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-email a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.contact-email a:hover {
  text-decoration: underline;
  color: #fff;
}

.email-icon {
  font-size: 1.1rem;
  opacity: .9;
}
@media (max-width:768px) {
  .contact-claim {
    text-align: center;
  }
}

/* =========================================================
   DELIKATNE PULSOWANIE GŁÓWNEGO LOGO — IMPORTUJEMY.PL
   ========================================================= */
.logo img {
  transform-origin: center center;
  animation: importujemyLogoPulse 5.2s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes importujemyLogoPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 0 0 rgba(49, 173, 109, 0));
  }
  50% {
    transform: scale(1.025);
    filter: brightness(1.055) drop-shadow(0 0 10px rgba(49, 173, 109, .14));
  }
}

/* Szanuje ustawienie ograniczenia animacji w systemie użytkownika. */
@media (prefers-reduced-motion: reduce) {
  .logo img {
    animation: none;
    transform: none;
    filter: none;
  }
}

