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

:root {
  --dark:   #0F2040;
  --yellow: #F97316;
  --beige:  #F2F4F7;
  --red:    #FE6941;
  --green:  #89E1B1;
  --text:   #0F1117;
  --muted:  #6B7280;
  --white:  #ffffff;
  --radius: 8px;
  --font: 'Inter', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-light  { background: var(--white); }
.section-dark   { background: var(--dark); color: var(--white); }
.section-beige  { background: var(--beige); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 64px;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-sub   { color: rgba(255,255,255,0.6); }

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.section, .hero { position: relative; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}
.btn-primary:hover { background: #f0c535; transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-outline-sm {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  font-size: 14px;
}
.btn-outline-sm:hover { background: rgba(255,255,255,0.1); }

.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo-dot { color: var(--yellow); }
.nav-logo-img { height: 64px; width: auto; display: block; }

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 600px 500px at 20% 40%, rgba(254,210,75,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 70%, rgba(254,210,75,0.04) 0%, transparent 70%);
  top: 0; left: 0;
  pointer-events: none;
}

/* Geometryczny X — jak na okładce katalogu */
.hero::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  top: -80px;
  right: -80px;
  background:
    linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.022) 40%, rgba(255,255,255,0.022) 60%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.022) 40%, rgba(255,255,255,0.022) 60%, transparent 60%);
  border: 1px solid rgba(255,255,255,0.04);
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content { text-align: left; }

.hero-tag {
  display: inline-block;
  background: rgba(254,210,75,0.15);
  color: var(--yellow);
  border: 1px solid rgba(254,210,75,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-headlines {
  display: grid;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero-headline.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.accent { color: var(--yellow); }

.hero-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active { background: var(--yellow); transform: scale(1.3); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== HERO MOCKUP ===== */
.hero-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 374px;
  justify-self: center;
}

/* Stare klasy zachowane dla kompatybilności, nieużywane */
.mockup-header, .mockup-row, .mockup-row-short { display: none; }

/* ===== HERO MOCKUP — catalog rotator ===== */
.mockup-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--white);
}
.mockup-shadow-1 {
  transform: rotate(5deg) translate(14px, 8px);
  opacity: 0.55;
  box-shadow: 0 20px 56px rgba(0,0,0,0.35);
}
.mockup-shadow-2 {
  transform: rotate(-6deg) translate(-12px, 12px);
  opacity: 0.35;
  box-shadow: 0 20px 56px rgba(0,0,0,0.28);
}

.mockup-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white) center/cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  transform: rotate(-2deg);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.mockup-slide.active {
  opacity: 1;
  transform: rotate(-2deg);
}

/* ===== CARDS (problem) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid rgba(0,0,0,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.card-icon {
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 0;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.1);
}

.step-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.9;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step p  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* Mini browser mockup inside steps */
.step-screen {
  width: 120px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px;
  overflow: hidden;
}
.screen-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.screen-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.screen-row {
  height: 6px;
  background: rgba(255,255,255,0.13);
  border-radius: 3px;
  margin-bottom: 6px;
}
.screen-row-short { width: 65%; }
.screen-input {
  height: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 6px;
}
.screen-input-short { width: 70%; }
.screen-btn {
  width: 40%;
  height: 14px;
  background: var(--yellow);
  border-radius: 4px;
  opacity: 0.3;
}
.screen-doc {
  width: 60%;
  aspect-ratio: 3/4;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

/* ===== METRICS ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.metric {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,0.09);
}

.metric-value {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.1;
}

.metric-label { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid rgba(0,0,0,0.08);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== TESTIMONIALE ===== */
.testimonials {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  margin-top: 56px;
}

.testimonial {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  border: 1.5px solid rgba(0,0,0,0.09);
}

.testimonial-featured {
  background: var(--dark);
  border-color: rgba(255,255,255,0.1);
}
.testimonial.testimonial-featured blockquote,
.testimonial.testimonial-featured .testimonial-more p { color: rgba(255,255,255,0.8); }
.testimonial-featured .testimonial-quotes { color: var(--yellow); opacity: 0.5; }
.testimonial-featured .testimonial-author { border-top-color: rgba(255,255,255,0.12); }
.testimonial-featured .testimonial-author strong { color: var(--white); }
.testimonial-featured .testimonial-author span { color: rgba(255,255,255,0.5); }

.testimonial-quotes {
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--yellow);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
  opacity: 0.7;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-more p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.testimonial-photo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark) 0%, #524e47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}
.testimonial-featured .testimonial-avatar-fallback {
  background: linear-gradient(135deg, rgba(254,210,75,0.15) 0%, rgba(254,210,75,0.05) 100%);
}

.testimonial-author strong { display: block; font-size: 15px; font-weight: 700; }
.testimonial-author span   { font-size: 13px; color: var(--muted); }

/* ===== CATALOG PREVIEW ===== */
.catalog-preview {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.catalog-embed {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.catalog-embed-flipbook {
  aspect-ratio: unset;
  height: auto;
}

.catalog-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.catalog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.3);
}
.catalog-placeholder p {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
}

