:root {
  --navy-950: #031426;
  --navy-900: #071d34;
  --navy-850: #0b2743;
  --navy-800: #102f50;
  --navy-700: #17456f;
  --ink: #0b1c30;
  --paper: #f5f4f0;
  --white: #ffffff;
  --muted: #667488;
  --line: rgba(10, 34, 58, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --gold: #d9a84f;
  --gold-light: #f3d58e;
  --teal: #0e9a9a;
  --orange: #df7b25;
  --shadow: 0 24px 70px rgba(2, 18, 34, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(217,168,79,.11), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
}
.section-title { max-width: 760px; margin-bottom: 42px; }
.section-title.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
h1, h2, h3, h4 { margin: 0; color: inherit; line-height: 1.08; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { font-size: clamp(2.75rem, 6vw, 5.8rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.28rem; }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); }
.section-dark .lead { color: rgba(255,255,255,.72); }
.gold { color: var(--gold); }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #081a2e; background: var(--gold); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(3,20,38,.24); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { color: var(--white); background: var(--navy-900); }
.btn-dark:hover { background: var(--navy-800); }
.btn-link { padding: 0; min-height: auto; border: 0; color: var(--navy-800); background: transparent; }
.btn-link:hover { color: var(--gold); transform: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(2,15,28,.92), rgba(2,15,28,.66), transparent);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(3,20,38,.94);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-icon { width: 24px; height: 50px; object-fit: contain; }
.brand-name { font-size: 1rem; letter-spacing: .14em; white-space: nowrap; }
.nav-shell { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a, .nav-dropdown-toggle {
  position: relative;
  padding: 10px 0;
  color: rgba(255,255,255,.88);
  border: 0;
  background: transparent;
  font-weight: 650;
  font-size: .91rem;
}
.main-nav a:hover, .main-nav a.active, .nav-dropdown-toggle:hover { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--gold);
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -24px;
  min-width: 320px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(3,20,38,.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 11px 12px; border-radius: 9px; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.07); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.panel-link { min-height: 42px; padding: 0 16px; border: 1px solid rgba(217,168,79,.66); color: var(--gold-light); }
.header-cta { min-height: 42px; padding-inline: 17px; }
.phone-wrap { position: relative; }
.phone-button {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(217,168,79,.58);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
}
.phone-button:hover { background: rgba(217,168,79,.1); }
.phone-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 244px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: var(--navy-950);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: .2s ease;
}
.phone-wrap.open .phone-popover { opacity: 1; visibility: visible; transform: translateY(0); }
.phone-popover small { display: block; color: rgba(255,255,255,.58); margin-bottom: 5px; }
.phone-popover strong { display: block; font-size: 1.1rem; }
.phone-popover a { display: block; margin-top: 10px; color: var(--gold-light); font-weight: 700; }
.mobile-toggle { display: none; margin-left: auto; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line-dark); border-radius: 10px; color: white; background: transparent; }

.hero {
  position: relative;
  min-height: 820px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(2,15,28,.97) 0%, rgba(2,15,28,.86) 34%, rgba(2,15,28,.33) 65%, rgba(2,15,28,.18) 100%),
    linear-gradient(0deg, rgba(2,15,28,.55), transparent 60%);
}
.hero-content {
  position: relative; z-index: 3;
  min-height: 720px;
  display: flex; align-items: center;
  padding-top: var(--header-height);
}
.hero-copy { max-width: 690px; }
.hero-copy h1 span { color: var(--gold); }
.hero-copy .lead { max-width: 650px; margin-top: 22px; color: rgba(255,255,255,.84); }
.hero-meta { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: .9rem; }
.play-chip { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.46); }
.hero-arrow {
  position: absolute; z-index: 4; top: 48%;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.42);
  color: white; background: rgba(2,15,28,.28);
}
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-arrow:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 130px; display: flex; gap: 9px; transform: translateX(-50%); }
.hero-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.42); }
.hero-dot.active { width: 24px; border-radius: 99px; background: var(--gold); }
.hero-benefits {
  position: absolute; z-index: 4; left: 50%; bottom: 0;
  width: var(--container);
  transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark); border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgba(3,20,38,.82);
  backdrop-filter: blur(12px);
}
.hero-benefit { padding: 24px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--line-dark); }
.hero-benefit:last-child { border-right: 0; }
.hero-benefit svg { flex: 0 0 auto; color: var(--gold); }
.hero-benefit strong { display: block; font-size: .94rem; }
.hero-benefit span { display: block; color: rgba(255,255,255,.62); font-size: .8rem; }

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: end;
  padding: calc(var(--header-height) + 80px) 0 80px;
  color: white;
  background-size: cover;
  background-position: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,15,28,.94), rgba(2,15,28,.56) 55%, rgba(2,15,28,.18)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .page-copy { max-width: 760px; }
.page-hero .lead { margin-top: 18px; color: rgba(255,255,255,.8); max-width: 700px; }
.breadcrumbs { margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: .86rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 12px 40px rgba(3,20,38,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-image { position: relative; height: 220px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.04); }
.service-card-icon { position: absolute; left: 20px; bottom: 18px; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--navy-800); border: 4px solid white; }
.service-card:nth-child(2) .service-card-icon { background: var(--teal); }
.service-card:nth-child(3) .service-card-icon { background: var(--orange); }
.service-card-body { padding: 25px; }
.service-card-body p { margin-top: 12px; color: var(--muted); }
.service-card-body .btn-link { margin-top: 20px; }

.feature-aside { padding: 30px; border-radius: var(--radius-lg); color: white; background: var(--navy-900); }
.feature-aside h3 { color: var(--gold-light); }
.feature-list { display: grid; gap: 18px; margin-top: 24px; }
.feature-item { display: flex; gap: 14px; }
.feature-item svg { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.feature-item p { color: rgba(255,255,255,.64); font-size: .9rem; margin-top: 2px; }
.services-layout { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: stretch; }

.system-grid { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); gap: 1px; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; background: var(--line-dark); }
.system-intro, .system-card { background: var(--navy-900); }
.system-intro { padding: 36px; }
.system-intro p { margin-top: 14px; color: rgba(255,255,255,.68); }
.system-card { padding: 30px 24px; }
.system-card svg { color: var(--gold); margin-bottom: 22px; }
.system-card p { margin-top: 10px; color: rgba(255,255,255,.6); font-size: .9rem; }

.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.package-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(217,168,79,.48);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  transition: transform .2s ease, background .2s ease;
}
.package-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.06); }
.package-card.recommended { border-color: var(--gold); background: linear-gradient(180deg, rgba(217,168,79,.11), rgba(255,255,255,.025)); }
.package-label { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 5px 13px; border-radius: 99px; color: #06182b; background: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.package-icon { width: 48px; height: 48px; color: var(--gold); }
.package-card h3 { margin-top: 18px; font-size: 1.15rem; text-transform: uppercase; }
.package-card > p { margin-top: 10px; color: rgba(255,255,255,.62); min-height: 76px; }
.package-price { margin: 24px 0; padding: 20px 0; border-block: 1px solid var(--line-dark); }
.package-price strong { display: block; color: var(--gold-light); font-size: 1.1rem; }
.package-price span { color: rgba(255,255,255,.54); font-size: .8rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 25px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 9px; color: rgba(255,255,255,.78); font-size: .9rem; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 900; }
.package-card .btn { width: 100%; }

.media-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.media-card { position: relative; min-height: 320px; overflow: hidden; border-radius: var(--radius-lg); color: white; background: var(--navy-900); }
.media-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,15,28,.94), rgba(2,15,28,.08) 65%); }
.media-card-content { position: absolute; z-index: 2; inset: auto 24px 24px; }
.media-card-content p { margin-top: 8px; color: rgba(255,255,255,.7); }
.media-play { position: absolute; z-index: 3; top: 22px; right: 22px; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; background: rgba(3,20,38,.38); }

