/* ==================================
   NAPRAWA PRO — Wariant B
   style.css — wspólny arkusz stylów
   ================================== */

/* ===== ZMIENNE CSS ===== */
:root {
  --bg-top: #F6FAFE;
  --bg-bottom: #D6E5F6;
  --accent: #1F6FE5;
  --accent-deep: #154FAF;
  --ink: #16243F;
  --ink-deep: #1A2A47;
  --paper: #FFFFFF;
  --paper-soft: #FBFDFF;
  --line: #C9DCF2;
  --glow: #7FB1FF;
  --ok: #2E7D5B;
  --warn: #92400E;
  --warn-bg: #FFFBEB;
  --warn-border: #FDE68A;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(31,111,229,.09);
  --shadow-lg: 0 8px 32px rgba(31,111,229,.14);
  --transition: 0.2s ease;
  --header-h: 68px;
  --max-w: 1200px;
  --gap: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
ul { list-style: none; }
button { cursor: pointer; }

/* Focus visibil for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--ink-deep);
  line-height: 1.25;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.15rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--gap) 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 12px rgba(31,111,229,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-deep);
  letter-spacing: -.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--accent); background: var(--bg-top); }
.site-nav a.active {
  color: var(--accent);
  background: rgba(31,111,229,.08);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-size: .86rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.header-cta:hover {
  background: var(--accent-deep) !important;
  color: #fff;
  box-shadow: 0 4px 16px rgba(31,111,229,.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(31,111,229,.12);
  z-index: 999; /* poniżej sticky header (z-index:1000), który zakrywa górę */
  /* górny padding = wysokość headera + odstęp, żeby treść zaczynała się pod nim */
  padding: calc(var(--header-h) + 16px) 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--accent); background: var(--bg-top); }
