/* ================================================
   CLENZO.CZ — style.css v2
   Big Shoulders Display · Rubik
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #080807;
  --surface: #111110;
  --surface2:#1C1C1A;
  --border:  rgba(255,255,255,0.07);
  --white:   #F2F1ED;
  --muted:   #7A7974;
  --orange:  #E85002;
  --orange-h:#FF6A20;

  --display: 'Big Shoulders Display', sans-serif;
  --body:    'Rubik', sans-serif;

  --max:  1100px;
  --pad:  clamp(20px, 5vw, 48px);
  --vpad: clamp(80px, 10vw, 112px);
  --r:    10px;
}

html { scroll-behavior: smooth; }

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

/* ---- Gradient accent line at top ---- */
body::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #000 0%, #C10B01 35%, #E85002 65%, #D9C3AB 100%);
}

/* ---- Utilities ---- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section[id] {
  position: relative;
}

.section {
  padding: var(--vpad) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.divider { height: 1px; background: var(--border); }

/* Decorative section number */
.s-num {
  font-family: var(--display);
  font-size: clamp(140px, 22vw, 240px);
  font-weight: 900;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: var(--pad);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

.overline {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

/* ---- Typography ---- */
h1 {
  font-family: var(--display);
  font-size: clamp(68px, 11vw, 128px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--white);
}
h2 {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--white);
}
h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
p  { color: var(--muted); }
a  { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-h); }

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

/* ================================================
   NAV
   ================================================ */
nav {
  position: fixed;
  top: 2px; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,7,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 72px; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta { font-size: 14px; padding: 9px 20px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: 0.2s;
}

.nav-mob {
  display: none;
  position: fixed;
  inset: 62px 0 0;
  background: var(--black);
  z-index: 99;
  padding: 32px var(--pad);
  flex-direction: column;
  gap: 2px;
}
.nav-mob.open { display: flex; }
.nav-mob a {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mob a:hover { color: var(--orange); }
.nav-mob a:last-child { border-bottom: none; color: var(--orange); margin-top: 16px; }

/* ================================================
   HERO
   ================================================ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Edge vignette: fades video into page bg at all four edges, center stays crystal clear */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,7,0.92) 0%, rgba(8,8,7,0.35) 18%, transparent 36%),
    linear-gradient(0deg,   rgba(8,8,7,0.95) 0%, rgba(8,8,7,0.45) 20%, transparent 42%),
    linear-gradient(90deg,  rgba(8,8,7,0.98) 0%, rgba(8,8,7,0.55) 22%, transparent 50%),
    linear-gradient(270deg, rgba(8,8,7,0.98) 0%, rgba(8,8,7,0.55) 22%, transparent 50%);
}

/* Centered hero layout */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* H1 line-rise animation */
.h1-line {
  display: block;
  overflow: hidden;
  line-height: 1.0;
}
.h1-line + .h1-line { margin-top: 0.02em; }
.hload {
  display: block;
}
.hload-fade {
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

h1 .accent { color: var(--orange); font-style: normal; }

.hero-sub {
  font-size: 18px;
  color: var(--white);
  opacity: 0.72;
  max-width: 480px;
  margin: 28px 0 40px;
  line-height: 1.6;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
  justify-content: center;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white);
  opacity: 0.65;
}
.hero-proof-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(232,80,2,0.6);
  flex-shrink: 0;
}