.tech-grid { display: grid; grid-template-columns: 1.1fr repeat(4, 1fr); gap: 18px; }
.tech-intro { padding-right: 20px; }
.tech-intro p { margin-top: 12px; color: var(--muted); }
.tech-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.tech-card svg { color: var(--navy-700); }
.tech-card h3 { margin-top: 18px; font-size: 1rem; }
.tech-card p { margin-top: 8px; color: var(--muted); font-size: .87rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.image-panel { position: relative; min-height: 540px; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.image-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,20,38,.32), transparent 45%); }
.content-stack { display: grid; gap: 24px; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pillar-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.pillar-card svg { color: var(--gold); }
.pillar-card h3 { margin-top: 15px; font-size: 1.03rem; }
.pillar-card p { margin-top: 8px; color: var(--muted); font-size: .9rem; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 24px 10px 0 0; border-top: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 22px; color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.step h3 { font-size: 1rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: .88rem; }

.cta-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}
.cta-copy { padding: 54px; color: white; background: radial-gradient(circle at 15% 20%, rgba(217,168,79,.16), transparent 34%); }
.cta-copy p { margin-top: 15px; color: rgba(255,255,255,.66); }
.cta-contact { margin-top: 30px; display: grid; gap: 12px; }
.cta-contact a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); }
.cta-form { padding: 44px; background: white; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .82rem; font-weight: 700; color: #35465b; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid #d9e0e7; border-radius: 9px;
  background: #fafbfd; color: var(--ink);
}
.form-field textarea { min-height: 115px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(217,168,79,.22); border-color: var(--gold); }
.form-note { margin-top: 12px; color: var(--muted); font-size: .78rem; }
.form-message { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; color: #0b5134; background: #e9f8f0; }
.form-message.show { display: block; }

.category-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink); background: white; font-weight: 700; }
.filter-button.active, .filter-button:hover { border-color: var(--navy-800); color: white; background: var(--navy-800); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: white; transition: transform .22s ease; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card.hidden { display: none; }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-meta { color: var(--gold); font-size: .76rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.blog-body h3 { margin-top: 11px; }
.blog-body p { margin-top: 10px; color: var(--muted); }
.blog-body .btn-link { margin-top: 18px; }

.job-toolbar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.job-toolbar select { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.job-list { display: grid; gap: 14px; }
.job-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.job-card.hidden { display: none; }
.job-card p { margin-top: 8px; color: var(--muted); }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.job-tag { padding: 5px 10px; border-radius: 99px; color: var(--navy-800); background: #eef3f8; font-size: .76rem; font-weight: 700; }

.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.compare-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th { color: white; background: var(--navy-900); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-yes { color: #137154; font-weight: 900; }
.compare-no { color: #a5afb9; }

.site-footer { color: white; background: #02111f; }
.footer-top { padding: 54px 0 40px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 44px; }
.footer-brand p { margin-top: 16px; color: rgba(255,255,255,.58); max-width: 300px; }
.footer-title { margin-bottom: 16px; font-size: .9rem; color: rgba(255,255,255,.9); }
.footer-links { display: grid; gap: 9px; color: rgba(255,255,255,.58); font-size: .9rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: .8rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --header-height: 74px; }
  .header-actions .header-cta { display: none; }
  .main-nav { gap: 17px; }
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .system-intro { grid-column: 1 / -1; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-intro { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 28px, 760px); }
  .mobile-toggle { display: grid; }
  .nav-shell {
    position: fixed; inset: var(--header-height) 0 0;
    margin: 0; padding: 26px 24px 40px;
    display: block; overflow-y: auto;
    background: rgba(3,20,38,.99);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  body.menu-open .nav-shell { transform: translateX(0); }
  .main-nav { display: grid; gap: 2px; }
  .main-nav a, .nav-dropdown-toggle { width: 100%; padding: 15px 0; text-align: left; font-size: 1.03rem; }
  .main-nav a.active::after { display: none; }
  .nav-dropdown-menu { position: static; min-width: 0; display: none; margin: 2px 0 12px; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.04); }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .header-actions { margin-top: 24px; flex-wrap: wrap; }
  .header-actions .header-cta { display: inline-flex; }
  .phone-popover { position: fixed; top: auto; left: 20px; right: 20px; bottom: 20px; width: auto; }
  .hero { min-height: 840px; }
  .hero-content { min-height: 680px; align-items: center; }
  .hero::before { background: linear-gradient(90deg, rgba(2,15,28,.96), rgba(2,15,28,.65)); }
  .hero-arrow { display: none; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); }
  .hero-benefit:nth-child(2) { border-right: 0; }
  .hero-benefit:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .hero-dots { bottom: 210px; }
  .services-layout { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-aside { grid-column: 1 / -1; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-card:first-child { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; gap: 38px; }
  .image-panel { min-height: 440px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 24px, 560px); }
  .section { padding: 74px 0; }
  .section-sm { padding: 54px 0; }
  .brand-name { font-size: .86rem; }
  .hero { min-height: 940px; }
  .hero-content { min-height: 720px; align-items: flex-start; padding-top: 150px; }
  .hero-copy h1 { font-size: clamp(2.55rem, 13vw, 4.3rem); }
  .hero-copy .lead { font-size: .98rem; }
  .button-row { flex-direction: column; align-items: stretch; }
  .hero-benefits { width: 100%; grid-template-columns: 1fr 1fr; border-radius: 0; }
  .hero-benefit { padding: 18px 14px; align-items: flex-start; }
  .hero-benefit span { display: none; }
  .hero-dots { bottom: 204px; }
  .page-hero { min-height: 520px; padding-bottom: 60px; }
  .service-grid, .package-grid, .media-grid, .blog-grid, .pillar-grid { grid-template-columns: 1fr; }
  .media-card:first-child { grid-column: auto; }
  .system-grid { grid-template-columns: 1fr; }
  .system-intro { grid-column: auto; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-intro { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .cta-copy, .cta-form { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .job-toolbar { grid-template-columns: 1fr; }
  .job-card { grid-template-columns: 1fr; }
  .job-card .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .image-panel { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   V2 — premium full-width layout, stronger contrast and mega menu
   ========================================================= */
:root {
  --site-gutter: clamp(20px, 4vw, 76px);
  --container: min(1560px, calc(100% - (var(--site-gutter) * 2)));
  --header-height: 88px;
  --paper: #f7f6f2;
  --ink: #07182b;
  --muted: #53657a;
  --gold: #dda83f;
  --gold-light: #f3d58e;
}
.site-shell { width: var(--container); margin-inline: auto; }
.section { padding: clamp(82px, 8vw, 132px) 0; }
.section-sm { padding: clamp(58px, 6vw, 92px) 0; }
.section-soft { background: #eef2f5; }
.section-dark { color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.76); }

.site-header { height: var(--header-height); background: linear-gradient(to bottom, rgba(2,15,28,.98), rgba(2,15,28,.88)); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header:not(.scrolled) { background: linear-gradient(to bottom, rgba(2,15,28,.9), rgba(2,15,28,.48), transparent); border-bottom-color: transparent; }
.header-inner { gap: clamp(20px, 3vw, 54px); }
.brand { min-width: 210px; }
.brand-icon { width: 25px; height: 52px; }
.brand-name { font-size: .98rem; letter-spacing: .16em; }
.nav-shell { gap: clamp(14px, 1.8vw, 30px); }
.main-nav { gap: clamp(16px, 1.65vw, 30px); }
.main-nav a, .nav-dropdown-toggle { font-size: .87rem; letter-spacing: .01em; }
.nav-dropdown-toggle.active::after { content:""; position:absolute; left:0; right:0; bottom:2px; height:2px; background:var(--gold); }
.header-actions { gap: 9px; }
.panel-link { background: rgba(217,168,79,.055); }
.phone-button { width: 40px; height: 40px; }
.header-cta { min-height: 44px; }

.nav-dropdown-menu.mega-menu {
  left: 50%;
  top: calc(100% + 10px);
  width: min(940px, calc(100vw - 48px));
  min-width: 760px;
  padding: 0;
  transform: translate(-50%, -10px);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: rgba(2,17,31,.985);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.nav-dropdown.open .nav-dropdown-menu.mega-menu { transform: translate(-50%, 0); }
.nav-dropdown:hover .nav-dropdown-menu.mega-menu { transform: translate(-50%, 0); }
.mega-menu-intro { padding: 30px; border-right: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(217,168,79,.12), rgba(255,255,255,.02)); }
.mega-kicker { display:block; margin-bottom:12px; color:var(--gold); font-size:.7rem; font-weight:850; letter-spacing:.14em; text-transform:uppercase; }
.mega-menu-intro strong { display:block; color:#fff; font-family: Georgia, "Times New Roman", serif; font-size:1.55rem; line-height:1.1; font-weight:500; }
.mega-menu-intro p { margin-top:14px; color:rgba(255,255,255,.62); font-size:.86rem; }
.mega-overview { display:flex !important; align-items:center; gap:8px; margin-top:22px; padding:0 !important; color:var(--gold-light) !important; font-weight:750; }
.mega-menu-columns { display:grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 24px; }
.mega-menu-column { min-width:0; }
.mega-menu-column > span { display:block; margin:0 12px 9px; color:var(--gold); font-size:.69rem; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
.nav-dropdown-menu .mega-menu-column a { padding:9px 12px; color:rgba(255,255,255,.78); font-size:.82rem; line-height:1.25; }
.nav-dropdown-menu .mega-menu-column a:hover { color:#fff; background:rgba(217,168,79,.12); }

.hero { min-height: 100svh; height: auto; }
.hero-content { min-height: 100svh; padding: calc(var(--header-height) + 48px) 0 175px; }
.hero-copy { max-width: min(820px, 59vw); }
.hero-copy h1 { font-size: clamp(3.6rem, 6.4vw, 7rem); }
.hero-copy .lead { max-width: 720px; font-size: clamp(1.06rem, 1.35vw, 1.3rem); }
.hero-benefits { width: var(--container); }
.hero-dots { bottom: 145px; }

.page-hero { min-height: 100svh; align-items: center; padding: calc(var(--header-height) + 50px) 0 155px; }
.page-hero::before { background: linear-gradient(90deg, rgba(2,15,28,.97) 0%, rgba(2,15,28,.88) 36%, rgba(2,15,28,.32) 70%, rgba(2,15,28,.12)); }
.page-hero .page-copy { max-width: min(920px, 66vw); }
.page-hero h1 { font-size: clamp(3.7rem, 6.25vw, 7.2rem); }
.page-hero .lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.service-page-hero { background-position: center; }
.page-hero-strip { position:absolute; left:50%; bottom:0; width:var(--container); transform:translateX(-50%); display:grid; grid-template-columns:repeat(4,1fr); border:1px solid rgba(255,255,255,.14); border-bottom:0; border-radius:20px 20px 0 0; background:rgba(2,18,34,.84); backdrop-filter:blur(14px); }
.page-hero-strip > div { padding:24px 28px; border-right:1px solid rgba(255,255,255,.12); }
.page-hero-strip > div:last-child { border-right:0; }
.page-hero-strip strong { display:block; color:#fff; }
.page-hero-strip span { display:block; margin-top:4px; color:rgba(255,255,255,.58); font-size:.82rem; }

.services-section { padding-top: clamp(86px, 8vw, 126px); }
.services-layout { display:block; }
.service-grid-expanded, .service-grid-four { grid-template-columns: repeat(4, 1fr); }
.service-card { color:var(--ink); border-color:rgba(5,31,55,.11); border-radius:20px; }
.service-card-body h3 { color:var(--ink); }
.service-card-body p { color:#53657a; }
.service-card-image { height: 205px; }
.service-card-icon.service-icon-neutral { background:var(--navy-900) !important; }
.feature-aside-wide { margin-top:24px; display:grid; grid-template-columns:minmax(260px,.8fr) 2fr auto; gap:28px; align-items:center; }
.feature-aside-wide .feature-list { margin:0; }
.feature-list-horizontal { grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.1); }
.feature-list-horizontal .feature-item { min-height:100%; padding:18px; background:var(--navy-900); }
.feature-list-horizontal .feature-item strong { display:block; color:#fff; }

.offer-detail-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.offer-detail-card { min-height:250px; padding:28px; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:rgba(255,255,255,.035); transition:.22s ease; }
.offer-detail-card:hover { transform:translateY(-5px); border-color:rgba(217,168,79,.75); background:rgba(217,168,79,.08); }
.offer-detail-number { color:var(--gold); font-size:.72rem; font-weight:900; letter-spacing:.12em; }
.offer-detail-card h3 { margin-top:34px; color:#fff; }
.offer-detail-card p { margin-top:12px; color:rgba(255,255,255,.66); }
.offer-detail-link { display:flex; align-items:center; gap:8px; margin-top:24px; color:var(--gold-light); font-size:.86rem; font-weight:750; }

/* Explicit surface contrast */
.pillar-card, .tech-card, .blog-card, .service-card, .cta-form, .compare-table-wrap, .job-card, .scope-item { color:var(--ink); }
.pillar-card h3, .tech-card h3, .blog-card h3, .service-card h3, .job-card h3, .scope-item h3 { color:var(--ink); }
.section-dark .pillar-card { color:var(--ink); background:#fff; }
.section-dark .pillar-card h3 { color:var(--ink); }
.section-dark .pillar-card p { color:var(--muted); }
.compare-table { color:var(--ink); }
.compare-table tbody td { color:var(--ink); background:#fff; }
.compare-table tbody tr:nth-child(even) td { background:#f5f7f9; }
.compare-table .compare-yes { color:#08734e; }
.compare-table .compare-no { color:#718096; }

.service-intro-layout { gap:clamp(46px,7vw,110px); }
.scope-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.scope-item { min-height:220px; padding:30px; border:1px solid var(--line); border-radius:18px; background:#fff; }
.scope-item > span { color:var(--gold); font-size:.72rem; font-weight:900; letter-spacing:.13em; }
.scope-item h3 { margin-top:30px; }
.scope-item p { margin-top:10px; color:var(--muted); }
.system-grid-even { grid-template-columns:repeat(4,1fr); }
.related-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:60px; align-items:center; }
.related-services { display:grid; gap:10px; }
.related-service { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 20px; border:1px solid rgba(255,255,255,.14); border-radius:12px; color:#fff; background:rgba(255,255,255,.035); }
.related-service:hover { border-color:var(--gold); color:var(--gold-light); }

.footer-top { grid-template-columns:1.2fr .8fr 1fr 1fr; }

@media (max-width: 1320px) {
  .brand { min-width:auto; }
  .header-cta { display:none; }
  .main-nav { gap:18px; }
  .service-grid-expanded, .service-grid-four, .offer-detail-grid { grid-template-columns:repeat(2,1fr); }
  .feature-aside-wide { grid-template-columns:1fr; }
  .feature-list-horizontal { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 1080px) {
  :root { --header-height:76px; --site-gutter:24px; }
  .panel-link { display:none; }
  .page-hero-strip { grid-template-columns:repeat(2,1fr); }
  .page-hero-strip > div:nth-child(2) { border-right:0; }
  .page-hero-strip > div:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.12); }
  .scope-grid { grid-template-columns:repeat(2,1fr); }
  .system-grid-even { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 900px) {
  :root { --site-gutter:18px; }
  .site-shell { width:calc(100% - (var(--site-gutter) * 2)); }
  .nav-shell { padding:22px var(--site-gutter) 38px; }
  .nav-dropdown-menu.mega-menu { position:static; width:100%; min-width:0; grid-template-columns:1fr; transform:none !important; border-radius:14px; }
  .mega-menu-intro { display:none; }
  .mega-menu-columns { grid-template-columns:1fr; padding:10px; }
  .mega-menu-column > span { margin-top:10px; }
  .nav-dropdown:hover .nav-dropdown-menu { opacity:1; visibility:visible; }
  .hero { min-height:max(900px,100svh); }
  .hero-content { min-height:max(900px,100svh); padding-bottom:235px; }
  .hero-copy { max-width:760px; }
  .page-hero { min-height:max(760px,100svh); padding-bottom:235px; }
  .page-hero .page-copy { max-width:760px; }
  .page-hero h1 { font-size:clamp(3rem,9vw,5rem); }
  .feature-list-horizontal { grid-template-columns:1fr 1fr; }
  .related-layout { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  :root { --site-gutter:12px; }
  .brand-name { letter-spacing:.11em; }
  .hero { min-height:max(980px,100svh); }
  .hero-content { min-height:max(980px,100svh); padding-top:130px; padding-bottom:250px; }
  .hero-copy { max-width:100%; }
  .hero-copy h1 { font-size:clamp(2.7rem,13vw,4.6rem); }
  .page-hero { min-height:max(840px,100svh); padding-top:125px; padding-bottom:270px; }
  .page-hero .page-copy { max-width:100%; }
  .page-hero h1 { font-size:clamp(2.8rem,12.5vw,4.4rem); }
  .page-hero-strip { width:100%; grid-template-columns:1fr 1fr; border-radius:0; }
  .page-hero-strip > div { padding:16px 14px; }
  .page-hero-strip span { display:none; }
  .service-grid-expanded, .service-grid-four, .offer-detail-grid, .scope-grid, .system-grid-even { grid-template-columns:1fr; }
  .feature-list-horizontal { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
}

/* Ensure page hero content stays above the dark overlay after widening containers. */
.page-hero > .site-shell {
  position: relative;
  z-index: 2;
}

/* v3 — zdalna wizja lokalna */
.btn-outline-dark {
  color: var(--navy-900);
  border-color: rgba(3,20,38,.32);
  background: transparent;
}
.btn-outline-dark:hover {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.remote-quote-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(217,168,79,.17), transparent 28%),
    linear-gradient(135deg, #02111f 0%, #071f36 55%, #0b2b49 100%);
}
.remote-quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 62px 62px;
}
.remote-quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 78px;
  align-items: center;
}
.remote-quote-copy { max-width: 780px; }
.remote-quote-kicker {
  margin: 18px 0 8px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.remote-quote-copy h2,
.remote-page-copy h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6vw, 6.8rem);
  line-height: .93;
  letter-spacing: -.055em;
}
.remote-quote-copy h2 span,
.remote-page-copy h1 span { color: var(--gold); }
.remote-quote-copy .lead { margin-top: 28px; color: rgba(255,255,255,.78); }
.remote-quote-points { display: grid; gap: 14px; margin-top: 34px; }
.remote-quote-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}
.remote-quote-point svg { color: var(--gold); }
.remote-quote-point strong { display: block; font-size: .96rem; }
.remote-quote-point span { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: .86rem; }
.remote-quote-copy .button-row { margin-top: 32px; }
.remote-quote-copy .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
}
.remote-quote-copy .btn-outline-dark:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.remote-quote-note {
  margin-top: 18px;
  color: rgba(255,255,255,.48);
  font-size: .76rem;
  line-height: 1.55;
}
.remote-quote-visual { position: relative; min-height: 720px; display: grid; place-items: center; }
.remote-phone {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 38px;
  color: var(--white);
  background: #07192a;
  box-shadow: 0 42px 90px rgba(0,0,0,.38);
}
.remote-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 7px solid rgba(255,255,255,.05);
  border-radius: inherit;
}
.remote-phone-top {
  min-height: 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: #061421;
}
.remote-phone-top > span:first-child { width: 62px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.15); }
.remote-phone-top strong { font-size: .88rem; }
.remote-live { justify-self: end; color: #ff7e73; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.remote-camera-frame { position: relative; aspect-ratio: 9 / 13; overflow: hidden; background: #0a1b2c; }
.remote-camera-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.03); }
.remote-camera-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,15,28,.68), transparent 40%); }
.remote-camera-guide {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  background: rgba(3,20,38,.74);
  backdrop-filter: blur(12px);
}
.remote-camera-guide > span {
  position: absolute;
  inset: -110px 22px 84px;
  border: 1px dashed rgba(255,255,255,.46);
  border-radius: 14px;
}
.remote-camera-guide p { position: relative; color: rgba(255,255,255,.9); font-size: .86rem; }
.remote-record-dot {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff625b;
  box-shadow: 0 0 0 6px rgba(255,98,91,.16);
}
.remote-phone-controls {
  min-height: 104px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  align-items: center;
  gap: 12px;
}
.remote-phone-controls > div:first-child span { display: block; color: var(--gold); font-size: .7rem; font-weight: 900; }
.remote-phone-controls > div:first-child strong { display: block; margin-top: 5px; font-size: .84rem; }
.remote-phone-controls button {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: transparent;
}
.remote-phone-controls button span { width: 48px; height: 48px; border-radius: 50%; background: #f6f6f2; transition: .2s ease; }
.remote-phone-controls button:hover span { transform: scale(.9); background: var(--gold); }
.remote-phone.is-running .remote-phone-controls button span { width: 28px; height: 28px; border-radius: 8px; background: #ff625b; }
.remote-phone.is-running .remote-record-dot { animation: remotePulse 1.2s infinite; }
.remote-comment-icon { justify-self: end; color: rgba(255,255,255,.66); font-size: .72rem; }
.remote-analysis-card {
  position: absolute;
  z-index: 3;
  right: -54px;
  bottom: 54px;
  width: 290px;
  padding: 25px;
  border: 1px solid rgba(217,168,79,.42);
  border-radius: 20px;
  color: var(--white);
  background: rgba(4,23,40,.92);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.remote-analysis-card ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.remote-analysis-card li { position: relative; padding-left: 20px; color: rgba(255,255,255,.72); font-size: .82rem; }
.remote-analysis-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
@keyframes remotePulse { 50% { opacity: .45; transform: scale(.86); } }

.remote-offer-band { padding-top: 0; }
.remote-offer-inner,
.remote-final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
  padding: 42px 48px;
  border: 1px solid rgba(217,168,79,.34);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(110deg, #04182b, #0a2d4d);
}
.remote-offer-inner p,
.remote-final-inner p { margin-top: 10px; max-width: 760px; color: rgba(255,255,255,.64); }

.remote-page-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(217,168,79,.17), transparent 28%),
    linear-gradient(130deg, #02111f, #092844 65%, #0d3558);
}
.remote-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 70px 70px;
}
.remote-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  gap: 80px;
  align-items: center;
}
.remote-page-copy .lead { max-width: 760px; margin-top: 28px; color: rgba(255,255,255,.78); }
.remote-page-copy .button-row { margin-top: 30px; }
.remote-page-note { max-width: 720px; }
.remote-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.remote-trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 99px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.045);
  font-size: .78rem;
}
.remote-page-phone-wrap { display: grid; place-items: center; }
.remote-phone-large { width: min(100%, 500px); transform: rotate(1.3deg); }
.remote-phone-large .remote-camera-frame { aspect-ratio: 10 / 13; }
.remote-guide-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.remote-guide-copy { position: sticky; top: calc(var(--header-height) + 40px); }
.remote-guide-copy .lead { margin-top: 18px; }
.remote-guide-status { margin-top: 32px; padding: 18px 20px; border-left: 3px solid var(--gold); background: #f3f6f8; }
.remote-guide-status span { display: block; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; }
.remote-guide-status strong { display: block; margin-top: 6px; color: var(--navy-900); }
.remote-guide-steps { display: grid; gap: 14px; }
.remote-guide-step {
  width: 100%;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  align-items: start;
  padding: 25px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  transition: .2s ease;
}
.remote-guide-step:hover,
.remote-guide-step.active { border-color: var(--gold); transform: translateX(5px); box-shadow: 0 18px 45px rgba(3,20,38,.08); }
.remote-guide-step > span { color: var(--gold); font-size: 1.05rem; font-weight: 900; }
.remote-guide-step strong { display: block; font-size: 1.05rem; }
.remote-guide-step p { margin-top: 7px; color: var(--muted); }
.remote-security-section { position: relative; overflow: hidden; }
.remote-security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.remote-security-card { padding: 28px; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: rgba(255,255,255,.035); }
.remote-security-card > span { color: var(--gold); font-size: .74rem; font-weight: 900; letter-spacing: .12em; }
.remote-security-card h3 { margin-top: 20px; }
.remote-security-card p { margin-top: 11px; color: rgba(255,255,255,.6); font-size: .9rem; }
.remote-analysis-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.remote-analysis-grid .image-panel { min-height: 630px; }
.remote-final-cta { color: var(--white); background: #04182b; }

@media (max-width: 1180px) {
  .remote-quote-grid,
  .remote-page-hero-grid { grid-template-columns: 1fr 420px; gap: 46px; }
  .remote-analysis-card { right: 0; }
  .remote-security-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .remote-quote-grid,
  .remote-page-hero-grid,
  .remote-guide-layout,
  .remote-analysis-grid { grid-template-columns: 1fr; }
  .remote-quote-copy h2,
  .remote-page-copy h1 { font-size: clamp(3rem, 13vw, 5.6rem); }
  .remote-quote-visual { min-height: 680px; }
  .remote-analysis-card { right: 0; bottom: 10px; }
  .remote-guide-copy { position: static; }
  .remote-offer-inner,
  .remote-final-inner { grid-template-columns: 1fr; padding: 34px; }
  .remote-page-hero { min-height: auto; padding-top: calc(var(--header-height) + 55px); }
  .remote-page-phone-wrap { padding-top: 10px; }
  .remote-phone-large { transform: none; }
}

@media (max-width: 620px) {
  .remote-quote-section { padding-block: 78px; }
  .remote-quote-points { gap: 10px; }
  .remote-quote-point { padding: 14px; }
  .remote-quote-visual { min-height: 610px; }
  .remote-phone { border-radius: 28px; }
  .remote-phone-controls { grid-template-columns: 1fr 64px .85fr; padding-inline: 15px; }
  .remote-phone-controls button { width: 58px; height: 58px; }
  .remote-phone-controls button span { width: 42px; height: 42px; }
  .remote-analysis-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 16px; }
  .remote-security-grid { grid-template-columns: 1fr; }
  .remote-guide-step { grid-template-columns: 48px 1fr; gap: 14px; padding: 20px; }
  .remote-offer-inner,
  .remote-final-inner { padding: 28px 22px; }
  .remote-analysis-grid .image-panel { min-height: 420px; }
}


/* =========================================================
   V4 — stabilny slider, uporządkowane landing pages,
   lokalne strony SEO i premium oferta sezonowa
   ========================================================= */
.hero {
  height: max(820px, 100svh);
  min-height: 820px;
}
.hero-content {
  height: 100%;
  min-height: 0;
  padding-bottom: 175px;
}
.hero-copy h1 {
  min-height: var(--hero-title-height, 3.1em);
}
.hero-copy .lead {
  min-height: var(--hero-text-height, 3.25em);
}
.hero-copy .button-row,
.hero-copy .hero-meta {
  flex: 0 0 auto;
}

.page-hero-strip > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.page-hero-strip > div > svg {
  color: var(--gold);
  flex: 0 0 auto;
}
.page-hero-strip-copy {
  min-width: 0;
  display: block;
}
.page-hero-strip-copy strong,
.page-hero-strip-copy span {
  overflow-wrap: anywhere;
}

.seasonal-campaign {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 78px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(217,168,79,.2), transparent 27%),
    linear-gradient(118deg, #06182b 0%, #0b2e4f 58%, #071d34 100%);
}
.seasonal-campaign::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.seasonal-campaign-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.45fr);
  gap: clamp(38px, 5vw, 86px);
  align-items: center;
}
.seasonal-campaign-copy h2 { color: var(--white); font-size: clamp(2.1rem, 3.5vw, 4rem); }
.seasonal-campaign-copy p { margin-top: 18px; color: rgba(255,255,255,.68); }
.seasonal-campaign-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.seasonal-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.seasonal-card:hover { transform: translateY(-5px); border-color: rgba(217,168,79,.75); background: rgba(217,168,79,.09); }
.seasonal-card-featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(217,168,79,.14), rgba(255,255,255,.04)); }
.seasonal-card-label { color: var(--gold); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.seasonal-card strong { margin-top: 26px; color: var(--white); font-size: 1.15rem; line-height: 1.2; }
.seasonal-card p { margin-top: 12px; color: rgba(255,255,255,.62); font-size: .88rem; }
.seasonal-card-link { margin-top: auto; padding-top: 24px; color: var(--gold-light); font-weight: 750; font-size: .86rem; }

.seasonal-mini { padding: clamp(38px, 4vw, 60px) 0; background: #ecf0f3; }
.seasonal-mini-inner { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(0, 1.25fr); gap: 46px; align-items: center; }
.seasonal-mini h2 { font-size: clamp(2rem, 3.2vw, 3.5rem); color: var(--ink); }
.seasonal-mini p { margin-top: 13px; color: var(--muted); }
.seasonal-mini-links { display: grid; gap: 10px; }
.seasonal-mini-links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--white); font-weight: 750; }
.seasonal-mini-links a:hover { border-color: var(--gold); }
.seasonal-mini-links span { color: var(--gold); }

.city-link-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.city-link-grid a { min-height: 112px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.city-link-grid a:hover { border-color: var(--gold); transform: translateY(-2px); }
.city-link-grid span { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.city-link-grid strong { color: var(--navy-700); font-size: .78rem; }

.city-intro-section { background: #eef2f5; }
.city-intro-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: 64px; align-items: center; }
.city-intro-copy .lead { margin: 18px 0 28px; }
.city-intro-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.city-intro-cards article { min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.city-intro-cards article > span { color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.city-intro-cards strong { display: block; margin-top: 34px; color: var(--ink); }
.city-intro-cards p { margin-top: 10px; color: var(--muted); font-size: .88rem; }

.location-hero { min-height: 620px; }
.location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.location-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.location-card h3 { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.location-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-top: 22px; }
.location-links a { color: var(--navy-700); font-size: .88rem; }
.location-links a:hover { color: var(--gold); }

@media (max-width: 1080px) {
  .seasonal-campaign-inner, .seasonal-mini-inner, .city-intro-grid { grid-template-columns: 1fr; }
  .seasonal-campaign-grid { grid-template-columns: repeat(3, 1fr); }
  .city-link-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero-strip > div { grid-template-columns: 30px minmax(0, 1fr); padding: 18px 20px; }
}
@media (max-width: 900px) {
  .hero { height: max(930px, 100svh); min-height: 930px; }
  .hero-content { height: 100%; min-height: 0; padding-bottom: 235px; }
  .hero-copy h1 { min-height: var(--hero-title-height, 3.6em); }
  .seasonal-campaign-grid, .city-intro-cards { grid-template-columns: 1fr; }
  .seasonal-card { min-height: 210px; }
  .city-link-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { height: max(1020px, 100svh); min-height: 1020px; }
  .hero-content { height: 100%; min-height: 0; padding-bottom: 250px; }
  .hero-copy h1 { min-height: var(--hero-title-height, 4.1em); }
  .hero-copy .lead { min-height: var(--hero-text-height, 5.1em); }
  .page-hero-strip > div { grid-template-columns: 24px minmax(0, 1fr); gap: 9px; padding: 15px 12px; }
  .page-hero-strip > div > svg { width: 23px; height: 23px; }
  .page-hero-strip-copy strong { font-size: .8rem; }
  .seasonal-campaign-grid, .city-link-grid, .city-intro-cards, .location-links { grid-template-columns: 1fr; }
  .seasonal-card { min-height: 190px; }
}


/* =========================================================
   V5 — dyskretna oferta sezonowa i osobny landing page
   ========================================================= */
.seasonal-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: min(330px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.98);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  filter: drop-shadow(0 18px 34px rgba(2, 16, 30, .28));
}
.seasonal-bubble.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.seasonal-bubble-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 42px 13px 14px;
  border: 1px solid rgba(217,168,79,.58);
  border-radius: 16px;
  color: var(--white);
  background: rgba(4, 25, 44, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.seasonal-bubble-link:hover { border-color: var(--gold); background: rgba(7, 35, 61, .98); }
.seasonal-bubble-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217,168,79,.58);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(217,168,79,.08);
  font-size: 1.05rem;
}
.seasonal-bubble-copy { min-width: 0; display: grid; gap: 1px; }
.seasonal-bubble-copy small { color: var(--gold-light); font-size: .64rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.seasonal-bubble-copy strong { overflow: hidden; color: var(--white); font-size: .92rem; line-height: 1.28; text-overflow: ellipsis; white-space: nowrap; }
.seasonal-bubble-copy > span { color: rgba(255,255,255,.72); font-size: .75rem; }
.seasonal-bubble-copy b { color: var(--gold-light); font-weight: 800; }
.seasonal-bubble-close {
  position: absolute;
  top: 7px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(255,255,255,.56);
  background: transparent;
  font-size: 1.12rem;
  cursor: pointer;
}
.seasonal-bubble-close:hover { color: var(--white); background: rgba(255,255,255,.08); }

.seasonal-page-hero {
  position: relative;
  min-height: min(850px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #031426;
}
.seasonal-page-media,
.seasonal-page-overlay { position: absolute; inset: 0; }
.seasonal-page-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.seasonal-page-overlay {
  background:
    linear-gradient(90deg, rgba(2,18,33,.98) 0%, rgba(3,24,43,.92) 40%, rgba(4,24,42,.55) 66%, rgba(2,16,29,.68) 100%),
    linear-gradient(180deg, rgba(2,17,31,.2), rgba(2,17,31,.72));
}
.seasonal-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  padding-top: 150px;
  padding-bottom: 90px;
}
.seasonal-page-copy { max-width: 780px; }
.seasonal-page-copy h1 { max-width: 760px; color: var(--white); font-size: clamp(3.4rem, 7vw, 7.8rem); line-height: .92; }
.seasonal-page-copy .lead { max-width: 700px; margin-top: 28px; color: rgba(255,255,255,.76); }
.seasonal-page-note { max-width: 620px; margin-top: 20px; color: rgba(255,255,255,.5); font-size: .79rem; }
.seasonal-page-summary {
  padding: 30px;
  border: 1px solid rgba(217,168,79,.52);
  border-radius: 20px;
  background: rgba(3,25,45,.78);
  backdrop-filter: blur(18px);
}
.seasonal-page-summary > strong { display: block; margin-top: 18px; color: var(--white); font-family: var(--font-display); font-size: clamp(1.8rem, 2.6vw, 2.7rem); line-height: 1.05; }
.seasonal-page-summary ul { display: grid; gap: 10px; margin: 26px 0; padding: 0; list-style: none; }
.seasonal-page-summary li { position: relative; padding-left: 22px; color: rgba(255,255,255,.72); }
.seasonal-page-summary li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.seasonal-page-summary a { color: var(--gold-light); font-weight: 800; }
.seasonal-scope-section { background: #f2f4f5; }
.seasonal-scope-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.seasonal-scope-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.seasonal-scope-card > span { color: var(--gold-dark); font-size: .74rem; font-weight: 850; letter-spacing: .12em; }
.seasonal-scope-card h3 { margin-top: 38px; color: var(--ink); font-size: 1.16rem; }
.seasonal-scope-card p { margin-top: 12px; color: var(--muted); font-size: .9rem; }
.seasonal-process-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(42px, 6vw, 90px); align-items: center; }
.seasonal-process-list { display: grid; gap: 12px; }
.seasonal-process-step { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 18px; align-items: start; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.04); }
.seasonal-process-step > span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(217,168,79,.55); border-radius: 50%; color: var(--gold-light); font-weight: 850; }
.seasonal-process-step strong { color: var(--white); }
.seasonal-process-step p { margin-top: 4px; color: rgba(255,255,255,.62); font-size: .88rem; }
.seasonal-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.seasonal-related-card { min-height: 330px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.seasonal-related-card img { width: 100%; height: 100%; object-fit: cover; }
.seasonal-related-card > div { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
.seasonal-related-card span { color: var(--gold-dark); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.seasonal-related-card h3 { margin-top: 12px; color: var(--ink); font-size: 1.5rem; }
.seasonal-related-card p { margin-top: 12px; color: var(--muted); }
.seasonal-related-card strong { margin-top: 24px; color: var(--gold-dark); font-size: .86rem; }

@media (max-width: 1000px) {
  .seasonal-page-hero-inner,
  .seasonal-process-grid { grid-template-columns: 1fr; }
  .seasonal-page-summary { max-width: 560px; }
  .seasonal-scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seasonal-related-card { grid-template-columns: 1fr; }
  .seasonal-related-card img { height: 240px; }
}
@media (max-width: 700px) {
  .seasonal-bubble { right: 16px; bottom: 16px; width: min(292px, calc(100vw - 32px)); }
  .seasonal-bubble-link { grid-template-columns: 34px minmax(0, 1fr); padding: 11px 38px 11px 12px; border-radius: 14px; }
  .seasonal-bubble-mark { width: 34px; height: 34px; }
  .seasonal-bubble-copy strong { font-size: .84rem; }
  .seasonal-page-hero { min-height: auto; }
  .seasonal-page-hero-inner { padding-top: 130px; padding-bottom: 70px; }
  .seasonal-page-copy h1 { font-size: clamp(3rem, 15vw, 5.2rem); }
  .seasonal-scope-grid,
  .seasonal-related-grid { grid-template-columns: 1fr; }
  .seasonal-related-card { min-height: 0; }
}


/* =========================================================
   V6 — stabilne landing pages usługowe i bezpieczna migracja SEO
   ========================================================= */
.service-page-hero {
  min-height: 100svh;
  height: auto;
  align-items: stretch;
  padding: calc(var(--header-height) + 44px) 0 34px;
  background-position: center;
}
.service-page-hero > .site-shell {
  min-height: calc(100svh - var(--header-height) - 78px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vh, 46px);
}
.service-page-hero .page-copy {
  align-self: center;
  width: min(100%, 760px);
  max-width: min(760px, 58vw);
  padding: clamp(28px, 5vh, 64px) 0 8px;
}
.service-page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.45rem, 5.25vw, 6.35rem);
  line-height: .94;
  text-wrap: balance;
}
.service-page-hero .lead {
  max-width: 660px;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
}
.service-page-hero .button-row {
  margin-top: 26px;
}
.service-page-hero .page-hero-strip {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  transform: none;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(2,18,34,.9);
  box-shadow: 0 20px 55px rgba(0,0,0,.2);
}
.service-page-hero .page-hero-strip > div {
  min-height: 108px;
  padding: 22px 24px;
}
.service-page-hero .breadcrumbs {
  margin-bottom: 18px;
}

@media (max-width: 1080px) {
  .service-page-hero {
    padding-top: calc(var(--header-height) + 38px);
  }
  .service-page-hero .page-copy {
    max-width: 760px;
  }
  .service-page-hero h1 {
    max-width: 13ch;
    font-size: clamp(3.1rem, 8.5vw, 5.25rem);
  }
  .service-page-hero .page-hero-strip > div {
    min-height: 96px;
  }
}

@media (max-width: 900px) {
  .service-page-hero {
    min-height: auto;
    padding: 118px 0 24px;
  }
  .service-page-hero > .site-shell {
    min-height: auto;
    gap: 30px;
  }
  .service-page-hero .page-copy {
    max-width: 100%;
    padding: 34px 0 4px;
  }
  .service-page-hero .page-hero-strip {
    grid-template-columns: 1fr 1fr;
  }
  .service-page-hero .page-hero-strip > div {
    min-height: 92px;
  }
}

@media (max-width: 640px) {
  .service-page-hero {
    padding-top: 106px;
  }
  .service-page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
  .service-page-hero .page-hero-strip {
    width: 100%;
    border-radius: 14px;
  }
  .service-page-hero .page-hero-strip > div {
    min-height: 82px;
    padding: 15px 13px;
  }
  .service-page-hero .page-hero-strip-copy span {
    display: none;
  }
}


/* =========================================================
   V7 — uporządkowane sekcje systemu, pakietów i technologii
   ========================================================= */
.home-system-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(221,168,63,.13), transparent 27%),
    linear-gradient(140deg, #06182c 0%, #0a2947 56%, #071d34 100%);
  border-block: 1px solid rgba(255,255,255,.08);
}
.home-system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}
.home-system-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.72fr);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(2,18,34,.62);
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.home-system-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(38px, 4.2vw, 70px);
  border-right: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 20% 15%, rgba(221,168,63,.18), transparent 32%),
    rgba(1,15,29,.38);
}
.home-system-intro h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.5vw, 5.1rem);
}
.home-system-intro p {
  max-width: 50ch;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: 1.02rem;
}
.home-system-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.home-system-proof strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
}
.home-system-proof span {
  max-width: 22ch;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  line-height: 1.45;
}
.home-system-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-system-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(7,29,52,.72);
}
.home-system-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.home-system-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
.home-system-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform .25s ease;
}
.home-system-card:hover::after { transform: scaleX(1); }
.home-system-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
}
.home-system-card-head span {
  color: rgba(255,255,255,.3);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.home-system-card h3 { margin-top: 24px; font-size: 1.22rem; }
.home-system-card p { margin-top: 12px; color: rgba(255,255,255,.68); font-size: .93rem; }
.home-system-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.1);
}
.home-system-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
}
.home-system-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.packages-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(221,168,63,.18), transparent 25%),
    linear-gradient(180deg, #f2efe8 0%, #e9e4da 100%);
  border-block: 1px solid rgba(7,24,43,.12);
}
.packages-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(var(--gold), rgba(221,168,63,.2));
}
.packages-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
  margin-bottom: 52px;
}
.packages-section .section-title { max-width: 840px; margin-bottom: 0; }
.packages-section .section-title h2 { color: var(--ink); }
.packages-section .section-title .lead { color: #4f6175; }
.packages-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7,24,43,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 50px rgba(7,24,43,.08);
}
.packages-summary > div {
  min-height: 132px;
  padding: 22px 20px;
}
.packages-summary > div + div { border-left: 1px solid rgba(7,24,43,.12); }
.packages-summary strong {
  display: block;
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}
.packages-summary span {
  display: block;
  margin-top: 11px;
  color: #5b6878;
  font-size: .78rem;
  line-height: 1.4;
}
.packages-section .package-grid { align-items: stretch; }
.packages-section .package-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  color: #fff;
  border-color: rgba(221,168,63,.42);
  background:
    radial-gradient(circle at 80% 0%, rgba(221,168,63,.11), transparent 28%),
    linear-gradient(155deg, #0a2947 0%, #061b31 100%);
  box-shadow: 0 24px 60px rgba(7,24,43,.16);
}
.packages-section .package-card:hover {
  background:
    radial-gradient(circle at 80% 0%, rgba(221,168,63,.2), transparent 32%),
    linear-gradient(155deg, #0c3154 0%, #071d34 100%);
}
.packages-section .package-card.recommended {
  border-color: var(--gold);
  box-shadow: 0 24px 70px rgba(118,79,14,.22);
}
.packages-section .package-card h3 { color: #fff; }
.packages-section .package-card > p { color: rgba(255,255,255,.68); }
.packages-section .package-price { border-color: rgba(255,255,255,.12); }
.packages-section .check-list { margin-bottom: 26px; }
.packages-section .package-card .btn { margin-top: auto; }
.package-index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255,255,255,.28);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.home-tech-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(7,24,43,.025) 1px, transparent 1px),
    #fbfaf7;
  background-size: 96px 100%;
  border-block: 1px solid rgba(7,24,43,.1);
}
.home-tech-grid {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.home-tech-intro {
  display: flex;
  flex-direction: column;
  padding: 18px 34px 18px 0;
}
.home-tech-intro h2 { max-width: 8ch; }
.home-tech-intro p {
  max-width: 42ch;
  margin-top: 20px;
  color: var(--muted);
}
.home-tech-intro .btn { align-self: flex-start; margin-top: auto; }
.home-tech-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(7,24,43,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 50px rgba(7,24,43,.07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-tech-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(221,168,63,.12));
}
.home-tech-card:hover {
  transform: translateY(-5px);
  border-color: rgba(221,168,63,.7);
  box-shadow: 0 24px 64px rgba(7,24,43,.11);
}
.home-tech-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-tech-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-700);
  background: #eef3f7;
  border: 1px solid rgba(7,24,43,.08);
}
.home-tech-number {
  color: #a0aaba;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.home-tech-card h3 { margin-top: 24px; color: var(--ink); font-size: 1.08rem; }
.home-tech-card > p { margin-top: 12px; color: var(--muted); font-size: .9rem; }
.home-tech-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(7,24,43,.1);
}
.home-tech-card li {
  position: relative;
  padding-left: 17px;
  color: #273b51;
  font-size: .82rem;
}
.home-tech-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.home-tech-status {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 11px;
  border-radius: 99px;
  color: var(--navy-800);
  background: rgba(221,168,63,.16);
  font-size: .72rem;
  font-weight: 800;
}