.catalog-btn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .catalog-embed { display: none; }
}

/* ===== MTA GROUP ===== */
.mta-header {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.mta-logo-large {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
  white-space: nowrap;
}
.mta-group-label {
  color: var(--yellow);
  font-size: 20px;
  vertical-align: super;
  font-weight: 600;
}
.mta-logo-img {
  height: 120px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.mta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
}
.mta-desc strong { color: var(--white); }

.teams-slider-wrapper { overflow: hidden; }

.teams-slider {
  display: flex;
  gap: 16px;
  animation: scrollTeams 24s linear infinite;
  width: max-content;
}
.teams-slider:hover { animation-play-state: paused; }

@keyframes scrollTeams {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.team-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  min-width: 160px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.team-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(254,210,75,0.4);
}
.team-card-active {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
}

.team-abbr {
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.team-name {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.team-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.team-card:hover .team-logo { opacity: 1; }
.team-card-active .team-logo { filter: brightness(0) invert(1); opacity: 1; }

.team-logo-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 36px;
  padding: 4px 8px;
  text-align: center;
  transition: color 0.2s;
}
.team-card:hover .team-logo-text { color: var(--white); }

/* ===== CTA TRIPLE ===== */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.cta-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1.5px solid rgba(0,0,0,0.07);
}

.cta-card-center { text-align: center; }

.cta-icon {
  margin-bottom: 16px;
  display: block;
  color: var(--dark);
  line-height: 0;
}

.cta-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

.form-success {
  display: none;
  background: rgba(137,225,177,0.15);
  border: 1px solid rgba(45,158,106,0.3);
  color: #2d9e6a;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}

.form-error {
  display: none;
  background: rgba(254,105,65,0.1);
  border: 1px solid rgba(254,105,65,0.3);
  color: #c94a28;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  margin-top: 20px;
}

.field-error {
  font-size: 12px;
  color: #c94a28;
  margin-top: -6px;
}

.contact-form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--yellow); }

.cta-phone { font-size: 20px; font-weight: 700; letter-spacing: 0.5px; }

.cta-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

.demo-agenda {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-agenda li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.demo-agenda li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.footer-logo span { color: var(--yellow); font-size: 12px; vertical-align: super; }
.footer-logo-img { height: 56px; width: auto; display: block; }

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

.footer-link {
  font-size: 14px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover { text-decoration: underline; }

/* ===== HERO MICRO-COPY ===== */
.hero-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  letter-spacing: 0.2px;
}

/* ===== DLA KOGO ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.fit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1.5px solid rgba(0,0,0,0.09);
}

.fit-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.fit-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.fit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fit-icon-yes {
  background: rgba(137,225,177,0.2);
  color: #2d9e6a;
}

.fit-icon-no {
  background: rgba(254,105,65,0.12);
  color: #c94a28;
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-list li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.fit-card-yes .fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d9e6a;
  font-weight: 700;
}

.fit-card-no .fit-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c94a28;
  font-weight: 700;
}

/* ===== PRICING ===== */
.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 56px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,0.09);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.pricing-table thead th {
  background: var(--beige);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody td:first-child { color: var(--text); font-weight: 500; }
.pricing-table tbody td:nth-child(2) { color: var(--muted); }

.pricing-col-highlight {
  background: rgba(254,210,75,0.08);
  color: var(--dark) !important;
}
.pricing-table thead .pricing-col-highlight {
  background: rgba(254,210,75,0.18);
  color: var(--dark) !important;
}

.pricing-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-variant {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid rgba(0,0,0,0.09);
  text-align: center;
  position: relative;
}

.pricing-variant-featured {
  background: var(--dark);
  border-color: var(--yellow);
  color: var(--white);
}

.pricing-variant-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-variant-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-variant-featured .pricing-variant-name { color: rgba(255,255,255,0.55); }

.pricing-variant-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.pricing-variant-featured .pricing-variant-price { color: var(--yellow); }

.pricing-variant-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-variant-featured .pricing-variant-desc { color: rgba(255,255,255,0.55); }

.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(249, 115, 22, 0.06);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 32px;
  border: 1.5px solid rgba(249, 115, 22, 0.25);
  border-left: 4px solid var(--yellow);
  color: var(--text);
}