/* Float stat cards — grouped at bottom-right of hero */
.hero-stats-float {
  position: absolute;
  bottom: clamp(32px, 5vw, 56px);
  right: var(--pad);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-float-stat {
  background: rgba(8,8,7,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hfs-val {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hfs-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat + .stat { border-left: 1px solid var(--border); }
.stat-val {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ================================================
   PROBLEM
   ================================================ */
.problem-head { max-width: 540px; }
.problem-head h2 { margin-bottom: 12px; }
.problem-head p  { font-size: 17px; }

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

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(232,80,2,0.3); }

.p-num {
  font-family: var(--display);
  font-size: 54px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  opacity: 0.72;
}
.problem-card h3 { font-size: 17px; margin-bottom: 8px; }
.problem-card p  { font-size: 14px; line-height: 1.6; }

.problem-link {
  text-align: right;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}
.problem-link a { font-weight: 600; }

/* ================================================
   CALCULATOR
   ================================================ */
.calc-head { max-width: 560px; }
.calc-head h2 { margin-bottom: 12px; }
.calc-head p  { font-size: 17px; }

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

/* Left: slider + breakdown */
.calc-slider-label {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.calc-slider-label strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-bottom: 36px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232,80,2,0.18);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%; border: none;
  background: var(--orange);
}

.calc-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.calc-row:last-child { border-bottom: none; }
.calc-row-lbl { font-size: 13px; color: var(--muted); }
.calc-row-val { font-size: 14px; font-weight: 600; color: var(--white); white-space: nowrap; }

/* Right: big number */
.calc-result {
  position: sticky;
  top: 80px;
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.calc-result-lbl {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.calc-big {
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 92px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 6px;
}
.calc-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.calc-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   SERVICE LINES
   ================================================ */
#sluzby { position: relative; }
#sluzby::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(232,80,2,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#sluzby > * { position: relative; z-index: 1; }

.lines-head { max-width: 560px; }
.lines-head h2 { margin-bottom: 14px; }
.lines-head p { font-size: 18px; }

.lines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.line-card {
  border-radius: 20px;
  padding: 48px 44px;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.38s ease,
              border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.line-card::after {
  font-size: 120px;
  line-height: 1;
  position: absolute;
  right: -8px; bottom: -18px;
  opacity: 0.07;
  pointer-events: none;
  transition: opacity 0.38s, transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.line-card:hover::after {
  opacity: 0.15;
  transform: scale(1.1) translate(-6px, -6px);
}

.line-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 22px;
  border: 1px solid;
}

.line-card h3 { font-size: 30px; margin-bottom: 14px; letter-spacing: -0.02em; }
.line-card > p { font-size: 16px; margin-bottom: 28px; line-height: 1.65; }
.line-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.line-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.line-list li::before { content: '—'; color: var(--orange); flex-shrink: 0; }

/* ================================================
   JOURNEY (scroll-driven 3D)
   ================================================ */
.journey-track { height: 420vh; }

.journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
}

.journey-head {
  position: relative;
  z-index: 5;
  padding: clamp(72px, 9vw, 96px) var(--pad) 16px;
  pointer-events: none;
}
.journey-head .overline { margin-bottom: 8px; }

.journey-scene {
  flex: 1;
  position: relative;
  min-height: 0;
}

#journey-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.journey-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jstep {
  position: absolute;
  padding: 18px 22px 20px;
  background: rgba(8,8,7,0.97);
  border: 1px solid rgba(232,80,2,0.6);
  border-radius: 14px;
  opacity: 0;
  transform: translate(-50%, -100%) translateY(-6px) scale(0.88);
  transition: opacity 0.32s ease, transform 0.32s ease;
  min-width: 240px;
  max-width: 300px;
  text-align: left;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  will-change: transform, opacity;
  box-shadow: 0 12px 40px rgba(0,0,0,0.8), 0 0 24px rgba(232,80,2,0.1);
}

.jstep.active {
  opacity: 1;
  transform: translate(-50%, -100%) translateY(-22px) scale(1);
}

.jstep::after {
  content: '';
  position: absolute;
  bottom: -9px; left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid rgba(232,80,2,0.6);
}

.jstep-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.jstep strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.jstep > span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.jstep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
}

.jstep-list li {
  font-size: 12px;
  color: rgba(242,241,237,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.jstep-list li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
  opacity: 0.7;
}

.journey-bar {
  height: 2px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.journey-bar-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.12s linear;
}

/* ================================================
   PACKAGES
   ================================================ */
.pkg-head { max-width: 540px; }
.pkg-head h2 { margin-bottom: 12px; }
.pkg-head p { font-size: 17px; }

/* ---- Pricing banners ---- */
.pkg-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.pkg-banner {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 1fr 200px;
  gap: 0 36px;
  align-items: center;
  padding: 32px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
}

/* Shine sweep on hover */
.pkg-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.035) 50%, transparent 80%);
  transform: translateX(-100%);
  pointer-events: none;
}
.pkg-banner:hover::before {
  animation: banner-shine 0.55s ease forwards;
}
@keyframes banner-shine {
  to { transform: translateX(110%); }
}

.pkg-banner:hover {
  border-color: rgba(232,80,2,0.22);
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
  transform: translateY(-3px);
}

.pkg-banner-featured {
  padding: 40px;
  background: rgba(232,80,2,0.055);
  border-color: rgba(232,80,2,0.5);
  box-shadow: 0 0 0 1px rgba(232,80,2,0.12) inset;
}
.pkg-banner-featured:hover {
  border-color: rgba(232,80,2,0.75);
  box-shadow: 0 16px 56px rgba(232,80,2,0.18), 0 0 0 1px rgba(232,80,2,0.18) inset;
}

/* "Most popular" ribbon */
.pkg-banner-ribbon {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 44px;
  transform: rotate(35deg);
  transform-origin: center;
}

/* Big step number */
.pkg-banner-num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}
.pkg-banner-featured .pkg-banner-num {
  opacity: 0.16;
  color: var(--orange);
}