@media (max-width: 1320px) {
  .home-system-showcase { grid-template-columns: minmax(320px, .8fr) minmax(0, 1.4fr); }
  .home-system-intro h2 { font-size: clamp(2.55rem, 4vw, 4.2rem); }
  .packages-heading { grid-template-columns: 1fr; }
  .packages-summary { max-width: 760px; }
  .home-tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-tech-intro { grid-column: 1 / -1; padding-right: 0; }
  .home-tech-intro h2 { max-width: 13ch; }
  .home-tech-intro .btn { margin-top: 26px; }
  .home-tech-card { min-height: 330px; }
}
@media (max-width: 980px) {
  .home-system-showcase { grid-template-columns: 1fr; }
  .home-system-intro { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .home-system-intro h2 { max-width: 13ch; }
  .packages-summary { grid-template-columns: 1fr 1fr 1fr; }
  .packages-section .package-card { min-height: 520px; }
}
@media (max-width: 720px) {
  .home-system-cards { grid-template-columns: 1fr; }
  .home-system-card { min-height: 0; }
  .home-system-card:nth-child(odd) { border-right: 0; }
  .home-system-card:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .packages-summary { grid-template-columns: 1fr; }
  .packages-summary > div { min-height: 0; }
  .packages-summary > div + div { border-left: 0; border-top: 1px solid rgba(7,24,43,.12); }
  .home-tech-grid { grid-template-columns: 1fr; }
  .home-tech-card { min-height: 0; }
}


/* WordPress integration — v1.0.0 */
.admin-bar .site-header{top:32px}
@media(max-width:782px){.admin-bar .site-header{top:46px}}
.ow-consent{display:flex;gap:10px;align-items:flex-start;margin-top:14px;font-size:.86rem;color:var(--muted)}
.ow-consent input{margin-top:3px}
.entry-content{max-width:860px;margin-inline:auto;font-size:1.08rem;line-height:1.75}
.entry-content>*+*{margin-top:1.25em}
.article-layout{padding-block:32px}
.blog-card h2 a{color:inherit;text-decoration:none}
.blog-card-image img{width:100%;height:260px;object-fit:cover}
.compact-page-hero{min-height:58vh}
.seasonal-bubble{z-index:90}
body.menu-open{overflow:hidden}

/* =========================================================
   V1.1.0 — Auto / Light / Dark color system
   ========================================================= */
:root {
  --theme-duration: 460ms;
  --theme-ease: cubic-bezier(.22, 1, .36, 1);
  --light-bg: #f4f0e7;
  --light-surface: #fffdf8;
  --light-surface-soft: #ece7de;
  --light-ink: #0b2138;
  --light-muted: #536477;
  --light-line: rgba(11, 33, 56, .14);
  --light-shadow: 0 24px 70px rgba(32, 43, 55, .12);
}

html { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }

.theme-ready body,
.theme-ready .site-header,
.theme-ready .nav-shell,
.theme-ready .nav-dropdown-menu,
.theme-ready .phone-popover,
.theme-ready .theme-popover,
.theme-ready .hero::before,
.theme-ready .hero-benefits,
.theme-ready .hero-benefit,
.theme-ready .page-hero::before,
.theme-ready .section,
.theme-ready .section-dark,
.theme-ready .service-card,
.theme-ready .feature-aside,
.theme-ready .system-intro,
.theme-ready .system-card,
.theme-ready .package-card,
.theme-ready .tech-card,
.theme-ready .pillar-card,
.theme-ready .cta-panel,
.theme-ready .cta-copy,
.theme-ready .cta-form,
.theme-ready .form-field input,
.theme-ready .form-field select,
.theme-ready .form-field textarea,
.theme-ready .filter-button,
.theme-ready .blog-card,
.theme-ready .job-card,
.theme-ready .job-toolbar select,
.theme-ready .compare-table-wrap,
.theme-ready .compare-table thead th,
.theme-ready .site-footer,
.theme-ready .home-system-section,
.theme-ready .home-system-showcase,
.theme-ready .home-system-intro,
.theme-ready .home-system-card,
.theme-ready .packages-section,
.theme-ready .packages-summary,
.theme-ready .home-tech-section,
.theme-ready .home-tech-card,
.theme-ready .seasonal-bubble-link,
.theme-ready .remote-guide-step,
.theme-ready .remote-guide-status,
.theme-ready .remote-security-card,
.theme-ready .seasonal-page-overlay,
.theme-ready .seasonal-page-summary,
.theme-ready .seasonal-scope-section,
.theme-ready .seasonal-scope-card,
.theme-ready .seasonal-process-step,
.theme-ready .seasonal-related-card,
.theme-ready .city-link-grid a,
.theme-ready .city-intro-section,
.theme-ready .city-intro-cards article,
.theme-ready .location-card {
  transition-property: color, background-color, background-image, border-color, box-shadow, opacity, filter;
  transition-duration: var(--theme-duration);
  transition-timing-function: var(--theme-ease);
}

.theme-wrap { position: relative; }
.theme-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--gold-light);
  border: 1px solid rgba(217,168,79,.58);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
}
.theme-button:hover { background: rgba(217,168,79,.1); }
.theme-button-icon { display: none; line-height: 0; }
html[data-theme-mode="auto"] .theme-button-icon-auto,
html[data-theme-mode="light"] .theme-button-icon-light,
html[data-theme-mode="dark"] .theme-button-icon-dark { display: block; }
.theme-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 288px;
  padding: 12px;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(3,20,38,.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color var(--theme-duration) var(--theme-ease), border-color var(--theme-duration) var(--theme-ease);
}
.theme-wrap.open .theme-popover { opacity: 1; visibility: visible; transform: translateY(0); }
.theme-popover-title {
  display: block;
  padding: 5px 8px 10px;
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.theme-choice {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  padding: 11px 10px;
  color: inherit;
  border: 0;
  border-radius: 10px;
  background: transparent;
  text-align: left;
}
.theme-choice:hover,
.theme-choice.active { background: rgba(255,255,255,.07); }
.theme-choice-icon { width: 30px; height: 30px; display: grid; place-items: center; color: var(--gold-light); border: 1px solid rgba(217,168,79,.35); border-radius: 50%; }
.theme-choice strong,
.theme-choice small { display: block; }
.theme-choice strong { font-size: .9rem; }
.theme-choice small { margin-top: 1px; color: rgba(255,255,255,.55); font-size: .72rem; }
.theme-choice-check { color: var(--gold); opacity: 0; font-weight: 900; }
.theme-choice.active .theme-choice-check { opacity: 1; }

/* Light mode: global surfaces and typography. */
html[data-theme="light"] body {
  color: var(--light-ink);
  background: var(--light-bg);
}
html[data-theme="light"] .lead,
html[data-theme="light"] .muted,
html[data-theme="light"] .service-card-body p,
html[data-theme="light"] .tech-intro p,
html[data-theme="light"] .tech-card p,
html[data-theme="light"] .pillar-card p,
html[data-theme="light"] .step p,
html[data-theme="light"] .blog-body p,
html[data-theme="light"] .job-card p,
html[data-theme="light"] .form-note,
html[data-theme="light"] .ow-consent,
html[data-theme="light"] .entry-content { color: var(--light-muted); }
html[data-theme="light"] .section-soft { background: #ebe6dc; }
html[data-theme="light"] .btn-dark { color: #fff; background: #173755; }
html[data-theme="light"] .btn-link { color: #174b76; }

/* Light header and navigation. */
html[data-theme="light"] .site-header {
  color: var(--light-ink);
  background: linear-gradient(to bottom, rgba(250,247,239,.97), rgba(250,247,239,.78), rgba(250,247,239,.08));
}
html[data-theme="light"] .site-header.scrolled {
  background: rgba(250,247,239,.94);
  box-shadow: 0 10px 34px rgba(24,35,47,.12);
}
html[data-theme="light"] .brand-icon { filter: brightness(0) saturate(100%) invert(11%) sepia(26%) saturate(1644%) hue-rotate(169deg) brightness(94%) contrast(97%); }
html[data-theme="light"] .main-nav a,
html[data-theme="light"] .nav-dropdown-toggle { color: rgba(11,33,56,.78); }
html[data-theme="light"] .main-nav a:hover,
html[data-theme="light"] .main-nav a.active,
html[data-theme="light"] .nav-dropdown-toggle:hover { color: var(--light-ink); }
html[data-theme="light"] .panel-link,
html[data-theme="light"] .phone-button,
html[data-theme="light"] .theme-button { color: #8c641d; background: rgba(255,255,255,.55); border-color: rgba(153,105,22,.44); }
html[data-theme="light"] .panel-link:hover,
html[data-theme="light"] .phone-button:hover,
html[data-theme="light"] .theme-button:hover { background: rgba(217,168,79,.14); }
html[data-theme="light"] .mobile-toggle { color: var(--light-ink); border-color: var(--light-line); }
html[data-theme="light"] .nav-dropdown-menu,
html[data-theme="light"] .phone-popover,
html[data-theme="light"] .theme-popover {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: rgba(255,253,248,.98);
  box-shadow: var(--light-shadow);
}
html[data-theme="light"] .nav-dropdown-menu a:hover,
html[data-theme="light"] .theme-choice:hover,
html[data-theme="light"] .theme-choice.active { background: rgba(11,33,56,.06); }
html[data-theme="light"] .mega-menu-intro,
html[data-theme="light"] .mega-menu-column + .mega-menu-column { border-color: var(--light-line); }
html[data-theme="light"] .mega-menu-intro p,
html[data-theme="light"] .mega-menu-column span,
html[data-theme="light"] .phone-popover small,
html[data-theme="light"] .theme-popover-title,
html[data-theme="light"] .theme-choice small { color: var(--light-muted); }
html[data-theme="light"] .theme-choice-icon { color: #9b6b19; background: rgba(217,168,79,.1); }

/* Light hero: same photography, premium daylight overlay. */
html[data-theme="light"] .hero { color: var(--light-ink); background: #e8e2d8; }
html[data-theme="light"] .hero::before {
  background:
    linear-gradient(90deg, rgba(250,247,239,.99) 0%, rgba(250,247,239,.94) 35%, rgba(250,247,239,.48) 61%, rgba(7,22,37,.08) 100%),
    linear-gradient(0deg, rgba(236,230,219,.54), transparent 58%);
}
html[data-theme="light"] .hero-copy .lead { color: rgba(11,33,56,.8); }
html[data-theme="light"] .hero-meta { color: rgba(11,33,56,.68); }
html[data-theme="light"] .play-chip,
html[data-theme="light"] .hero-arrow { color: var(--light-ink); border-color: rgba(11,33,56,.34); background: rgba(255,253,248,.54); }
html[data-theme="light"] .hero-dot { background: rgba(11,33,56,.28); }
html[data-theme="light"] .btn-outline { color: var(--light-ink); border-color: rgba(11,33,56,.34); background: rgba(255,253,248,.5); }
html[data-theme="light"] .btn-outline:hover { color: #7d5718; border-color: var(--gold); }
html[data-theme="light"] .hero-benefits {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: rgba(255,253,248,.88);
  box-shadow: 0 -18px 55px rgba(31,43,55,.1);
}
html[data-theme="light"] .hero-benefit { border-color: var(--light-line); }
html[data-theme="light"] .hero-benefit span { color: var(--light-muted); }

/* Light inner-page hero. */
html[data-theme="light"] .page-hero,
html[data-theme="light"] .service-page-hero { color: var(--light-ink); background-color: #e8e2d8; }
html[data-theme="light"] .page-hero::before {
  background: linear-gradient(90deg, rgba(250,247,239,.99), rgba(250,247,239,.9) 45%, rgba(250,247,239,.34) 72%, rgba(7,22,37,.08));
}
html[data-theme="light"] .page-hero .lead,
html[data-theme="light"] .breadcrumbs { color: rgba(11,33,56,.7); }
html[data-theme="light"] .page-hero-strip > div {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: rgba(255,253,248,.9);
  box-shadow: var(--light-shadow);
}
html[data-theme="light"] .page-hero-strip-copy span { color: var(--light-muted); }

/* Light content cards. */
html[data-theme="light"] .service-card,
html[data-theme="light"] .tech-card,
html[data-theme="light"] .pillar-card,
html[data-theme="light"] .blog-card,
html[data-theme="light"] .job-card,
html[data-theme="light"] .job-toolbar select,
html[data-theme="light"] .compare-table-wrap,
html[data-theme="light"] .city-link-grid a,
html[data-theme="light"] .city-intro-cards article,
html[data-theme="light"] .location-card,
html[data-theme="light"] .seasonal-scope-card,
html[data-theme="light"] .seasonal-related-card,
html[data-theme="light"] .remote-guide-step {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: var(--light-surface);
  box-shadow: 0 14px 42px rgba(24,35,47,.06);
}
html[data-theme="light"] .service-card-icon { border-color: var(--light-surface); }
html[data-theme="light"] .filter-button { color: var(--light-ink); border-color: var(--light-line); background: var(--light-surface); }
html[data-theme="light"] .filter-button.active,
html[data-theme="light"] .filter-button:hover { color: #fff; background: #173755; }
html[data-theme="light"] .job-tag { color: #174b76; background: #e8eef2; }
html[data-theme="light"] .compare-table thead th { color: #fff; background: #173755; }

/* Light equivalents for sections originally dark. */
html[data-theme="light"] .section-dark,
html[data-theme="light"] .home-system-section,
html[data-theme="light"] .remote-security-section,
html[data-theme="light"] .seasonal-process-section,
html[data-theme="light"] .remote-final-cta {
  color: var(--light-ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(217,168,79,.15), transparent 28%),
    linear-gradient(135deg, #e8e2d7, #f7f3eb);
}
html[data-theme="light"] .section-dark .lead { color: var(--light-muted); }
html[data-theme="light"] .system-grid { border-color: var(--light-line); background: var(--light-line); }
html[data-theme="light"] .system-intro,
html[data-theme="light"] .system-card {
  color: var(--light-ink);
  background: rgba(255,253,248,.92);
}
html[data-theme="light"] .system-intro p,
html[data-theme="light"] .system-card p { color: var(--light-muted); }
html[data-theme="light"] .feature-aside { color: var(--light-ink); background: #e7e1d7; border: 1px solid var(--light-line); }
html[data-theme="light"] .feature-aside h3 { color: #8c641d; }
html[data-theme="light"] .feature-item p { color: var(--light-muted); }
html[data-theme="light"] .check-list li { color: var(--light-ink); }
html[data-theme="light"] .offer-detail-card {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: rgba(255,253,248,.76);
}
html[data-theme="light"] .offer-detail-card p { color: var(--light-muted); }

/* Home system showcase. */
html[data-theme="light"] .home-system-showcase {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: rgba(255,253,248,.7);
  box-shadow: var(--light-shadow);
}
html[data-theme="light"] .home-system-intro {
  border-color: var(--light-line);
  background:
    radial-gradient(circle at 20% 15%, rgba(217,168,79,.18), transparent 34%),
    rgba(255,253,248,.84);
}
html[data-theme="light"] .home-system-intro p,
html[data-theme="light"] .home-system-proof span { color: var(--light-muted); }
html[data-theme="light"] .home-system-proof { border-color: var(--light-line); }
html[data-theme="light"] .home-system-proof strong { color: #8d651d; }
html[data-theme="light"] .home-system-card {
  color: var(--light-ink);
  border-color: var(--light-line) !important;
  background: rgba(255,253,248,.94);
}
html[data-theme="light"] .home-system-card-head span { color: rgba(11,33,56,.32); }
html[data-theme="light"] .home-system-card p { color: var(--light-muted); }
html[data-theme="light"] .home-system-card ul { border-color: var(--light-line); }
html[data-theme="light"] .home-system-card li { color: rgba(11,33,56,.82); }

/* Package section stays premium but the section surface is light-aware. */
html[data-theme="light"] .packages-section {
  color: var(--light-ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(217,168,79,.2), transparent 26%),
    linear-gradient(180deg, #f8f4ec 0%, #e9e2d7 100%);
  border-color: var(--light-line);
}
html[data-theme="light"] .packages-summary { border-color: var(--light-line); background: rgba(255,253,248,.72); }
html[data-theme="light"] .packages-summary > div + div { border-color: var(--light-line); }
html[data-theme="light"] .packages-summary span,
html[data-theme="light"] .packages-section .section-title .lead { color: var(--light-muted); }

/* Technology and forms. */
html[data-theme="light"] .home-tech-section { background-color: #faf7f0; border-color: var(--light-line); }
html[data-theme="light"] .home-tech-card { color: var(--light-ink); border-color: var(--light-line); background: rgba(255,253,248,.94); }
html[data-theme="light"] .home-tech-icon { color: #174b76; background: #e7edf1; border-color: var(--light-line); }
html[data-theme="light"] .home-tech-card li { color: #273b51; }
html[data-theme="light"] .cta-panel { background: #173755; }
html[data-theme="light"] .cta-form { color: var(--light-ink); background: var(--light-surface); }
html[data-theme="light"] .form-field label { color: #31465c; }
html[data-theme="light"] .form-field input,
html[data-theme="light"] .form-field select,
html[data-theme="light"] .form-field textarea { color: var(--light-ink); border-color: #cfd7de; background: #fffefa; }

/* Remote quote and seasonal pages. */
html[data-theme="light"] .remote-page-hero,
html[data-theme="light"] .seasonal-page-hero { color: var(--light-ink); background: #e8e2d8; }
html[data-theme="light"] .remote-page-hero::before,
html[data-theme="light"] .seasonal-page-overlay {
  background:
    linear-gradient(90deg, rgba(250,247,239,.99), rgba(250,247,239,.9) 46%, rgba(250,247,239,.34) 75%, rgba(7,22,37,.08)),
    linear-gradient(180deg, rgba(250,247,239,.1), rgba(232,225,213,.48));
}
html[data-theme="light"] .remote-page-copy .lead,
html[data-theme="light"] .seasonal-page-copy .lead,
html[data-theme="light"] .seasonal-page-note { color: var(--light-muted); }
html[data-theme="light"] .remote-trust-row { color: rgba(11,33,56,.75); background: rgba(255,253,248,.64); border-color: var(--light-line); }
html[data-theme="light"] .remote-guide-status { background: #ece8df; }
html[data-theme="light"] .remote-security-card,
html[data-theme="light"] .seasonal-process-step,
html[data-theme="light"] .seasonal-page-summary {
  color: var(--light-ink);
  border-color: rgba(141,101,29,.35);
  background: rgba(255,253,248,.78);
}
html[data-theme="light"] .remote-security-card p,
html[data-theme="light"] .seasonal-process-step p,
html[data-theme="light"] .seasonal-page-summary li { color: var(--light-muted); }
html[data-theme="light"] .seasonal-process-step strong,
html[data-theme="light"] .seasonal-page-summary > strong { color: var(--light-ink); }
html[data-theme="light"] .seasonal-scope-section,
html[data-theme="light"] .city-intro-section { background: #ebe7df; }

/* Light footer and seasonal floating promotion. */
html[data-theme="light"] .site-footer {
  color: var(--light-ink);
  background: #e5dfd4;
  border-top: 1px solid var(--light-line);
}
html[data-theme="light"] .site-footer .brand-icon { filter: brightness(0) saturate(100%) invert(11%) sepia(26%) saturate(1644%) hue-rotate(169deg) brightness(94%) contrast(97%); }
html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-links,
html[data-theme="light"] .footer-bottom { color: var(--light-muted); }
html[data-theme="light"] .footer-title { color: var(--light-ink); }
html[data-theme="light"] .footer-bottom,
html[data-theme="light"] .socials a { border-color: var(--light-line); }
html[data-theme="light"] .seasonal-bubble-link {
  color: var(--light-ink);
  border-color: rgba(153,105,22,.42);
  background: rgba(255,253,248,.94);
  box-shadow: var(--light-shadow);
}
html[data-theme="light"] .seasonal-bubble-copy strong { color: var(--light-ink); }
html[data-theme="light"] .seasonal-bubble-copy > span { color: var(--light-muted); }
html[data-theme="light"] .seasonal-bubble-close { color: rgba(11,33,56,.56); }
html[data-theme="light"] .seasonal-bubble-close:hover { color: var(--light-ink); background: rgba(11,33,56,.07); }

@media (max-width: 900px) {
  .theme-popover { position: fixed; top: auto; left: 20px; right: 20px; bottom: 20px; width: auto; }
  html[data-theme="light"] .nav-shell { background: rgba(250,247,239,.99); }
  html[data-theme="light"] .nav-dropdown-menu { background: rgba(11,33,56,.04); }
  html[data-theme="light"] .hero::before { background: linear-gradient(90deg, rgba(250,247,239,.98), rgba(250,247,239,.82)); }
}

@media (prefers-reduced-motion: reduce) {
  :root { --theme-duration: 1ms; }
  .theme-ready * { scroll-behavior: auto !important; }
}

/* Contrast corrections for light-mode components with explicit dark-theme colors. */
html[data-theme="light"] .service-page-hero .page-hero-strip {
  border-color: var(--light-line);
  background: rgba(255,253,248,.9);
  box-shadow: var(--light-shadow);
}
html[data-theme="light"] .page-hero-strip strong,
html[data-theme="light"] .page-hero-strip-copy strong,
html[data-theme="light"] .offer-detail-card h3,
html[data-theme="light"] .seasonal-page-copy h1 { color: var(--light-ink); }
html[data-theme="light"] .page-hero-strip span,
html[data-theme="light"] .page-hero-strip-copy span { color: var(--light-muted); }
html[data-theme="light"] .offer-detail-link,
html[data-theme="light"] .seasonal-page-summary a { color: #8c641d; }
html[data-theme="light"] .service-page-hero .page-hero-strip > div { border-color: var(--light-line); }
html[data-theme="light"] .remote-page-hero::after {
  opacity: .32;
  background-image:
    linear-gradient(rgba(11,33,56,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,33,56,.035) 1px, transparent 1px);
}


/* Production polish — light mode contrast and package hierarchy. */
html[data-theme="light"] .section-dark h1,
html[data-theme="light"] .section-dark h2,
html[data-theme="light"] .section-dark h3,
html[data-theme="light"] .section-dark h4,
html[data-theme="light"] .home-system-intro h2,
html[data-theme="light"] .home-tech-intro h2 {
  color: var(--light-ink);
}
html[data-theme="light"] .offer-detail-card {
  border-color: rgba(11,33,56,.12);
  background: linear-gradient(180deg, rgba(255,254,250,.98), rgba(243,238,229,.9));
}
html[data-theme="light"] .offer-detail-card:hover {
  border-color: rgba(140,100,29,.45);
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(239,233,222,.98));
  box-shadow: 0 20px 48px rgba(24,35,47,.08);
}
html[data-theme="light"] .packages-section .package-card:not(.recommended) {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: linear-gradient(180deg, rgba(255,254,250,.98), rgba(243,238,229,.95));
  box-shadow: var(--light-shadow);
}
html[data-theme="light"] .packages-section .package-card:not(.recommended):hover {
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(239,233,222,.98));
}
html[data-theme="light"] .packages-section .package-card:not(.recommended) h3,
html[data-theme="light"] .packages-section .package-card:not(.recommended) .package-price strong {
  color: var(--light-ink);
}
html[data-theme="light"] .packages-section .package-card:not(.recommended) > p,
html[data-theme="light"] .packages-section .package-card:not(.recommended) .package-price span,
html[data-theme="light"] .packages-section .package-card:not(.recommended) .check-list li {
  color: var(--light-muted);
}
html[data-theme="light"] .packages-section .package-card:not(.recommended) .package-price {
  border-color: var(--light-line);
}
html[data-theme="light"] .packages-section .package-card:not(.recommended) .btn {
  color: #173755;
  border-color: #cad3db;
  background: #dfe5ea;
}
html[data-theme="light"] .packages-section .package-card.recommended {
  border-color: var(--gold);
  background: linear-gradient(160deg, #173755 0%, #0b2440 100%);
  box-shadow: 0 24px 70px rgba(23,55,85,.2);
}
html[data-theme="light"] .package-index {
  color: rgba(11,33,56,.3);
}
html[data-theme="light"] .packages-section .package-card.recommended .package-index {
  color: rgba(255,255,255,.28);
}
html[data-theme="light"] .home-system-card h3,
html[data-theme="light"] .home-system-card li,
html[data-theme="light"] .home-system-card p,
html[data-theme="light"] .home-system-intro p,
html[data-theme="light"] .home-system-proof span {
  color: var(--light-ink);
}
html[data-theme="light"] .home-system-card p,
html[data-theme="light"] .home-system-intro p,
html[data-theme="light"] .home-system-proof span,
html[data-theme="light"] .packages-summary span,
html[data-theme="light"] .home-tech-intro p {
  color: var(--light-muted);
}

/* Native crossfade where the View Transitions API is available. */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: var(--theme-duration);
  animation-timing-function: var(--theme-ease);
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation-duration: 1ms; }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .header-actions .header-cta { display: none; }
  .main-nav { gap: 17px; }
  .header-inner { gap: 20px; }
}

/* Production hardening 1.2.0 */
.skip-link:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  clip-path: none;
  color: #07182b;
  background: var(--gold-light);
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

@media (min-width: 901px) {
  .nav-dropdown::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 100%;
    left: -42px;
    right: -42px;
    height: 42px;
  }
  .nav-dropdown-menu.mega-menu {
    z-index: 10;
    top: calc(100% + 8px);
  }
}

.remote-record-control {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.remote-record-control > span {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  background: #e65f5f;
  box-shadow: 0 0 0 5px rgba(230,95,95,.12);
}
.remote-guide-step:not(button) { cursor: default; }

.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}
.blog-category-nav a {
  padding: 9px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  font-size: .86rem;
  font-weight: 750;
}
.blog-category-nav a:hover,
.blog-category-nav a.active {
  color: #07182b;
  border-color: var(--gold);
  background: var(--gold-light);
}
.post-card-meta,
.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .02em;
}
.post-card-meta span + span::before,
.post-hero-meta span + span::before {
  content: "•";
  margin-right: 14px;
  color: var(--gold);
}
.post-hero-meta { margin-bottom: 18px; color: rgba(255,255,255,.76); }
.empty-state {
  grid-column: 1 / -1;
  max-width: 720px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.navigation.pagination { margin-top: 42px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 750;
}
.page-numbers.current,
.page-numbers:hover { border-color: var(--gold); background: var(--gold-light); color: #07182b; }
.article-cta { padding-top: 0; }
.error-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #fff;
  background: radial-gradient(circle at 75% 20%, rgba(217,168,79,.18), transparent 32%), linear-gradient(135deg, #031426, #071f37);
}
.error-page-inner { max-width: 850px; padding-top: var(--header-height); }
.error-page h1 { color: #fff; font-size: clamp(3.4rem, 8vw, 7rem); }
.error-page .lead { color: rgba(255,255,255,.76); }

html[data-theme="dark"] .blog-category-nav a,
html[data-theme="dark"] .empty-state,
html[data-theme="dark"] .page-numbers {
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}
html[data-theme="dark"] .blog-category-nav a:hover,
html[data-theme="dark"] .blog-category-nav a.active,
html[data-theme="dark"] .page-numbers.current,
html[data-theme="dark"] .page-numbers:hover { color: #07182b; background: var(--gold-light); }

@media (max-width: 640px) {
  .post-card-meta span + span::before,
  .post-hero-meta span + span::before { margin-right: 8px; }
}
.custom-logo-link { display:flex; align-items:center; flex:0 0 auto; line-height:0; }
.custom-logo { width:auto; max-width:230px; max-height:54px; object-fit:contain; }
.site-footer .custom-logo { max-height:58px; }
@media(max-width:640px){.custom-logo{max-width:175px;max-height:46px}}


/* =========================================================
   V1.2.4 — rozbudowane landing page usług
   ========================================================= */
.page-hero-strip-copy strong,
.page-hero-strip-copy span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}
.service-page-hero .page-hero-strip > div {
  grid-template-columns: 34px minmax(0, 1fr);
}
.service-page-hero .page-hero-strip > div > svg {
  display: block;
  width: 28px;
  height: 28px;
}
.service-page-hero .page-hero-strip-copy strong {
  font-size: .94rem;
  line-height: 1.25;
}
.service-page-hero .page-hero-strip-copy span {
  line-height: 1.35;
}

.service-intro-section { background: var(--paper); }
.service-intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 28px 0 32px;
}
.service-intro-points span {
  position: relative;
  padding: 12px 14px 12px 35px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.68);
  font-size: .88rem;
  font-weight: 650;
}
.service-intro-points span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--gold);
  font-weight: 900;
}
.service-intro-image { min-height: 560px; }

.service-schedule-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(221,168,63,.14), transparent 27%),
    linear-gradient(145deg, #06182c 0%, #0a2947 58%, #071d34 100%);
}
.service-schedule-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
}
.service-schedule-section > .site-shell { position: relative; z-index: 1; }
.service-schedule-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: end;
  margin-bottom: 44px;
}
.service-schedule-heading h2 { max-width: 15ch; color: #fff; }
.service-schedule-heading > p { color: rgba(255,255,255,.7); }
.service-schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-schedule-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(2,18,34,.56);
  backdrop-filter: blur(8px);
}
.service-schedule-index {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.service-schedule-card h3 { margin-top: 50px; color: #fff; }
.service-schedule-card p { margin-top: 12px; color: rgba(255,255,255,.68); font-size: .91rem; }
.service-timeline {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.8fr);
  gap: 28px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}
.service-timeline-intro strong { display: block; max-width: 30ch; color: #fff; font-size: 1.02rem; }
.service-timeline-weeks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}
.service-timeline-weeks > div { min-height: 120px; padding: 18px; border-right: 1px solid rgba(255,255,255,.12); }
.service-timeline-weeks > div:last-child { border-right: 0; }
.service-timeline-weeks > div.accent { background: rgba(221,168,63,.14); }
.service-timeline-weeks span { display: block; color: var(--gold); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.service-timeline-weeks strong { display: block; margin-top: 15px; color: #fff; font-size: .88rem; }
.service-timeline-weeks small { display: block; margin-top: 7px; color: rgba(255,255,255,.58); line-height: 1.4; }

.service-packages-section { border-top: 0; }
.service-package-note {
  padding: 24px;
  border: 1px solid rgba(7,24,43,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 50px rgba(7,24,43,.08);
}
.service-package-note strong { display: block; color: var(--navy-800); font-size: 1rem; }
.service-package-note span { display: block; margin-top: 9px; color: var(--muted); font-size: .84rem; }
.service-package-grid .package-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(221,168,63,.5);
  border-radius: 50%;
  font-size: 1.65rem;
}
.service-package-grid .package-card { min-height: 590px; }

.service-models-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(221,168,63,.12), transparent 28%),
    #f0ece3;
}
.service-model-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-model-card {
  min-height: 360px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 60px rgba(7,24,43,.08);
}
.service-model-card > span { color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .16em; }
.service-model-card h3 { margin-top: 45px; color: var(--ink); }
.service-model-card p { margin-top: 14px; color: var(--muted); }
.service-model-card ul { display: grid; gap: 10px; margin: 30px 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.service-model-card li { position: relative; padding-left: 18px; color: var(--ink); font-size: .88rem; }
.service-model-card li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }

.service-system-section .system-card { min-height: 230px; }
.service-faq-section { background: #fbfaf7; }
.service-faq-layout { align-items: start; }
.service-faq-list { display: grid; gap: 12px; }
.service-faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.service-faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.service-faq-list summary::-webkit-details-marker { display: none; }
.service-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
}
.service-faq-list details[open] summary::after { content: "−"; }
.service-faq-list details p { padding: 0 24px 22px; color: var(--muted); }

html[data-theme="light"] .service-schedule-section {
  color: var(--light-ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(217,168,79,.2), transparent 28%),
    linear-gradient(145deg, #e6e0d6 0%, #f8f4ec 100%);
}
html[data-theme="light"] .service-schedule-section::before {
  background-image:
    linear-gradient(rgba(11,33,56,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,33,56,.045) 1px, transparent 1px);
}
html[data-theme="light"] .service-schedule-heading h2,
html[data-theme="light"] .service-schedule-card h3,
html[data-theme="light"] .service-timeline-intro strong,
html[data-theme="light"] .service-timeline-weeks strong { color: var(--light-ink); }
html[data-theme="light"] .service-schedule-heading > p,
html[data-theme="light"] .service-schedule-card p,
html[data-theme="light"] .service-timeline-weeks small { color: var(--light-muted); }
html[data-theme="light"] .service-schedule-card,
html[data-theme="light"] .service-timeline {
  border-color: var(--light-line);
  background: rgba(255,253,248,.82);
  box-shadow: var(--light-shadow);
}
html[data-theme="light"] .service-timeline-weeks { border-color: var(--light-line); }
html[data-theme="light"] .service-timeline-weeks > div { border-color: var(--light-line); }
html[data-theme="light"] .service-timeline-weeks > div.accent { background: rgba(217,168,79,.17); }
html[data-theme="light"] .service-intro-points span,
html[data-theme="light"] .service-model-card,
html[data-theme="light"] .service-faq-list details {
  color: var(--light-ink);
  border-color: var(--light-line);
  background: var(--light-surface);
}
html[data-theme="light"] .service-package-note { border-color: var(--light-line); background: rgba(255,253,248,.78); }
html[data-theme="light"] .service-package-note strong,
html[data-theme="light"] .service-model-card h3,
html[data-theme="light"] .service-model-card li,
html[data-theme="light"] .service-faq-list summary { color: var(--light-ink); }
html[data-theme="light"] .service-model-card p,
html[data-theme="light"] .service-faq-list details p { color: var(--light-muted); }
html[data-theme="light"] .service-model-card ul { border-color: var(--light-line); }
html[data-theme="light"] .service-faq-section { background: #f8f4ec; }

@media (max-width: 1180px) {
  .service-schedule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-timeline { grid-template-columns: 1fr; }
  .service-model-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .service-schedule-heading { grid-template-columns: 1fr; }
  .service-timeline-weeks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-timeline-weeks > div:nth-child(2) { border-right: 0; }
  .service-timeline-weeks > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-package-grid .package-card { min-height: 520px; }
}
@media (max-width: 640px) {
  .service-page-hero .page-hero-strip > div { grid-template-columns: 24px minmax(0, 1fr); }
  .service-page-hero .page-hero-strip > div > svg { width: 22px; height: 22px; }
  .service-page-hero .page-hero-strip-copy strong { font-size: .78rem; }
  .service-intro-points { grid-template-columns: 1fr; }
  .service-intro-image { min-height: 360px; }
  .service-schedule-grid,
  .service-timeline-weeks,
  .service-model-grid { grid-template-columns: 1fr; }
  .service-timeline-weeks > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-timeline-weeks > div:last-child { border-bottom: 0; }
  .service-schedule-card { min-height: 0; }
  .service-schedule-card h3 { margin-top: 28px; }
}

/* =========================================================
   V1.2.5 — pełniejsze sekcje systemu i lokalne landing page
   ========================================================= */
.service-system-section { position: relative; overflow: hidden; }
.service-system-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .65fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-bottom: 42px;
}
.service-system-heading h2 { max-width: 14ch; color: #fff; }
.service-system-heading > p { color: rgba(255,255,255,.7); }
.service-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-system-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0%, rgba(221,168,63,.1), transparent 30%),
    rgba(2,18,34,.58);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.service-system-icon { display: flex; align-items: center; justify-content: space-between; color: var(--gold); }
.service-system-icon span { color: rgba(255,255,255,.32); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.service-system-card h3 { margin-top: 38px; color: #fff; font-size: 1.2rem; }
.service-system-card > p { margin-top: 13px; color: rgba(255,255,255,.68); font-size: .9rem; }
.service-system-card ul { display: grid; gap: 9px; margin: 28px 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.11); }
.service-system-card li { position: relative; padding-left: 18px; color: rgba(255,255,255,.82); font-size: .82rem; }
.service-system-card li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.service-system-card > strong { display: block; margin-top: auto; padding-top: 24px; color: var(--gold-light); font-size: .78rem; line-height: 1.45; }
.service-system-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.service-system-band > div { display: grid; gap: 4px; }
.service-system-band > div span { color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-system-band > div strong { color: #fff; font-size: .88rem; }

.local-service-context-section { background: #eee9df; border-block: 1px solid var(--line); }
.local-service-context {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.5fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.local-service-context-copy h2 { max-width: 13ch; }
.local-service-context-copy p { margin-top: 18px; color: var(--muted); }
.local-service-context-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.local-service-context-cards article { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.78); box-shadow: 0 18px 45px rgba(7,24,43,.06); }
.local-service-context-cards article > span { color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.local-service-context-cards strong { display: block; margin-top: 42px; color: var(--ink); }
.local-service-context-cards p { margin-top: 12px; color: var(--muted); font-size: .86rem; }

.service-locations-section { background: #f2efe8; border-block: 1px solid var(--line); }
.service-locations-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); gap: clamp(36px, 6vw, 88px); align-items: end; margin-bottom: 38px; }
.service-locations-heading h2 { max-width: 14ch; }
.service-locations-heading > p { color: var(--muted); }
.service-city-link-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.service-city-link-grid a { min-height: 130px; background: rgba(255,255,255,.88); box-shadow: 0 14px 38px rgba(7,24,43,.05); }
.service-city-link-grid strong { font-size: .72rem; line-height: 1.35; }
.service-locations-note { max-width: 95ch; margin-top: 22px; color: var(--muted); font-size: .8rem; }

html[data-theme="light"] .service-system-section { color: var(--light-ink); background: linear-gradient(145deg, #e6e0d6 0%, #f8f4ec 100%); }
html[data-theme="light"] .service-system-heading h2,
html[data-theme="light"] .service-system-card h3,
html[data-theme="light"] .service-system-band > div strong { color: var(--light-ink); }
html[data-theme="light"] .service-system-heading > p,
html[data-theme="light"] .service-system-card > p { color: var(--light-muted); }
html[data-theme="light"] .service-system-card { border-color: var(--light-line); background: rgba(255,253,248,.92); box-shadow: var(--light-shadow); }
html[data-theme="light"] .service-system-icon span { color: rgba(11,33,56,.34); }
html[data-theme="light"] .service-system-card ul { border-color: var(--light-line); }
html[data-theme="light"] .service-system-card li { color: #273b51; }
html[data-theme="light"] .service-system-card > strong { color: #8c641d; }
html[data-theme="light"] .service-system-band { border-color: var(--light-line); background: rgba(255,253,248,.72); }
html[data-theme="light"] .local-service-context-section { background: #ebe6dc; }
html[data-theme="light"] .local-service-context-cards article,
html[data-theme="light"] .service-city-link-grid a { color: var(--light-ink); border-color: var(--light-line); background: var(--light-surface); }
html[data-theme="light"] .service-locations-section { background: #f1ece3; }

@media (max-width: 1180px) {
  .service-system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-system-card { min-height: 330px; }
  .service-city-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .local-service-context { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .service-system-heading,
  .service-locations-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-system-band { grid-template-columns: 1fr; }
  .local-service-context-cards { grid-template-columns: 1fr; }
  .local-service-context-cards article { min-height: 0; }
}
@media (max-width: 640px) {
  .service-system-grid,
  .service-city-link-grid { grid-template-columns: 1fr; }
  .service-system-card { min-height: 0; padding: 25px; }
  .service-system-card h3 { margin-top: 26px; }
}

/* =========================================================
   V1.2.6 — rozbudowana stopka, lokalizacje i prefill formularzy
   ========================================================= */
.footer-top-expanded {
  grid-template-columns: minmax(270px, 1.25fr) minmax(165px, .82fr) minmax(210px, 1.05fr) minmax(150px, .72fr) minmax(210px, .9fr);
  gap: clamp(28px, 3vw, 54px);
  padding-top: 70px;
}
.footer-column { min-width: 0; }
.footer-brand-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.footer-action {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(217,168,79,.54);
  border-radius: 10px;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 800;
}
.footer-action:hover { color: #07182b; background: var(--gold-light); }
.footer-action-muted { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.78); }
.footer-links { gap: 11px; }
.footer-links a { width: fit-content; }
.footer-locations-link { margin-top: 6px; color: var(--gold-light) !important; font-weight: 800; }
.footer-contact-links span { max-width: 25ch; }
.footer-location-band {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.5fr);
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
}
.footer-location-band .eyebrow { margin-bottom: 7px; }
.footer-location-band strong { display: block; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 500; }
.footer-city-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.footer-city-links a {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.68);
  font-size: .75rem;
  font-weight: 700;
}
.footer-city-links a:hover { color: #07182b; border-color: var(--gold-light); background: var(--gold-light); }
.footer-city-links .footer-city-all { color: var(--gold-light); border-color: rgba(217,168,79,.45); }

.locations-directory-section { background: var(--paper); }
.locations-directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.location-directory-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 55px rgba(7,24,43,.06);
}
.location-directory-head { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.location-directory-head > span { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #07182b; background: var(--gold-light); font-weight: 900; font-size: .72rem; }
.location-directory-head h3 { font-size: 1.35rem; }
.location-directory-head p { margin-top: 3px; color: var(--muted); font-size: .82rem; }
.location-directory-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-top: 24px; }
.location-directory-columns > div { display: grid; align-content: start; gap: 9px; }
.location-directory-columns strong { margin-bottom: 3px; color: var(--navy-800); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.location-directory-columns a { color: var(--muted); font-size: .85rem; }
.location-directory-columns a:hover { color: #8c641d; }
.locations-final-cta { color: #fff; background: linear-gradient(135deg, #031426, #0a2b4a); }

html[data-theme="light"] .footer-action-muted { color: var(--light-ink); border-color: var(--light-line); }
html[data-theme="light"] .footer-action:hover { color: #07182b; }
html[data-theme="light"] .footer-location-band { border-color: var(--light-line); }
html[data-theme="light"] .footer-location-band strong { color: var(--light-ink); }
html[data-theme="light"] .footer-city-links a { color: var(--light-muted); border-color: var(--light-line); background: rgba(255,253,248,.46); }
html[data-theme="light"] .footer-city-links .footer-city-all { color: #8c641d; border-color: rgba(140,100,29,.36); }
html[data-theme="light"] .location-directory-card { color: var(--light-ink); border-color: var(--light-line); background: var(--light-surface); box-shadow: var(--light-shadow); }
html[data-theme="light"] .location-directory-head { border-color: var(--light-line); }
html[data-theme="light"] .location-directory-columns strong { color: var(--light-ink); }
html[data-theme="light"] .location-directory-columns a { color: var(--light-muted); }
html[data-theme="light"] .locations-final-cta { color: var(--light-ink); background: linear-gradient(135deg, #e7e1d6, #f7f3eb); }
html[data-theme="light"] .locations-final-cta h2 { color: var(--light-ink); }
html[data-theme="light"] .locations-final-cta p { color: var(--light-muted); }

@media (max-width: 1280px) {
  .footer-top-expanded { grid-template-columns: 1.25fr repeat(2, 1fr); }
  .footer-brand { grid-row: span 2; }
}
@media (max-width: 900px) {
  .footer-top-expanded { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-location-band { grid-template-columns: 1fr; }
  .footer-city-links { justify-content: flex-start; }
  .locations-directory-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-top-expanded { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .location-directory-card { padding: 24px 20px; }
  .location-directory-columns { grid-template-columns: 1fr; gap: 22px; }
}