.mobile-nav .mobile-cta {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff !important;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap { padding: 20px 0 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: #7B8DB8;
}
.breadcrumb a { color: #7B8DB8; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .5; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(155deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,177,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,111,229,.1);
  border: 1px solid rgba(31,111,229,.2);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { max-width: 680px; margin-bottom: 18px; }
.hero-sub {
  font-size: 1.07rem;
  color: var(--ink);
  opacity: .82;
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .97rem;
}
.hero-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .93rem;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(31,111,229,.28);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(31,111,229,.38);
}
.btn-secondary {
  background: var(--paper);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--bg-top);
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}
.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg-top);
  color: var(--accent-deep);
  transform: translateY(-1px);
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { font-size: 1.02rem; color: #4B5A78; max-width: 520px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(31,111,229,.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ===== CARDS ===== */
.why-us { background: var(--paper-soft); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(255px,1fr)); gap: 22px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(31,111,229,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; }
.card h3 { font-size: 1rem; margin-bottom: 8px; }
.card p { font-size: .88rem; color: #4B5A78; line-height: 1.65; }

/* ===== STATS ===== */
.stats { background: linear-gradient(135deg, var(--ink-deep) 0%, #243660 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 700;
  color: var(--glow);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
}

/* ===== SHIPPING STEPS ===== */
.shipping-steps { background: var(--paper); }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 22px; }
.step-card {
  background: var(--bg-top);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: .87rem; color: #4B5A78; line-height: 1.65; }

/* ===== CALLOUT ===== */
.callout {
  background: rgba(31,111,229,.04);
  border: 1px solid rgba(31,111,229,.14);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 24px;
}
.callout-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .93rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.callout p { font-size: .87rem; color: #4B5A78; line-height: 1.65; }
.callout-warn {
  background: var(--warn-bg);
  border-color: var(--warn-border);
  border-left-color: var(--warn);
}
.callout-warn .callout-title { color: var(--warn); }
.callout-warn p { color: #78350F; }

/* ===== SEO BLOCK ===== */
.seo-block { background: var(--paper-soft); }
.seo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.seo-text > .section-tag { display: block; margin-bottom: 12px; text-align: left; }
.seo-text h2 { margin-bottom: 18px; }
.seo-text p { font-size: .93rem; color: #4B5A78; line-height: 1.75; margin-bottom: 14px; }
.seo-text .closing { font-weight: 600; color: var(--ink-deep); font-size: .95rem; margin-top: 4px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
}
.feature-emoji { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.feature-item h3 { font-size: .9rem; margin-bottom: 6px; }
.feature-item p { font-size: .8rem; color: #6B7A99; line-height: 1.6; }

/* ===== FORM SECTION ===== */
.form-section { background: linear-gradient(155deg, var(--bg-top) 0%, var(--bg-bottom) 100%); }
.form-wrapper { max-width: 760px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 32px; }
.form-header h2 { margin-bottom: 8px; }
.form-header p { color: #4B5A78; }
.form-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 14px; }
.form-badge { display: flex; align-items: center; gap: 6px; font-size: .83rem; font-weight: 700; color: var(--ok); }
.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group.span-full { grid-column: 1 / -1; }
label { font-size: .84rem; font-weight: 600; color: var(--ink-deep); }
label .req { color: var(--accent); margin-left: 2px; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,111,229,.11);
  outline: none;
}
textarea { resize: vertical; min-height: 110px; }
.form-checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  color: #6B7A99;
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  cursor: pointer;
  margin-top: 1px;
  accent-color: var(--accent);
}
.form-submit { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; padding: 15px; font-size: .97rem; }
.form-success { display: none; text-align: center; padding: 48px 16px; }
.form-success.visible { display: block; }
.success-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.form-success h3 { margin-bottom: 10px; color: var(--ok); }
.form-success p { color: #4B5A78; margin-bottom: 6px; font-size: .93rem; }
.form-success .phone-link { font-weight: 700; color: var(--accent); font-size: 1.05rem; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 40px 0 56px;
  background: linear-gradient(155deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}
.contact-hero h1 { margin-bottom: 10px; }
.contact-hero p { color: #4B5A78; font-size: 1.05rem; }

.contact-details { background: var(--paper); }
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; margin-bottom: 20px; }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(31,111,229,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.contact-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #8090AE;
  margin-bottom: 6px;
  display: block;
}
.contact-card-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-deep);
  line-height: 1.55;
  display: block;
}
a.contact-card-value { color: var(--accent); }
a.contact-card-value:hover { color: var(--accent-deep); }
.hours-list { font-size: .85rem; line-height: 1.9; }
.hours-list li { color: var(--ink); }
.company-reg {
  font-size: .78rem;
  color: #8090AE;
  padding: 12px 16px;
  background: var(--bg-top);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  line-height: 1.7;
  margin-top: 8px;
}

/* ===== MAP ===== */
.map-section { padding: 0 0 var(--gap); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; width: 100%; height: 380px; border: none; }

/* ===== HOW TO FIND ===== */
.how-to-find { background: var(--paper-soft); }
.find-content { max-width: 740px; margin: 0 auto; }
.find-content p { color: #4B5A78; font-size: .93rem; line-height: 1.75; margin-bottom: 16px; }
.location-tip {
  background: rgba(31,111,229,.04);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 22px 0;
}
.location-tip-head {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .93rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.location-tip p { color: var(--ink); margin-bottom: 0; font-size: .9rem; }

/* ===== PROCESS PAGE ===== */
.process-hero {
  padding: 40px 0 60px;
  background: linear-gradient(155deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}
.process-hero h1 { margin-bottom: 12px; }
.process-hero p { color: #4B5A78; font-size: 1.02rem; max-width: 580px; }

.process-steps { background: var(--paper); }
.steps-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--line));
  z-index: 0;
}
.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.process-step:last-child { border-bottom: none; }
.step-circle {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 16px rgba(31,111,229,.28);
  position: relative;
  z-index: 2;
  background: var(--accent);
}
.step-body { flex: 1; padding-top: 8px; }
.step-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step-body p { font-size: .9rem; color: #4B5A78; line-height: 1.72; }

/* Resignation options */
.resignation { background: var(--paper-soft); }
.resignation-intro { max-width: 620px; margin: 0 auto 36px; text-align: center; }
.resignation-intro p { color: #4B5A78; font-size: .93rem; margin-top: 10px; line-height: 1.7; }
.option-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 800px; margin: 0 auto; }
.option-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.option-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(31,111,229,.08);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.option-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.option-card p { font-size: .87rem; color: #4B5A78; line-height: 1.65; }

/* CTA block */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 1rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.footer-logo span { color: var(--glow); }
.footer-desc {
  font-size: .84rem;
  line-height: 1.7;
  color: #C7D4EA;
  max-width: 280px;
  margin-bottom: 14px;
}
.footer-nip {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: #8FA4C4;
  line-height: 1.9;
}
.footer-col h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .85rem; color: #C7D4EA; transition: color var(--transition); }
.footer-col a:hover { color: var(--glow); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-row svg { flex-shrink: 0; width: 15px; height: 15px; stroke: var(--glow); margin-top: 3px; }
.footer-contact-row span,
.footer-contact-row a { font-size: .84rem; color: #C7D4EA; line-height: 1.6; }
.footer-contact-row a:hover { color: var(--glow); }
.footer-hours { display: flex; flex-direction: column; gap: 5px; }
.footer-hours li {
  display: flex;
  gap: 8px;
  font-size: .82rem;
  color: #C7D4EA;
  line-height: 1.5;
}
.footer-hours .fday {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: #A8BCDA;
  min-width: 82px;
  flex-shrink: 0;
}
.footer-bottom {
  padding: 16px 0;
  text-align: center;
  font-size: .78rem;
  color: #8FA4C4;
}

/* ===== DROPDOWN NAV ===== */
.nav-has-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-has-dropdown:hover .nav-dropdown-btn { color: var(--accent); background: var(--bg-top); }
.nav-dropdown-btn.active { color: var(--accent); background: rgba(31,111,229,.08); }
.dropdown-arrow { font-size: .68rem; transition: transform var(--transition); display: inline-block; }
.nav-has-dropdown:hover .dropdown-arrow,
.nav-has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
/* ===== MEGA MENU (Usługi) ===== */
.nav-mega {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(840px, 94vw);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.35fr);
  gap: 6px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition) 150ms, transform var(--transition) 150ms;
  z-index: 200;
}
.nav-mega > * { min-width: 0; }
.nav-has-dropdown:hover .nav-mega,
.nav-has-dropdown.open .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav-mega-head {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  padding: 0 10px 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.nav-mega-col ul { display: flex; flex-direction: column; gap: 2px; }
.nav-mega-col a {
  display: block;
  padding: 8px 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-mega-col a:hover { color: var(--accent); background: var(--bg-top); }
.nav-mega-col a.active { color: var(--accent); background: rgba(31,111,229,.08); }
.nav-mega-cta {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mega-cta-text { font-size: .8rem; color: var(--ink); line-height: 1.5; }
.nav-mega-cta-phone {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: 0;
  padding: 11px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-mega .nav-mega-cta-phone:hover { background: var(--accent-deep); color: #fff !important; }
.nav-mega-cta-hours { font-size: .7rem; color: #6B7A99; line-height: 1.7; }

/* TEMP: szeroki wariant mega-menu do przeglądu ukrytych stron — usunąć po weryfikacji */
.nav-mega--review {
  position: fixed;
  top: var(--header-h);
  width: min(1140px, 96vw);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-height: calc(100vh - var(--header-h) - 20px);
  overflow-y: auto;
}
.nav-mega--review a { font-size: .8rem; padding: 6px 8px; }
.mobile-nav-section {
  display: block;
  padding: 8px 16px 2px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8090AE;
  font-family: 'JetBrains Mono', monospace;
}
.mobile-nav-sub { padding-left: 12px; }
.mobile-nav-sub a { font-size: .93rem; }

/* Mobilny akordeon „Usługi" */
.mobile-nav-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  text-align: left;
}
.mobile-nav-acc-btn:hover,
.mobile-nav-acc-btn.active { color: var(--accent); background: var(--bg-top); }
.mobile-nav-acc.open > .mobile-nav-acc-btn { color: var(--accent); }
.mobile-nav-acc.open > .mobile-nav-acc-btn .dropdown-arrow { transform: rotate(180deg); }
.mobile-nav-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

/* ===== THERMOMIX HERO SPLIT ===== */
.hero-split { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.device-panel {
  background: #0F1929;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(127,177,255,.12);
  flex-shrink: 0;
}
.device-header {
  padding: 13px 18px;
  background: #080F1A;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.device-brand { font-family: 'JetBrains Mono', monospace; font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .06em; }
.device-dot-group { display: flex; gap: 6px; }
.device-dot { width: 8px; height: 8px; border-radius: 50%; }
.device-dot.red { background: #F87171; box-shadow: 0 0 6px #F87171; }
.device-dot.amber { background: #FBBF24; }
.device-dot.green { background: var(--ok); box-shadow: 0 0 6px var(--ok); }
.device-screen { padding: 28px 22px 22px; text-align: center; }
.device-error-code { font-family: 'JetBrains Mono', monospace; font-size: 3.2rem; font-weight: 700; color: var(--glow); display: block; line-height: 1; margin-bottom: 6px; }
.device-error-label { font-size: .72rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; display: block; }
.device-footer { padding: 14px 18px; background: rgba(31,111,229,.1); border-top: 1px solid rgba(31,111,229,.18); }
.device-footer p { font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 6px; line-height: 1.5; }
.device-status-ok { font-family: 'JetBrains Mono', monospace; font-size: .75rem; font-weight: 700; color: var(--ok); }

/* ===== MODEL CHIPS ===== */
.model-chips-bar { background: var(--bg-top); border-bottom: 1px solid var(--line); padding: 20px 0; }
.model-chips-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.model-chips-label { font-family: 'JetBrains Mono', monospace; font-size: .72rem; color: #8090AE; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.model-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.model-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink-deep);
  transition: all var(--transition);
  cursor: default;
}
/* chips are informational labels — no hover/active highlight */

/* ===== SPECIALIZATION / COMPARE ===== */
.specialize-section { background: var(--paper-soft); }
.specialize-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.specialize-text .section-tag { display: inline-block; margin-bottom: 12px; }
.specialize-text h2 { margin-bottom: 16px; }
.specialize-text p { font-size: .93rem; color: #4B5A78; line-height: 1.75; margin-bottom: 14px; }
.compare-table { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-head { display: grid; grid-template-columns: 1fr 1fr; }
.compare-head-cell {
  padding: 14px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.compare-head-cell.bad { background: #FEF2F2; color: #B91C1C; }
.compare-head-cell.good { background: rgba(46,125,91,.07); color: var(--ok); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.compare-cell { padding: 11px 18px; font-size: .84rem; line-height: 1.5; display: flex; align-items: center; gap: 7px; }
.compare-cell.bad { color: #6B7A99; background: #FAFAFA; }
.compare-cell.good { color: var(--ink-deep); font-weight: 600; }
.compare-cell .ci { flex-shrink: 0; font-size: .9rem; }

/* ===== ERROR CODE DIAGNOSTIC GRID ===== */
.error-section {
  background: var(--paper-soft);
  padding: var(--gap) 0;
}
.error-section .section-header h2 { color: var(--ink-deep); }
.error-section .section-header p { color: #4B5A78; }
.error-section .section-tag { background: rgba(31,111,229,.08); color: var(--accent); }
.error-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 16px; }
.error-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.error-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,111,229,.1); }
.error-card-screen {
  background: rgba(31,111,229,.05);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.error-code-display { font-family: 'JetBrains Mono', monospace; font-size: 1.45rem; font-weight: 700; color: var(--accent-deep); }
.error-blink { width: 8px; height: 8px; border-radius: 50%; background: #F87171; box-shadow: 0 0 6px rgba(248,113,113,.4); }
.error-card-body { padding: 14px 18px; flex: 1; }
.error-card-title { font-family: 'Space Grotesk', sans-serif; font-size: .88rem; font-weight: 700; color: var(--ink-deep); margin-bottom: 8px; }
.error-card-desc { font-size: .81rem; color: #4B5A78; line-height: 1.65; }
.error-card-fix {
  padding: 11px 18px;
  background: rgba(31,111,229,.05);
  border-top: 1px solid rgba(31,111,229,.1);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.error-fix-label { font-size: .78rem; color: var(--accent); font-weight: 600; line-height: 1.5; }
.error-no-code-note { margin-top: 28px; text-align: center; font-size: .88rem; color: #6B7A99; }
.error-no-code-note a { color: var(--accent); font-weight: 600; }

/* ===== OTHER FAULTS ===== */
.other-faults { background: var(--paper); }

/* ===== PROCESS TEASER ===== */
.process-teaser { background: var(--bg-top); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.teaser-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.teaser-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--line));
  z-index: 0;
}
.teaser-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.teaser-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 14px rgba(31,111,229,.3);
}
.teaser-step h3 { font-size: .9rem; margin-bottom: 4px; }
.teaser-step p { font-size: .78rem; color: #6B7A99; }
.teaser-cta-row { display: flex; justify-content: center; margin-top: 32px; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--paper-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.review-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-stars { color: #F59E0B; font-size: .95rem; letter-spacing: 1px; }
.review-source { display: flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 600; color: #5F6368; }
.review-text { font-size: .87rem; color: #4B5A78; line-height: 1.7; flex: 1; font-style: italic; margin-bottom: 14px; }
.review-author { font-weight: 700; font-size: .84rem; color: var(--ink-deep); }

/* ===== FAQ ===== */
.faq-section { background: var(--paper); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink-deep);
  cursor: pointer;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-top); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-answer-inner { padding: 0 20px 18px; font-size: .89rem; color: #4B5A78; line-height: 1.75; }
.faq-answer-inner a { color: var(--accent); }
.faq-answer-inner strong { color: var(--ink-deep); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  :root { --gap: 60px; }
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  /* pełna nieprzezroczystość — treść menu nie prześwituje pod headerem */
  .site-header { background: var(--paper); }

  /* Otwarte menu: strona „zamrożona" (iOS-proof), header z krzyżykiem przypięty u góry */
  body.menu-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }
  body.menu-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .seo-inner { grid-template-columns: 1fr; gap: 32px; }
  .seo-text > .section-tag { display: inline-block; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child { border-bottom: none; }

  .option-cards { grid-template-columns: 1fr; }
}


@media (max-width: 640px) {
  :root { --gap: 48px; }

  .hero { padding: 52px 0 64px; }

  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full,
  .form-checkbox,
  .form-submit { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

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

  .steps-list::before { left: 23px; }
  .step-circle { width: 48px; height: 48px; font-size: .95rem; }

  .contact-info-grid { grid-template-columns: 1fr; }

  /* Thermomix page responsive */
  .hero-split { grid-template-columns: 1fr; }
  .device-panel { display: none; }
  .hero-illustration { display: none; }
  /* console panels carry real info (supported models) — keep visible on mobile */
  .hero-illustration:has(.console) { display: flex; }
  .specialize-inner { grid-template-columns: 1fr; gap: 28px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .teaser-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .teaser-steps::before { display: none; }
}

@media (max-width: 640px) {
  .error-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .compare-head-cell, .compare-cell { font-size: .78rem; padding: 10px 12px; }
  .teaser-steps { grid-template-columns: 1fr 1fr; }
}

/* ===== HERO ILLUSTRATION ===== */
.hero-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-illus-svg {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 8px 24px rgba(31,111,229,.12));
}
.hero-illus-caption { text-align: center; padding: 0 8px; }
.hero-illus-q {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink-deep);
  margin-bottom: 6px;
}
.hero-illus-text {
  font-size: .82rem;
  color: #6B7A99;
  line-height: 1.65;
}

/* ===== CONSOLE PANEL (hero) ===== */
.console {
  width: 100%;
  max-width: 420px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.console__bar {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.console__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.console__dot--1 { background: var(--line); }
.console__dot--2 { background: var(--glow); }
.console__dot--3 { background: var(--accent); }
.console__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-deep);
  opacity: .8;
  margin-left: 4px;
}
.console__body {
  padding: 16px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
}
.console__prompt {
  color: var(--accent-deep);
  font-family: 'JetBrains Mono', monospace;
}
.console__prompt::before { content: "> "; }
.console__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.console__chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-deep);
  background: var(--paper-soft);
  white-space: nowrap;
}
/* Strony per-usterka */
.usterka-text { max-width: 760px; margin: 0 auto; }
.usterka-text p { color: #4B5A78; line-height: 1.75; margin-bottom: 14px; font-size: .95rem; }
.usterka-text p:last-child { margin-bottom: 0; }
.usterka-text strong { color: var(--ink-deep); }
.usterka-highlight {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--warn) !important;
  font-size: .92rem;
  font-weight: 600;
}
.console__prompt--sub { display: block; margin-top: 12px; }

/* Aktywny chip (bieżący model/marka na stronach per-model) */
.console__chip--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
/* Klikalne chipy (linki <a>) */
a.console__chip {
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
a.console__chip:hover,
a.console__chip:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(31,111,229,.28);
}
.console__cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ===== HOMEPAGE HERO — CONSOLES GRID ===== */
.hero-home {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-home-text h1 { max-width: 100%; }
.hero-consoles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-consoles .console { max-width: none; }
.hero-consoles .console__body { padding: 12px 14px; }
.hero-consoles .console__chips { margin-top: 0; }
.hero-consoles .console__chip { font-size: 11.5px; padding: 3px 9px; }
.console--wide { grid-column: 1 / -1; }

/* Panel w hero podstron — większy, lepiej wypełnia prawą kolumnę */
.hero-illustration .console { max-width: 100%; }
.hero-illustration .console__bar { padding: 12px 18px; }
.hero-illustration .console__body { padding: 20px 22px; font-size: 13.5px; }
.hero-illustration .console__chip { font-size: 13px; padding: 5px 12px; }

@media (max-width: 980px) {
  .hero-home { grid-template-columns: 1fr; gap: 40px; }
  .hero-consoles { grid-template-columns: 1fr 1fr; max-width: 520px; }
}
@media (max-width: 520px) {
  .hero-consoles { grid-template-columns: 1fr; }
}

/* ===== CONSENT LINK ===== */
.consent-link { color: var(--accent); text-decoration: underline; }
.consent-link:hover { opacity: .8; }

/* ===== MINI FORM ===== */
.mini-form-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.mini-form-card {
  background: var(--bg-top);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.mini-form-head { margin-bottom: 20px; }
.mini-form-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink-deep);
  margin-bottom: 4px;
}
.mini-form-head p { font-size: .85rem; color: #6B7A99; }
.mini-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}
.mini-form-below { display: flex; flex-direction: column; gap: 10px; }
.mini-form-success {
  display: none;
  text-align: center;
  padding: 28px 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ok);
}
.mini-form-success.visible { display: block; }
.mini-form-success .mfs-icon { font-size: 2rem; margin-bottom: 8px; }
.mini-form-success .mfs-title { font-weight: 700; color: var(--ok); margin-bottom: 6px; }
.mini-form-success .mfs-sub { font-size: .88rem; color: #4B5A78; }
.mini-form-success .phone-link { font-weight: 700; color: var(--accent); }

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 56px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(31,111,229,.38);
  transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.float-call:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,111,229,.5);
}
.float-call svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .float-call { padding: 15px; border-radius: 50%; }
  .float-call-label { display: none; }
}

/* ===== BRAND CARDS (stacje parowe) ===== */
.brand-grid-section { background: var(--paper-soft); }
.brand-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.brand-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.brand-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--ink-deep);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--accent);
  display: block;
}
.brand-card-models { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.brand-card-models li { font-size: .77rem; color: #4B5A78; }
.brand-other-note { margin-top: 18px; font-size: .85rem; color: #6B7A99; text-align: center; }

/* ===== FAULT CARD ICON (emoji variant zamiast ekranu z kodem) ===== */
.fault-card-icon {
  padding: 14px 18px;
  background: rgba(31,111,229,.04);
  font-size: 1.6rem;
  line-height: 1;
}
.fault-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: var(--accent);
}

/* ===== CHIPS LIST (Dyson categories) ===== */
.chips-header { margin-bottom: 20px; }
.chips-header h2 { margin-bottom: 8px; }
.chips-header p { font-size: .93rem; color: #4B5A78; }
.chips-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chips-note { margin-top: 16px; font-size: .85rem; color: #6B7A99; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 8999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease, transform .18s ease, box-shadow .18s ease;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.16); }
@media (max-width: 640px) {
  .scroll-top { bottom: 82px; }
}

@media (max-width: 700px) {
  .mini-form-grid { grid-template-columns: 1fr; }
  .mini-form-grid .btn { width: 100%; }
}

/* ===== STRONA „DZIĘKUJEMY" ===== */
.thanks { background: linear-gradient(155deg, var(--bg-top) 0%, var(--paper) 60%); }
.thanks-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.thanks-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46,125,91,.12);
  color: var(--ok);
  border: 2px solid var(--ok);
}
.thanks-icon svg { width: 38px; height: 38px; }
.thanks-inner h1 { margin-bottom: 14px; }
.thanks-sub {
  font-size: 1.08rem;
  color: var(--ink);
  opacity: .85;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
/* Wyróżniony blok telefonu — najważniejszy element */
.thanks-phone {
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  margin: 0 auto 44px;
  max-width: 560px;
}
.thanks-phone-text { font-size: 1.02rem; font-weight: 600; color: var(--ink-deep); margin-bottom: 16px; }
.thanks-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  padding: 16px 34px;
  border-radius: 100px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 18px rgba(31,111,229,.28);
}
.thanks-phone-btn:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(31,111,229,.36); }
.thanks-phone-hours { font-size: .82rem; color: #6B7A99; line-height: 1.6; margin-top: 16px; }
/* Co dalej? */
.thanks-next { text-align: left; margin-bottom: 40px; }
.thanks-next h2 { text-align: center; margin-bottom: 24px; }
.thanks-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}
.thanks-step-num {
  flex: 0 0 auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-top);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-step p { font-size: .92rem; color: var(--ink); line-height: 1.55; }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Komunikat błędu formularza */
.form-error-msg {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius-sm);
  color: var(--warn);
  font-size: .88rem;
  font-weight: 600;
}

@media (max-width: 560px) {
  .thanks-steps { grid-template-columns: 1fr; }
  .thanks-phone-btn { font-size: 1.25rem; padding: 14px 24px; }
  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn { width: 100%; }
}

/* ===== FORMULARZ W HERO ===== */
.hero-form-wrap { display: flex; flex-direction: column; }
.hero-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 22px;
}
.hero-form h2 { font-size: 1.15rem; margin-bottom: 4px; }
.hf-sub { font-size: .85rem; color: #4B5A78; margin-bottom: 14px; }
.hero-form .form-group { margin-bottom: 12px; }
.hero-form label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: 5px; }
.hero-form input, .hero-form textarea {
  width: 100%; padding: 11px 13px; font: inherit;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper-soft); color: var(--ink);
}
.hero-form input:focus, .hero-form textarea:focus { border-color: var(--accent); outline: none; background: #fff; }
.hero-form .form-checkbox { font-size: .68rem; margin: 12px 0; }
.hero-form .btn { width: 100%; }
.hf-note { text-align: center; font-size: .8rem; color: var(--ok); font-weight: 600; margin-top: 10px; }

/* ===== PASEK KONSOLI POD HERO ===== */
.console-strip { padding: 34px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.console-strip .console { max-width: 760px; margin: 0 auto; }
.console-strip .hero-illus-caption { max-width: 760px; margin: 14px auto 0; }

/* ===== MOBILNY PASEK CTA (kompaktowy) ===== */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 998;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  box-shadow: 0 -3px 14px rgba(31,111,229,.14);
}
.cta-bar a { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 46px; font-weight: 700; font-size: .88rem; }
.cta-bar-tel { background: var(--paper); color: var(--accent-deep); }
.cta-bar-order { background: var(--accent); color: #fff !important; }
@media (max-width: 960px) {
  body.has-ctabar .cta-bar { display: grid; }
  body.has-ctabar .float-call { display: none; }
  body.has-ctabar { padding-bottom: 46px; }
  body.has-ctabar .scroll-top { bottom: 62px; }
}