/* Left info block */
.pkg-banner-badge {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.pkg-banner-name {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.pkg-banner-featured .pkg-banner-name { color: var(--orange); }

.pkg-banner-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 26ch;
}

/* Feature list */
.pkg-banner-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-banner-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: color 0.2s, transform 0.2s;
}
.pkg-banner-features li::before {
  content: '→';
  color: var(--orange);
  flex-shrink: 0;
  opacity: 0.7;
}
.pkg-banner:hover .pkg-banner-features li { color: var(--white); }
.pkg-banner:hover .pkg-banner-features li:nth-child(1) { transition-delay: 0s; }
.pkg-banner:hover .pkg-banner-features li:nth-child(2) { transition-delay: 0.04s; }
.pkg-banner:hover .pkg-banner-features li:nth-child(3) { transition-delay: 0.08s; }
.pkg-banner:hover .pkg-banner-features li:nth-child(4) { transition-delay: 0.12s; }

/* Price + CTA column */
.pkg-banner-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.pkg-banner-price {
  text-align: right;
  line-height: 1.3;
}
.pkg-banner-price strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.pkg-banner-featured .pkg-banner-price strong { color: var(--orange); }
.pkg-banner-price span {
  font-size: 12px;
  color: var(--muted);
}

/* Reveal animations */
.reveal-banner {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal-banner[data-dir="right"] { transform: translateX(56px); }
.reveal-banner.in { opacity: 1; transform: translateX(0); }
.reveal-banner:nth-child(2) { transition-delay: 0.12s; }
.reveal-banner:nth-child(3) { transition-delay: 0.24s; }

/* Feature stagger on scroll reveal */
.pkg-banner-features li {
  opacity: 0;
  transform: translateY(6px);
}
.reveal-banner.in .pkg-banner-features li { opacity: 1; transform: translateY(0); }
.reveal-banner.in .pkg-banner-features li:nth-child(1) { transition: opacity 0.3s 0.3s ease, transform 0.3s 0.3s ease, color 0.2s, color 0.2s; }
.reveal-banner.in .pkg-banner-features li:nth-child(2) { transition: opacity 0.3s 0.38s ease, transform 0.3s 0.38s ease, color 0.2s, color 0.2s; }
.reveal-banner.in .pkg-banner-features li:nth-child(3) { transition: opacity 0.3s 0.46s ease, transform 0.3s 0.46s ease, color 0.2s, color 0.2s; }
.reveal-banner.in .pkg-banner-features li:nth-child(4) { transition: opacity 0.3s 0.54s ease, transform 0.3s 0.54s ease, color 0.2s, color 0.2s; }

/* Addons */
.addons-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 14px;
}
.addons-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 17px 24px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.addons-trigger:hover { background: rgba(255,255,255,0.02); }
.addons-trigger-icon { color: var(--orange); font-size: 18px; transition: transform 0.2s; }
.addons-trigger-icon.open { transform: rotate(45deg); }
.addons-body {
  display: none;
  padding: 6px 24px 20px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.addons-body.open { display: grid; }
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  background: rgba(255,255,255,0.025);
  border-radius: 7px;
  font-size: 13px;
  gap: 8px;
}
.addon-row span:first-child { color: var(--muted); }
.addon-row span:last-child  { color: var(--orange); font-weight: 600; white-space: nowrap; }

/* ================================================
   FAQ
   ================================================ */
.faq-head { text-align: center; }
.faq-head h2 { margin-bottom: 10px; }
.faq-head p  { font-size: 17px; }