.pricing-guarantee svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow); }
.pricing-guarantee p { font-size: 15px; line-height: 1.65; }
.pricing-guarantee strong { color: var(--yellow); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.faq-question {
  list-style: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--yellow);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

details[open] .faq-question { background: rgba(255,255,255,0.06); }
details[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.65);
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ol {
  margin: 8px 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer li {
  font-size: 15px;
  line-height: 1.6;
}

/* ===== PHASE BLOCKS ===== */
.phase-block {
  margin-top: 48px;
  border: 1.5px solid rgba(249,115,22,0.5);
  border-radius: var(--radius);
  padding: 0 28px 28px;
  position: relative;
  background: rgba(249,115,22,0.07);
}

.phase-block + .phase-block {
  margin-top: 32px;
}

.phase-block-action {
  border-color: rgba(249,115,22,0.25);
  background: rgba(249,115,22,0.03);
}

.phase-block-header {
  margin-bottom: 0;
}

.phase-block-label {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 14px;
  position: relative;
  top: -1px;
  margin-left: -4px;
  line-height: 2.2;
}

.phase-block-action .phase-block-label {
  color: rgba(255,255,255,0.55);
}

.phase-block .steps {
  margin-top: 24px;
}

.step-time {
  font-size: 12px;
  font-weight: 600;
  background: var(--yellow);
  color: var(--dark);
  padding: 2px 10px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}

.step-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.step-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.step-divider-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== STEPS TIMELINE ===== */
.steps-timeline {
  margin-top: 40px;
  margin-bottom: 8px;
}

.stl-track {
  display: flex;
  align-items: flex-start;
}

.stl-seg {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}

.stl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.stl-dot-end {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0;
}

.stl-bar {
  height: 3px;
  border-radius: 2px;
  margin-top: -5px;
  margin-left: 8px;
  margin-right: 0;
}

.stl-seg-s .stl-bar {
  background: rgba(255,255,255,0.15);
}

.stl-seg-m .stl-bar {
  background: rgba(255,255,255,0.15);
}

.stl-seg-l .stl-bar {
  background: var(--yellow);
  opacity: 0.7;
}

.stl-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stl-seg-l .stl-label {
  color: var(--yellow);
  opacity: 0.8;
}

/* ===== VALIDITY CALLOUT ===== */
.validity-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 40px;
  border-left: 4px solid var(--yellow);
  border: 1.5px solid rgba(249, 115, 22, 0.25);
  border-left-width: 4px;
  color: var(--white);
}

.validity-icon {
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}

.validity-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.validity-callout p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

/* ===== PRICING TIME EXPLAINER ===== */
.pricing-time-explainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0 48px;
  flex-wrap: wrap;
}

.time-item {
  text-align: center;
  padding: 20px 24px;
  background: var(--beige);
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,0.08);
  min-width: 160px;
}

.time-item-highlight {
  background: var(--dark);
  color: var(--white);
  border-color: var(--yellow);
}

.time-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 6px;
}

.time-item:not(.time-item-highlight) .time-value {
  color: var(--dark);
}

.time-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.time-item-highlight .time-label {
  color: rgba(255,255,255,0.6);
}

.time-arrow {
  font-size: 24px;
  color: var(--yellow);
  font-weight: 700;
}

/* ===== PRICING HIDDEN COST CALLOUT ===== */
.pricing-hidden-cost {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(15, 32, 64, 0.05);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 24px;
  border-left: 4px solid var(--dark);
  border: 1.5px solid rgba(15, 32, 64, 0.12);
  border-left-width: 4px;
}

.pricing-hidden-cost svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--dark);
}

.pricing-hidden-cost p {
  font-size: 15px;
  line-height: 1.65;
}

/* ===== PRICING VARIANT FEATURES ===== */
.pricing-variant-features {
  list-style: none;
  text-align: left;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-variant-features li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-variant-featured .pricing-variant-features li {
  color: rgba(255,255,255,0.6);
}

.pricing-variant-custom {
  background: var(--beige);
  border-style: dashed;
}

/* ===== PRICING POST-WDROZENIE ===== */
.pricing-post-wdrozenie {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
}

.pricing-post-wdrozenie h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.pricing-post-wdrozenie ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-post-wdrozenie li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.pricing-post-wdrozenie li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ===== PRICING TABLE SECTION ROWS ===== */
.pricing-row-highlight-section td {
  background: rgba(15, 32, 64, 0.04);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  padding: 10px 16px !important;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-dots { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-micro { text-align: center; }
  .hero-mockup { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid   { grid-template-columns: 1fr; }
  .cards-grid .card:first-child { grid-row: auto; }
  .steps {
    flex-direction: column;
    gap: 24px;
  }
  .step:not(:last-child)::after {
    top: auto;
    bottom: -16px;
    right: 50%;
    width: 2px;
    height: 8px;
  }
  .step:not(:last-child)::before {
    top: auto;
    bottom: -22px;
    right: calc(50% - 4px);
  }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial-featured {
    background: var(--beige);
    border-color: rgba(0,0,0,0.06);
  }
  .testimonial-featured blockquote,
  .testimonial-featured .testimonial-more p { color: var(--text); }
  .testimonial-featured .testimonial-author { border-top-color: rgba(0,0,0,0.08); }
  .testimonial-featured .testimonial-author strong { color: var(--text); }
  .testimonial-featured .testimonial-author span { color: var(--muted); }
  .cta-grid   { grid-template-columns: 1fr; }
  .mta-header { flex-direction: column; gap: 24px; }
  .fit-grid { grid-template-columns: 1fr; }
  .pricing-variants { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-divider svg { height: 30px; }
  .nav { padding: 20px 24px; }
  .metrics-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-headline   { font-size: clamp(26px, 7vw, 40px); }
  .hero-cta        { flex-direction: column; align-items: center; }
  .footer-inner    { flex-direction: column; text-align: center; }
  .testimonial-photo-wrap { width: 56px; height: 56px; }
}
