/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0b1628;
  --navy2:      #0f1e35;
  --blue:       #1a56db;
  --blue-light: #3b82f6;
  --accent:     #f59e0b;
  --white:      #ffffff;
  --gray:       #94a3b8;
  --light-bg:   #f0f4fa;
  --text-dark:  #0b1628;
  --text-muted: #64748b;
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;

  /* Globalny max-width kontenera */
  --max-w: 1200px;
  /* --cx = side padding który centruje treść względem max-w */
  --cx: max(24px, calc((100vw - var(--max-w)) / 2));
}

/* Szersze kontenery na dużych ekranach */
@media (min-width: 1920px) {
  :root { --max-w: 1440px; }
}
@media (min-width: 2400px) {
  :root { --max-w: 1680px; }
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  padding: 8px var(--cx);
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.topbar a { color: rgba(255,255,255,0.75); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-sep { color: rgba(255,255,255,0.15); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,22,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 var(--cx);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}
.nav-logo span { color: var(--blue-light); }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s;
  display: inline-block;
}
.nav-cta:hover { background: #1d4ed8; color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all .3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.8); }
.mobile-menu .nav-cta { text-align: center; width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,40,0.75) 0%, rgba(11,22,40,0.60) 50%, rgba(11,22,40,0.85) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 1L59 17.5V52.5L30 69L1 52.5V17.5L30 1Z' stroke='rgba(26%2C86%2C219%2C0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 100px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,86,219,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--blue-light); }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  text-align: center;
}
.hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.btn-primary:hover { background: #1d4ed8; color: #fff; }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border: 1px solid var(--blue);
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.btn-outline-dark:hover { background: var(--blue); color: #fff; }

.btn-accent {
  background: var(--accent);
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.btn-accent:hover { background: #d97706; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--blue);
  padding: 0 var(--cx);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 0 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* ===== SECTIONS ===== */
/* Sekcje używają --cx jako padding boczny — content automatycznie centruje się w max-w */
.section {
  padding: 96px var(--cx);
}
.section-dark  { background: var(--navy); color: #fff; }
.section-light { background: var(--light-bg); }
.section-white { background: #fff; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-label::before,
.section-label::after { content: ''; display: block; width: 28px; height: 2px; background: currentColor; }
.section-dark .section-label { color: var(--blue-light); }

.section h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 auto 18px;
  line-height: 1.15;
  color: var(--text-dark);
  text-align: center;
  max-width: 760px;
}
.section-dark h2 { color: #fff; }
.section h2 span { color: var(--blue-light); }

.section-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 auto 56px;
  max-width: 620px;
  line-height: 1.7;
  text-align: center;
}
.section-dark .section-intro { color: var(--gray); }

/* ===== FEATURE ROWS ===== */
.feature-rows { display: flex; flex-direction: column; }
.feature-row {
  display: grid;
  grid-template-columns: 64px 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.feature-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.feature-row-light { border-bottom-color: #e2e8f0; }
.feature-row-light:first-child { border-top-color: #e2e8f0; }
.feature-row-light:hover { background: rgba(26,86,219,0.02); }

.feature-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 2px;
  padding-top: 3px;
}
.feature-row-light .feature-num { color: var(--blue); }

.feature-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.feature-row-light .feature-title { color: var(--text-dark); }

.feature-body { font-size: 13px; color: var(--gray); line-height: 1.7; }
.feature-row-light .feature-body { color: var(--text-muted); }

.feature-rows-2col .feature-row { grid-template-columns: 64px 1fr; }

/* ===== SERVICES OVERVIEW (strona główna) ===== */
.svc-list { display: flex; flex-direction: column; }
.svc-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 24px;
  cursor: pointer;
  transition: background .15s;
}
.svc-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.svc-item-dark { border-bottom-color: rgba(255,255,255,0.07); }
.svc-item-dark:first-child { border-top-color: rgba(255,255,255,0.07); }

.svc-item-left {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 20px;
}
.svc-item-index {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  padding-top: 3px;
}
.svc-item-dark .svc-item-index { color: var(--blue-light); }
.svc-item-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.svc-item-dark .svc-item-name { color: #fff; }
.svc-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.svc-item-dark .svc-item-desc { color: var(--gray); }
.svc-item-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
}
.svc-item:hover .svc-item-arrow { opacity: 1; }
.svc-item-dark .svc-item-arrow { color: var(--blue-light); }

/* ===== SERVICE CARDS (podstrona usługi) ===== */
.svc-icon { font-size: 24px; margin-bottom: 10px; }

.svc-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.svc-card-dark h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.svc-card-dark p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ===== GRIDS ===== */
.svc-grid   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ===== VALUES (o-nas) ===== */
.values-list { display: flex; flex-direction: column; }
.value-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.value-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.value-head { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; }
.value-head small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
}
.value-text { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* Objects - 2-col */
.obj-list { display: grid; grid-template-columns: 1fr 1fr; }
.obj-row { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.obj-row:nth-child(odd)  { padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.07); }
.obj-row:nth-child(even) { padding-left: 40px; }
.obj-row:nth-last-child(-n+2) { border-bottom: none; }
.obj-row-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
.obj-row h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.obj-row p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== TECH SPECS (technologia) ===== */
.tech-rows { display: flex; flex-direction: column; margin-top: 8px; }
.tech-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.tech-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.tech-row-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.tech-row-name span { font-size: 20px; }
.tech-row-desc { font-size: 13px; color: var(--gray); line-height: 1.65; }
.tech-row-specs { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tech-row-specs li { font-size: 12px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }
.tech-row-specs li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; }

/* ===== NORM ROWS ===== */
.norm-rows { display: flex; flex-direction: column; }
.norm-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid #e2e8f0;
  align-items: start;
}
.norm-row:first-child { border-top: 1px solid #e2e8f0; }
.norm-row-id { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--blue); letter-spacing: -0.3px; line-height: 1.2; }
.norm-row h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.norm-row p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.steps::before { display: none; }
.step {
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.step:last-child  { border-right: none; }
.step:first-child { padding-left: 0; }
.step:not(:first-child) { padding-left: 28px; }
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
  background: none;
  border-radius: 0;
  width: auto; height: auto;
}
.step h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.section-dark .steps   { border-top-color: rgba(255,255,255,0.07); }
.section-dark .step    { border-right-color: rgba(255,255,255,0.07); }
.section-dark .step-num { color: var(--blue-light); }
.section-dark .step h3  { color: #fff; }
.section-dark .step p   { color: var(--gray); }
.section-white .steps  { border-top-color: #e2e8f0; }
.section-white .step   { border-right-color: #e2e8f0; }
.section-light .steps  { border-top-color: #dde6f0; }
.section-light .step   { border-right-color: #dde6f0; }

/* ===== SPLIT (pół-na-pół) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 480px;
}
.split-img-r::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}
.split-img-l::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 60%, var(--navy) 100%);
}
.split-content {
  padding: 72px clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}
.split-content h2 { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.15; text-align: left; max-width: none; }
.split-content h2 span { color: var(--blue-light); }
.split-content .section-label { justify-content: flex-start; }
.split-content .section-label::before { display: none; }
.split-content-light { background: var(--light-bg); }
.split-content-light h2 { color: var(--text-dark); }
.split-content-light .section-label { color: var(--blue); }
.split-content-light p { color: var(--text-muted); }

/* ===== CERT TAGS ===== */
.cert-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cert-tag {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue-light);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 2px;
}

/* ===== VALUES GRID ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--blue-light);
  padding: 24px; border-radius: 4px;
}
.value-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== OBJECTS GRID ===== */
.obj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.obj-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px; border-radius: 4px;
  text-align: center;
  transition: background .2s;
}
.obj-card:hover { background: rgba(255,255,255,0.07); }
.obj-icon { font-size: 32px; margin-bottom: 14px; }
.obj-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.obj-card p { font-size: 13px; color: var(--gray); }

/* ===== SPEC LIST ===== */
.spec-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.spec-list li { font-size: 14px; color: var(--gray); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.spec-list li::before { content: '▸'; color: var(--blue-light); font-size: 10px; margin-top: 3px; flex-shrink: 0; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e8eef6;
  padding: 20px var(--cx);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 40px;
  border-right: 1px solid #e2e8f0;
}
.trust-item:last-child { border-right: none; }
.trust-item-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}
.trust-item-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== SECTION HEADER 2-COL ===== */
/* Nagłówek sekcji w 2 kolumnach — tytuł po lewej, intro po prawej */
.section-header-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-header-2col .section-label {
  justify-content: flex-start;
  margin-bottom: 16px;
}
.section-header-2col .section-label::before { display: none; }
.section-header-2col h2 {
  text-align: left;
  margin: 0;
  max-width: none;
}
.section-header-2col .section-intro {
  text-align: left;
  margin: 0;
  max-width: none;
  align-self: end;
  padding-bottom: 4px;
}
.section-dark .section-header-2col .section-intro { color: var(--gray); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  padding: 100px var(--cx);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* duże liczby w tle jako dekoracja */
.cta-band::before {
  content: '24h';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 320px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.2), transparent);
  pointer-events: none;
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800;
  color: #fff; letter-spacing: -1px;
  margin: 0 auto 20px; line-height: 1.05;
  text-align: center; max-width: none;
}
.cta-content h2 span { color: var(--accent); }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0 auto 40px; max-width: 480px; text-align: center; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-image { display: none; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy2);
  padding: 80px var(--cx) 72px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-hero-over {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.page-hero-over::before, .page-hero-over::after { content: ''; display: block; width: 20px; height: 2px; background: var(--blue-light); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800;
  color: #fff; letter-spacing: -1px;
  margin-bottom: 18px; line-height: 1.1;
  max-width: 800px;
}
.page-hero p { font-size: 17px; color: var(--gray); max-width: 600px; line-height: 1.7; }

/* ===== SERVICE DETAIL ===== */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.svc-detail-text h2 { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 14px; }
.svc-detail-text p { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }

/* ===== CONTACT ===== */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 48px;
}
.kontakt-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  display: block;
  transition: background .2s;
}
.kontakt-card:last-child { border-right: none; }
a.kontakt-card:hover { background: rgba(255,255,255,0.04); }
.kontakt-card--plain { cursor: default; }
.kontakt-card-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 16px; display: block;
}
.kontakt-card-val {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 12px;
}
.kontakt-card-hint {
  font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5;
}
.kontakt-certs { display: flex; gap: 10px; flex-wrap: wrap; }

.map-wrap { border-radius: 4px; overflow: hidden; height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== NORM CARDS ===== */
.norm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.norm-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--blue);
  border-radius: 4px; padding: 32px;
}
.norm-id { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 6px; letter-spacing: -0.3px; }
.norm-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.norm-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== TECH CARDS ===== */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tech-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px; border-radius: 4px;
  border-top: 3px solid var(--blue-light);
}
.tech-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.tech-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.tech-card li { font-size: 13px; color: var(--gray); display: flex; align-items: flex-start; gap: 8px; }
.tech-card li::before { content: '▸'; color: var(--blue-light); font-size: 9px; margin-top: 3px; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  background: #060d18;
  padding: 56px var(--cx) 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 14px; display: block; font-size: 20px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.5px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 13px; color: rgba(255,255,255,0.38); transition: color .2s; }
.footer-col a:hover, .footer-col li:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.25);
}

/* ===== LINK HELPER ===== */
.svc-link { font-size: 13px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.svc-link:hover { gap: 8px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hero-badge { animation: fadeInUp .5s ease both; }
.hero h1    { animation: fadeInUp .5s .1s ease both; }
.hero-sub   { animation: fadeInUp .5s .2s ease both; }
.hero-btns  { animation: fadeInUp .5s .3s ease both; }

/* ===== RESPONSIVE — tablet (≤1024px) ===== */
@media (max-width: 1024px) {
  .hero { min-height: 600px; }
  .hero h1 { font-size: 48px; }
  .section-header-2col { grid-template-columns: 1fr; gap: 12px; }
  .cta-content h2 { font-size: 38px; }
  .trust-item { padding: 8px 24px; }
  .svc-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 64px 1fr; }
  .feature-row .feature-body { display: none; }
  .tech-row { grid-template-columns: 160px 1fr; }
  .tech-row .tech-row-specs { display: none; }
  .norm-row { grid-template-columns: 140px 1fr; }
  .value-row { grid-template-columns: 160px 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(n+3) { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 28px; }
  .section-dark .step:nth-child(n+3) { border-top-color: rgba(255,255,255,0.07); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-image { min-height: 240px; }
  .kontakt-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE — mobile (≤768px) ===== */
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 56px 20px; }
  .section h2 { font-size: 28px; letter-spacing: -0.3px; }
  .section-intro { font-size: 15px; margin-bottom: 36px; }

  .hero-content { padding: 56px 20px 56px 20px; max-width: 100%; }
  .hero h1 { font-size: 36px; letter-spacing: -0.5px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .stat-item { padding: 16px 12px; }
  .stat-item:first-child { padding-left: 12px; }
  .stat-num { font-size: 22px; }

  .svc-grid, .svc-grid-3, .svc-grid-2 { grid-template-columns: 1fr; }

  .feature-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .feature-row .feature-body { display: block; grid-column: 2; }

  .svc-item-left { grid-template-columns: 36px 1fr; gap: 12px; }
  .svc-item-name { font-size: 15px; }
  .svc-item-arrow { display: none; }

  .tech-row { grid-template-columns: 1fr; gap: 8px; }
  .tech-row-name { font-size: 14px; }
  .tech-row .tech-row-specs { display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px 16px; }

  .norm-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .value-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }

  .obj-list { grid-template-columns: 1fr; }
  .obj-row:nth-child(odd)  { border-right: none; padding-right: 0; }
  .obj-row:nth-child(even) { padding-left: 0; }

  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 220px; }
  .split-content { padding: 48px 20px; }
  .split-content h2 { font-size: 26px; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-top: 1px solid rgba(0,0,0,0.08); padding: 20px 0 !important; }
  .step:first-child { border-top: none; }
  .section-dark .step { border-top-color: rgba(255,255,255,0.07) !important; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 20px 24px; }

  .page-hero { padding: 48px 20px 36px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 15px; }

  .cta-band { padding: 64px 20px; }
  .cta-content h2 { font-size: 28px; }
  .trust-bar { gap: 0; }
  .trust-item { padding: 10px 16px; border-right: none; border-bottom: 1px solid #e2e8f0; width: 50%; justify-content: center; text-align: center; }
  .trust-item:nth-child(odd) { border-right: 1px solid #e2e8f0; }
  .trust-item:last-child, .trust-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .hero { min-height: 580px; }

  .form-row { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; }

  .values-grid { grid-template-columns: 1fr; }
  .norm-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: repeat(2, 1fr); }
}