.faq-list {
  max-width: 680px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(232,80,2,0.28); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-chev { color: var(--orange); font-size: 13px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
/* faq-a styles moved to enhanced block above */

/* ================================================
   CONTACT
   ================================================ */
#kontakt { position: relative; overflow: hidden; }
.kontakt-bg-logo {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100vw;
  opacity: 0.06;
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}
.kontakt-bg-logo--light { display: none; }
[data-theme="light"] .kontakt-bg-logo--dark { display: none; }
[data-theme="light"] .kontakt-bg-logo--light { display: block; }
#kontakt::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,80,2,0.4), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 17px; color: var(--muted); margin-bottom: 32px; }

.c-details { display: flex; flex-direction: column; gap: 14px; }
.c-detail {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  align-items: flex-start;
}
.c-icon {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.c-detail strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.c-detail a, .c-detail span { color: var(--white); font-size: 14px; }
.c-detail a:hover { color: var(--orange); text-decoration: none; }

.c-about {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 380px;
}
.c-about strong { color: var(--white); }

.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
}
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  padding: 11px 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(232,80,2,0.45); }
.fg select { appearance: none; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 88px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit { width: 100%; justify-content: center; padding: 15px; font-size: 15px; margin-top: 6px; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 28px var(--pad);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.foot-inner img { }
.foot-copy { font-size: 13px; color: var(--muted); }
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.foot-links a:hover { color: var(--white); }

/* ================================================
   COMPARISON
   ================================================ */
.comp-head { max-width: 560px; margin-bottom: 48px; }
.comp-head h2 { margin-bottom: 12px; }

.comp-table {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.comp-thead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
}

.comp-th {
  padding: 14px 28px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.comp-th-us {
  color: var(--orange);
  background: rgba(232,80,2,0.06);
  border-left: 1px solid rgba(232,80,2,0.2);
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.comp-td {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  font-size: 16px;
  line-height: 1.55;
}

.comp-td-bad { color: rgba(242,241,237,0.5); }

.comp-td-good {
  color: var(--white);
  background: rgba(232,80,2,0.04);
  border-left: 1px solid rgba(232,80,2,0.14);
}

.comp-ic {
  flex-shrink: 0;
  font-size: 17px;
  line-height: 1.55;
  margin-top: 1px;
}

.comp-td-bad .comp-ic  { color: rgba(255,255,255,0.2); }
.comp-td-good .comp-ic { color: var(--orange); }

.comp-cta { text-align: center; margin-top: 40px; }

/* ================================================
   ABOUT
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 { margin-bottom: 16px; }

.about-lead {
  font-size: 18px;
  color: var(--white) !important;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
}

.about-text p {
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(232,80,2,0.1);
  border: 1px solid rgba(232,80,2,0.25);
  border-radius: 100px;
  padding: 5px 14px;
}

.about-visual { position: relative; }

.about-img-ph {
  aspect-ratio: 4/3;
  border-radius: var(--r);
  background: linear-gradient(160deg, var(--surface) 30%, rgba(232,80,2,0.08) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.about-img-ph::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent);
}

.about-img-ph .ph-icon { font-size: 28px; opacity: 0.18; }
.about-img-ph p { font-size: 12px; color: rgba(255,255,255,0.12); }

.about-quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
}

.aq-text {
  font-size: 14px;
  color: var(--white) !important;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px !important;
}

.aq-author {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--rd, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-l {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--rd, 0s);
}
.reveal-r {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--rd, 0s);
}
.reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

/* ================================================
   PROBLEM CARDS — enhanced hover
   ================================================ */
.problem-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.problem-card:hover {
  border-color: rgba(232,80,2,0.4) !important;
  box-shadow: 0 12px 40px rgba(232,80,2,0.08), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-6px);
}


/* ================================================
   CALCULATOR — row bars
   ================================================ */
.calc-row {
  display: flex;
  flex-direction: column;
  padding: 12px 20px 10px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.calc-row:last-child { border-bottom: none; }
.calc-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.calc-row-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.calc-row-bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  opacity: 0.7;
  transition: width 0.45s cubic-bezier(0.16,1,0.3,1);
}

/* ================================================
   SERVICE LINES — visual differentiation
   ================================================ */
.line-card-working {
  background: rgba(232,80,2,0.06);
  border: 1px solid rgba(232,80,2,0.28);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 48px rgba(232,80,2,0.14);
  margin-top: 32px;
}
.line-card-working::after { content: '🔧'; }
.line-card-working .line-badge {
  color: var(--orange);
  border-color: rgba(232,80,2,0.35);
  background: rgba(232,80,2,0.1);
}
.line-card-working .line-list li::before { content: '⚙'; font-size: 11px; }
.line-card-working:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.65), 0 0 64px rgba(232,80,2,0.25) !important;
  border-color: rgba(232,80,2,0.55) !important;
}

.line-card-executive {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 48px rgba(255,255,255,0.025);
}
.line-card-executive::after { content: '🪪'; }
.line-card-executive .line-badge {
  color: rgba(242,241,237,0.75);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  letter-spacing: 0.18em;
}
.line-card-executive .line-list li::before { content: '◆'; font-size: 8px; position: relative; top: -1px; }
.line-card-executive:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.65), 0 0 64px rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.3) !important;
}

