:root {
  --bg: #f4f7fb;
  --dark: #101828;
  --text: #475467;
  --muted: #667085;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --border: #e4e7ec;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.14), transparent 30rem),
    var(--bg);
}

a {
  color: inherit;
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(16, 24, 40, 0.06);
  position: sticky;
  top: 14px;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--blue);
}

.header-phone {
  text-decoration: none;
  font-weight: 800;
  color: var(--blue);
  background: #eff6ff;
  padding: 10px 16px;
  border-radius: 999px;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 34px;
  padding: 70px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7.5vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(19px, 2.5vw, 24px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.36);
}

.btn-secondary {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust span {
  color: #344054;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 24, 40, 0.3), rgba(16, 24, 40, 0.92)),
    linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  top: -70px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-card::after {
  content: "</>";
  position: absolute;
  top: 54px;
  left: 34px;
  font-size: 76px;
  font-weight: 900;
  opacity: 0.18;
}

.status-dot {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.18);
}

.hero-card p {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}

.hero-card a {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.hero-card small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.section {
  margin: 24px 0;
  padding: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.06);
}

.section-heading {
  max-width: 720px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-grid article {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.services-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.services-grid p,
.process-list p,
.cta p {
  color: var(--text);
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: #eff6ff;
  border-radius: 50%;
  font-weight: 950;
}

.process-list p {
  margin: 0;
  font-weight: 700;
}

.cta {
  margin: 26px 0;
  padding: 44px 28px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 22rem),
    linear-gradient(135deg, #111827, #1e3a8a);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--muted);
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero,
  .process {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 20px, 1120px);
    margin-top: 10px;
    padding: 12px;
  }

  .logo {
    font-size: 21px;
  }

  .header-phone {
    padding: 9px 12px;
    font-size: 14px;
  }

  main {
    width: min(100% - 20px, 1120px);
  }

  .hero {
    padding: 36px 0 20px;
  }

  .section,
  .cta,
  .hero-card {
    border-radius: 22px;
  }

  .section {
    padding: 24px;
  }

  .hero-card {
    padding: 26px;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }
}
/* DODAJ / ZMIEŃ tylko te fragmenty */

.logo img {
  height: 36px;
  display: block;
}

/* żeby 4 kafelki wyglądały dobrze */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}