/* ================================================
   FAQ — smooth height animation + numbers
   ================================================ */
.faq-list { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.faq-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  min-width: 28px;
  opacity: 0.7;
}
.faq-q { gap: 10px; }

.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  padding: 0 22px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: padding-bottom 0.38s cubic-bezier(0.16,1,0.3,1);
  min-height: 0;
}
.faq-item.open .faq-a { padding-bottom: 20px; }

/* ================================================
   CONTACT — enhanced focus + button sweep
   ================================================ */
.fg {
  position: relative;
}
.fg input, .fg select, .fg textarea {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(232,80,2,0.55);
  box-shadow: 0 0 0 3px rgba(232,80,2,0.1);
  outline: none;
}

.btn-submit {
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  pointer-events: none;
}
.btn-submit:hover::before {
  animation: submit-shine 0.6s ease forwards;
}
@keyframes submit-shine {
  to { transform: translateX(110%); }
}

/* ================================================
   STATS — tabular numbers for clean count
   ================================================ */
.stat-val {
  font-variant-numeric: tabular-nums;
}
.stat-val-pop {
  animation: none;
}
.stat.in .stat-val-pop {
  animation: stat-pop 0.5s cubic-bezier(0.16,1,0.3,1) 0.16s backwards;
}
@keyframes stat-pop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  :root { --vpad: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  h1 { font-size: clamp(52px, 14vw, 80px); }
  h2 { font-size: clamp(36px, 10vw, 56px); }

  .hero-stats-float { right: var(--pad); gap: 8px; }
  .hero-float-stat  { padding: 10px 14px; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border); }

  .problem-grid { grid-template-columns: 1fr; }
  .calc-body    { grid-template-columns: 1fr; }
  .calc-result  { position: static; }
  .lines-grid   { grid-template-columns: 1fr; gap: 20px; }
  .line-card-working { margin-top: 0; }
  .line-card { padding: 36px 28px; }

  /* Journey mobile fallback */
  .journey-track  { height: auto !important; }
  .journey-sticky { position: relative !important; height: auto !important; }
  .journey-scene  { display: none; }
  .journey-head   { padding-top: clamp(72px, 9vw, 96px); padding-bottom: 24px; pointer-events: all; }
  .journey-labels { position: static; display: flex; flex-direction: column; gap: 10px; padding: 0 var(--pad) var(--vpad); }
  .jstep { position: static !important; left: auto !important; top: auto !important; transform: none !important; opacity: 1 !important; min-width: 0; width: 100%; border-radius: 8px; }
  .jstep::after { display: none; }
  .jstep-num { font-size: 20px; margin-bottom: 4px; }
  .journey-bar { display: none; }

  .pkg-banner   { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .pkg-banner-num { font-size: 48px; }
  .pkg-banner-price-col { align-items: flex-start; flex-direction: row; align-items: center; justify-content: space-between; }
  .pkg-banner-ribbon { display: none; }
  .addons-body  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .row-2        { grid-template-columns: 1fr; }
  .hero-btns    { flex-direction: column; align-items: flex-start; }

  .comp-thead, .comp-row { grid-template-columns: 1fr; }
  .comp-th-us   { border-left: none; border-top: 1px solid var(--border); }
  .comp-td-good { border-left: none; border-top: 1px solid rgba(232,80,2,0.14); }
  .comp-td      { padding: 16px 20px; font-size: 15px; }

  .about-grid   { grid-template-columns: 1fr; gap: 36px; }
}

/* ================================================
   THEME TOGGLE BUTTON
   ================================================ */
.theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 7px 11px;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  transition: color 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--white); border-color: var(--orange); }

/* ================================================
   LIGHT MODE
   ================================================ */
[data-theme="light"] {
  --black:   #F8F8F6;
  --surface: #EEEDEA;
  --surface2:#E5E4E0;
  --border:  rgba(0,0,0,0.10);
  --white:   #1A1918;
  --muted:   #6B6A66;
}

/* Nav */
[data-theme="light"] nav {
  background: rgba(248,248,246,0.93);
}
[data-theme="light"] .nav-mob {
  background: var(--black);
}
[data-theme="light"] .nav-burger span {
  background: var(--white);
}


/* Hero — light mode vignette: edges fade to page bg, center stays clear */
[data-theme="light"] .hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(248,248,246,0.96) 0%, rgba(248,248,246,0.50) 18%, transparent 36%),
    linear-gradient(0deg,   rgba(248,248,246,0.97) 0%, rgba(248,248,246,0.55) 20%, transparent 42%),
    linear-gradient(90deg,  rgba(248,248,246,0.99) 0%, rgba(248,248,246,0.65) 22%, transparent 50%),
    linear-gradient(270deg, rgba(248,248,246,0.99) 0%, rgba(248,248,246,0.65) 22%, transparent 50%);
}
[data-theme="light"] .hero-float-stat {
  background: rgba(248,248,246,0.88);
  border-color: rgba(0,0,0,0.12);
}

/* Decorative section numbers */
[data-theme="light"] .s-num {
  color: rgba(0,0,0,0.05);
}

/* Ghost button */
[data-theme="light"] .btn-ghost {
  color: var(--white);
  border-color: rgba(0,0,0,0.18);
}
[data-theme="light"] .btn-ghost:hover {
  border-color: rgba(0,0,0,0.4);
}

/* Form inputs */
[data-theme="light"] .fg input,
[data-theme="light"] .fg select,
[data-theme="light"] .fg textarea {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.10);
  color: var(--white);
}
[data-theme="light"] .fg input::placeholder,
[data-theme="light"] .fg textarea::placeholder { color: var(--muted); }

/* Addon rows */
[data-theme="light"] .addon-row {
  background: rgba(0,0,0,0.04);
}

/* Addons trigger hover */
[data-theme="light"] .addons-trigger:hover { background: rgba(0,0,0,0.03); }
[data-theme="light"] .faq-q:hover { background: rgba(0,0,0,0.03); }


/* Comparison Clenzo side — stronger orange tint so both sides read distinctly */
[data-theme="light"] .comp-td-good {
  background: rgba(232,80,2,0.07);
}

/* Package banner hover shadow — dark mode shadow is far too heavy on a light bg */
[data-theme="light"] .pkg-banner:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
[data-theme="light"] .pkg-banner-featured:hover {
  box-shadow: 0 10px 36px rgba(232,80,2,0.16), 0 0 0 1px rgba(232,80,2,0.22) inset;
}

/* Package banner shine sweep — white glint is invisible on light; flip to subtle dark */
[data-theme="light"] .pkg-banner::before {
  background: linear-gradient(100deg, transparent 20%, rgba(0,0,0,0.04) 50%, transparent 80%);
}

/* Ribbon text — --white in light mode is near-black; force cream so it reads on orange */
[data-theme="light"] .pkg-banner-ribbon {
  color: #F2F1ED;
}



/* Problem cards — tighten border so cards feel defined against page bg */
[data-theme="light"] .problem-card {
  border-color: rgba(0,0,0,0.13);
}

/* Calc + FAQ container borders */
[data-theme="light"] .calc-result,
[data-theme="light"] .faq-list {
  border-color: rgba(0,0,0,0.13);
}

/* Gradient accent line at top */
[data-theme="light"] body::before {
  background: linear-gradient(90deg, transparent 0%, #C10B01 35%, #E85002 65%, #D9C3AB 100%);
}

/* Contact section accent line */
[data-theme="light"] #kontakt::before {
  background: linear-gradient(to right, transparent, rgba(232,80,2,0.3), transparent);
}

/* About placeholder */
[data-theme="light"] .about-img-ph {
  background: linear-gradient(160deg, var(--surface) 30%, rgba(232,80,2,0.06) 100%);
}
[data-theme="light"] .about-img-ph p { color: rgba(0,0,0,0.15); }

/* Comparison bad-side icon — darker on light bg */
[data-theme="light"] .comp-td-bad .comp-ic { color: rgba(0,0,0,0.25); }
[data-theme="light"] .comp-td-bad { color: rgba(0,0,0,0.45); }

/* Pkg banner shine */
[data-theme="light"] .pkg-banner::before {
  background: linear-gradient(100deg, transparent 20%, rgba(0,0,0,0.025) 50%, transparent 80%);
}

