﻿@charset "UTF-8";

:root {
  --bg-light: #f5f5f5;
  --bg-dark: #1e1e1e;
  --text-primary: #111111;
  --text-invert: #ffffff;
  --accent: rgba(255, 255, 255, 0.4);
  --gold: #c9b07a;
  --gold-gradient: linear-gradient(135deg, #b99667 0%, #e6d7ba 50%, #b99667 100%);
  --gold-gradient-dark: linear-gradient(135deg, #8f734a 0%, #c8b087 50%, #8f734a 100%);
  --line: rgba(0, 0, 0, 0.08);
  --serif: "Playfair Display", serif;
  --sans: "Inter", sans-serif;
  --section-pad: 96px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 12%, rgba(212, 175, 55, 0.08), transparent 40%),
    radial-gradient(circle at 80% 85%, rgba(212, 175, 55, 0.06), transparent 45%);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

/* Zneutralizuj marginesy pierwszego i ostatniego dziecka — sekcja sama kontroluje odstępy */
.section > .container > *:first-child { margin-top: 0; }
.section > .container > *:last-child  { margin-bottom: 0; }

.section-header {
  margin-bottom: 64px;
}

.section-header::after {
  content: "";
  display: block;
  width: 50px;
  height: 0;
  border-bottom: 1px solid var(--gold);
  opacity: 0.7;
  margin-top: 22px;
  margin-left: 0;
  margin-right: auto;
}

.section-header.centered {
  text-align: center;
}

.social-proof .section-header {
  text-align: left;
}


.eyebrow,
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

h1, h2, h3 {
  font-family: var(--serif);
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.section-header h2 {
  background: var(--gold-gradient-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-header h1 {
  background: var(--gold-gradient-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-header {
  margin-bottom: 0;
}

.hero-header::after {
  display: none;
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--text-invert);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  animation: ctaPulse 6s ease infinite, ctaSilverGlow 6s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

@keyframes ctaShimmer {
  0% { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  10% { opacity: 0.55; }
  40% { opacity: 0.35; }
  100% { transform: translateX(220%) skewX(-20deg); opacity: 0; }
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(230, 230, 230, 0.9) 45%, transparent 70%);
  transform: translateX(-120%) skewX(-20deg);
  opacity: 0;
}

@keyframes ctaSilverGlow {
  0%, 70% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  80% {
    box-shadow: 0 14px 36px rgba(230, 230, 230, 0.35);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
}

.btn-primary {
  animation: ctaPulse 6s ease infinite;
}

@keyframes ctaPulse {
  0%, 75% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }
  80% { box-shadow: 0 12px 34px rgba(201, 176, 122, 0.25); }
  100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }
}

.btn-primary::after {
  animation: ctaShimmer 6s ease infinite;
}

.btn-ghost {
  border: 1px solid var(--text-primary);
}

.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: var(--text-invert);
  color: var(--text-primary);
}

.btn-gold {
  background: linear-gradient(135deg, #e6d7ba 0%, #b99667 100%);
  color: #111;
  box-shadow: 0 12px 28px rgba(201, 176, 122, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: calc(var(--edge-gap) * 3);
  width: 100%;
  z-index: 50;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}


.site-header.scrolled {
  background: rgba(245, 245, 245, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

#siteHeader.scrolled .logo-img {
  filter: brightness(0) saturate(100%);
}


.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-close {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: #111;
  align-self: flex-end;
  cursor: pointer;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 110;
}

.nav a {
  font-size: 14px;
}

.nav-cta {
  background: var(--gold-gradient);
  color: #111;
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
}

.hero {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 245, 245, 0.95) 0%, rgba(230, 230, 230, 0.4) 100%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

/* Zeruj margines ostatniego dziecka hero-copy aby nie dodawał się do padding-bottom */
.hero-copy > *:last-child { margin-bottom: 0; }



:root {
  --hero-gap: 24px;
}

.hero-subtitle {
  margin: 0 0 var(--hero-gap);
  max-width: 460px;
  padding-left: 12px;
}

.hero-subtitle p {
  margin: 0 0 24px;
}

.hero-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.hero-sublist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-sublist li::before {
  content: "✓";
  color: #111;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: 0 0 18px;
}

.hero-title-small {
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.2;
  padding-bottom: 2px;
  margin-bottom: var(--hero-gap);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: var(--hero-gap);
  margin-bottom: var(--hero-gap);
}

.hero-actions-main {
  margin-top: calc(var(--hero-gap) + 8px);
  margin-bottom: calc(var(--hero-gap) + 8px);
}

.hero-actions-consult {
  display: none;
}

.hero-proof {
  font-size: 14px;
  color: #555;
  list-style: none;
  display: grid;
  gap: 10px;
  padding-left: 12px;
}

.hero-proof li {
  display: flex;
  align-items: flex-start;
}

.hero-proof li::before {
  content: "✓";
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-right: 10px;
  flex: 0 0 18px;
}

.hero-platforms {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-left: 12px;
}

.hero-platforms img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}

.hero-platforms img:hover {
  transform: translateY(-2px);
}

.hero-platforms-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 6px;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-video-wrapper {
  position: relative;
  height: calc(min(468px, 88vw) * 16 / 9 + 26px);
  display: flex;
  align-items: center;
}

.hero-video {
  position: relative;
  width: min(468px, 88vw);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: #ddd;
}

.hero-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  animation: none;
}

.hero-video-overlay-icon {
  display: inline-flex;
}

.hero-video-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  animation: listenPulse 2.6s ease-in-out infinite;
}

@keyframes listenPulse {
  0%, 65% {
    box-shadow: 0 0 0 rgba(201, 176, 122, 0);
    transform: translate(-50%, -50%) scale(1);
  }
  85% {
    box-shadow: 0 0 22px rgba(201, 176, 122, 0.55);
    transform: translate(-50%, -50%) scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 rgba(201, 176, 122, 0);
    transform: translate(-50%, -50%) scale(1);
  }
}

.hero-video-cta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-video-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-video-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  left: -72px;
  top: 0;
  width: 121px;
  height: calc(min(468px, 88vw) * 16 / 9 + 26px);
  z-index: 4;
  justify-content: space-between;
  align-items: stretch;
}

.hero-media {
  overflow: visible;
}

.hero-video-thumbs .avatar-thumb {
  width: 121px;
}

.hero-video-thumb {
  background: #fff;
  border: 1px solid #9a9a9a;
  padding: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 0;
  min-height: 0;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-video-thumb:nth-child(1) { transform: rotate(-9deg); }
.hero-video-thumb:nth-child(2) { transform: rotate(10deg);  margin-top: -26px; }
.hero-video-thumb:nth-child(3) { transform: rotate(-10deg); margin-top: -26px; }
.hero-video-thumb:nth-child(4) { transform: rotate(11deg);  margin-top: -26px; }

.hero-video-thumb:hover,
.hero-video-thumb.active {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  filter: saturate(1.1);
  z-index: 5;
}

.hero-video-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.hero-video-thumb.active {
  border-radius: 16px;
}

.hero-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-video-thumb.active::after {
  opacity: 1;
}

.thumb-muted-icon {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  display: inline-block;
}

.hero-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid #111;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  font-size: 14px;
  margin-top: 0;
  margin-bottom: var(--hero-gap);
}

.hero-rating-compact {
  padding: 10px 18px;
  font-size: 12px;
  gap: 8px;
  margin-bottom: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: ratingGoldGlow 6s ease infinite;
  animation-delay: 3s;
}

.hero-rating-compact .rating-stars {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.hero-rating-compact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(201, 176, 122, 0.85) 45%, transparent 70%);
  transform: translateX(-120%) skewX(-20deg);
  opacity: 0;
  animation: ratingGoldShimmer 6s ease infinite;
  animation-delay: 3s;
}

@keyframes ratingGoldShimmer {
  0% { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  10% { opacity: 0.6; }
  20% { transform: translateX(120%) skewX(-20deg); opacity: 0; }
  100% { transform: translateX(120%) skewX(-20deg); opacity: 0; }
}

@keyframes ratingGoldGlow {
  0%, 70% {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  }
  80% {
    box-shadow: 0 12px 28px rgba(201, 176, 122, 0.35);
  }
  100% {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  }
}

.hero-rating-inline .rating-stars {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.12em;
  font-size: 14px;
}

.hero-rating-inline .rating-text {
  color: #111;
  font-weight: 500;
}

.rating-text-mobile { display: none; }

@media (max-width: 768px) {
  .rating-text-desktop { display: none; }
  .rating-text-mobile { display: inline; }
}

.hero-rating-inline .rating-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rating-more {
  display: none;
}

.hero-strip {
  background: transparent;
  padding: 10px 0;
  margin: 36px 0 0;
}


.hero-strip-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-strip .hero-strip-inner {
  display: block;
}

.hero-strip-text {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: #555;
  white-space: nowrap;
}

.results-gallery {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.results-carousel {
  position: relative;
  overflow: visible;
}

.results-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(184, 154, 112, 0.7);
  background: rgba(255, 255, 255, 0.8);
  color: #b89a70;
  font-size: 22px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.results-arrow--prev {
  left: 6px;
}

.results-arrow--next {
  right: 6px;
}

.results-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 auto;
}

.results-below {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #000;
  border-radius: 0 0 18px 18px;
  position: relative;
  overflow: hidden;
  user-select: text;
}

.results-card {
  position: relative;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  isolation: isolate;
  user-select: text;
  --dark-left: 15%;
  --dark-top: 16.7%;
  --dark-size: 80%;
  --edge-gap: calc(100% - (var(--dark-left) + var(--dark-size)));
  --quote-top: 270px;
  height: 448px;
}

.results-card::before {
  content: "";
  position: absolute;
  top: var(--dark-top);
  left: var(--dark-left);
  width: var(--dark-size);
  aspect-ratio: 1 / 1;
  height: auto;
  transform: scaleY(0.94);
  transform-origin: top;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 18px;
  z-index: 2;
}

.results-label {
  position: absolute;
  left: var(--edge-gap);
  right: var(--edge-gap);
  top: 20px;
  color: #c8b087;
  font-family: var(--serif);
  font-size: clamp(14px, 2vw, 24px);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
  z-index: 4;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  user-select: text;
}

.results-quote {
  position: absolute;
  top: calc(var(--dark-top) - 9px);
  right: calc(var(--edge-gap) + 12px);
  color: #b7b0a6;
  font-family: var(--serif);
  font-size: 112.64px;
  line-height: 1;
  letter-spacing: -0.08em;
  transform: rotate(180deg);
  z-index: 3;
  pointer-events: none;
  text-shadow: none;
  animation: quoteFloat 6s ease-in-out infinite;
}

@keyframes quoteFloat {
  0%, 100% {
    transform: rotate(180deg) translateY(0);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  50% {
    transform: rotate(180deg) translateY(-6px);
    filter: drop-shadow(0 0 10px rgba(230, 215, 186, 0.35));
  }
}

.results-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}

.results-square-img {
  --square-size: 100px;
  position: absolute;
  left: var(--edge-gap);
  top: calc(var(--dark-top) + (var(--dark-size) / 5) - (var(--square-size) / 2));
  width: var(--square-size) !important;
  height: var(--square-size) !important;
  border-radius: 7px !important;
  aspect-ratio: 1 / 1 !important;
  clip-path: inset(0 round 7px);
  object-fit: cover;
  display: block;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.results-quote-text {
  position: absolute;
  top: calc(var(--quote-top) - 40px);
  left: calc(var(--dark-left) + 12px);
  width: calc(var(--dark-size) - 24px);
  height: auto;
  padding: 0;
  color: #b7b0a6 !important;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  max-width: none;
  z-index: 999 !important;
  mix-blend-mode: normal;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
  pointer-events: none;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  background: transparent;
  outline: none;
  border-radius: 0;
  transform: none;
  max-height: none;
  overflow: hidden;
}

.results-quote-text.agencja-opinia {
  top: calc(var(--quote-top) - 55px);
}

.results-quote-name {
  position: absolute;
  top: calc(var(--quote-top) - 124px);
  left: calc(var(--dark-left) + 82px);
  width: calc(var(--dark-size) - 94px);
  color: #f2ede6;
  font-family: "Brush Script MT", "Segoe Script", "Comic Sans MS", cursive;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 999;
  pointer-events: auto;
  user-select: text;
}

.results-quote-stars {
  position: absolute;
  top: calc(var(--quote-top) + 102px);
  left: calc(var(--dark-left) + 18px);
  width: calc(var(--dark-size) - 94px);
  color: #c9b07a;
  font-size: 42px;
  letter-spacing: 0.08em;
  z-index: 999;
  pointer-events: auto;
  user-select: none;
  background: transparent;
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.results-quote-stars::before {
  content: "OCENA:";
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #b7b0a6;
}

.results-footnote {
  position: absolute;
  inset: 18px 18px 18px 72px;
  width: auto;
  color: #f2ede6;
  font-family: var(--sans);
  font-size: 11.5px;
  line-height: 1.5;
  z-index: 999;
  pointer-events: auto;
  user-select: text;
  background: transparent;
  outline: none;
  transform: translateY(-40px);
}

.results-footnote strong {
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.results-footnote .footnote-pre {
  color: #b7b0a6;
}

.results-footnote .footnote-solution {
  display: block;
  position: relative;
  top: -30px;
}

.results-footnote .footnote-effect {
  color: #f2ede6;
  display: block;
  position: relative;
  top: -55px;
}

.results-footnote .footnote-icon {
  width: 42px;
  height: 42px;
  margin-right: 6px;
  vertical-align: middle;
  transform: translate(-55px, 50px);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.results-gap {
  display: block;
  height: 12px;
}

.results-quote-role {
  position: absolute;
  top: calc(var(--quote-top) - 90px);
  left: calc(var(--dark-left) + 82px);
  width: calc(var(--dark-size) - 94px);
  color: #b7b0a6;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 999;
  pointer-events: auto;
  user-select: text;
}

.results-main-img {
  width: 100% !important;
  height: 448px !important;
  border-radius: 18px 18px 0 0 !important;
  object-fit: cover !important;
  object-position: center;
  border: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  display: block;
  filter: brightness(0.85);
}

.hero-strip-block {
  width: 100%;
  text-align: center;
}

.hero-strip-title {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 6px;
}

.hero-strip-subtitle {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.hero-strip-check {
  font-size: 14px;
  color: #555;
  line-height: 1;
  margin-right: 6px;
}




.hero-image {
  width: min(452px, 84vw);
  height: auto;
  max-height: 82vh;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.hero-image-frame {
  display: none;
}

.hero-thumbs {
  position: absolute;
  inset: 0;
  pointer-events: auto;
  user-select: none;
}

.hero-thumb {
  position: absolute;
  width: 118px;
  height: 154px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  pointer-events: auto;
}

.hero-thumb:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  filter: saturate(1.05);
  z-index: 2;
}

.hero-thumb:nth-child(1) {
  top: 2%;
  left: -3%;
  width: 114px;
  height: 150px;
  transform: rotate(-4deg);
}

.hero-thumb:nth-child(2) {
  top: 50%;
  left: -6%;
  width: 126px;
  height: 164px;
  transform: translateY(-50%) rotate(3deg);
}

.hero-thumb:nth-child(3) {
  bottom: 2%;
  left: -2%;
  width: 116px;
  height: 152px;
  transform: rotate(-2deg);
}

.hero-crops {
  position: absolute;
  inset: 0;
  pointer-events: auto;
  user-select: text;
}

.crop {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-image: url("hero.jpg.jpg");
  background-size: cover;
  background-position: center;
}

.crop-top {
  width: 160px;
  height: 180px;
  top: 8%;
  left: -12%;
}

.crop-mid {
  width: 180px;
  height: 200px;
  top: 42%;
  right: -10%;
}

.crop-bottom {
  width: 140px;
  height: 170px;
  bottom: -6%;
  left: 10%;
}

.problem {
  background: #efefef;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.problem-col {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
}

.problem-col.loser {
  background: #fafafa;
}

.problem-col.highlight {
  background: #111;
  color: #fff;
}

.problem-col.highlight.winner {
  transform: scale(1.04);
  background: linear-gradient(145deg, #0a0a0a 0%, #1f1f1f 100%);
}

.rating {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 4px;
  font-size: 12px;
  color: #b7b7b7;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.rating .filled {
  color: var(--gold);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35), 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.problem-col.highlight:hover .rating {
  transform: scale(1.06);
  transition: transform 0.3s ease;
}

.problem-col ul {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.problem-col li::before {
  content: "";
}

.problem-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.problem-col .problem-label {
  margin-top: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  flex: 0 0 auto;
  line-height: 1;
  font-weight: 700;
}

.bullet-down {
  width: 16px;
  height: 16px;
  background: #111;
  color: #fff;
  font-size: 10px;
}

.bullet-up {
  width: 20px;
  height: 20px;
  background: var(--gold-gradient);
  color: #111;
  font-size: 12px;
}

.problem-col .effect-list {
  margin-top: 8px;
}

/* SVG face icons in comparison boxes */
.problem-emoji {
  position: absolute;
  top: 14px;
  right: 14px;
  pointer-events: none;
  display: block;
}

.loser-emoji {
  width: 27px;
  height: 27px;
}

.winner-emoji {
  width: 33px;
  height: 33px;
}

/* AI Content winner box — benefit list with white bullets */
.winner .benefit-list {
  list-style: none;
  display: grid;
  gap: 2px;
  font-size: 13px;
  line-height: 1.3;
}

.winner .benefit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.winner .benefit-list li::before {
  content: "•";
  color: #fff;
  font-size: 14px;
  flex: 0 0 auto;
}

.before-after {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 320px;
  height: 100%;
  --ba-pos: 50%;
}

.before-after-inner {
  position: relative;
  height: 100%;
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.before {
  opacity: 1;
}

.after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.after {
  opacity: 1;
  width: 100%;
  height: 100%;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-1px);
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%);
}


.before-after-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.benefit-card {
  padding: 36px 24px 40px;
  border: none;
  background: rgba(250, 249, 247, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-stat {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.15;
}

.benefit-stat-main,
.benefit-stat-sub {
  display: block;
  position: relative;
  z-index: 0;
}

.benefit-stat-sub {
  font-weight: 500;
  color: #2a2a2a;
}

.benefit-desc {
  font-size: 13px;
  color: #707070;
}

.benefits-note {
  margin-top: 20px;
  font-size: 16px;
  color: #5a5a5a;
  max-width: 420px;
}

.benefits {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0) 0%, rgba(0, 0, 0, 0.02) 100%);
}

.process {
  background: #111;
  color: #fff;
}

.process .eyebrow,
.guarantee .eyebrow,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.4em;
}


.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.process-step {
  padding: 0;
}

.step-number {
  font-size: 42px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.14);
  display: block;
  margin-bottom: 8px;
}

.process-step h3 {
  color: #fff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.process-cta {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}

.process-cta:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.services {
  background: #f9f9f9;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.service-block .service-text {
  grid-column: 1;
  display: flex;
  flex-direction: column;
}

.service-block .service-visual {
  grid-column: 2;
  align-self: start;
}

.service-block.reverse .service-text {
  grid-column: 2;
  grid-row: 1;
}

.service-block.reverse .service-visual {
  grid-column: 1;
  grid-row: 1;
}

.service-claim {
  margin-top: 8px;
  margin-bottom: 44px;
  font-size: 16px;
}


.service-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 44px;
  font-size: 14px;
  line-height: 1.5;
}

.service-list li::before {
  content: "• ";
}

.service-note {
  font-size: 14px;
  margin-bottom: 44px;
}


.service-visual img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  max-height: 1200px;
}

.service-visual .service-video {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  display: block;
  background: #000;
}


.avatar-visual {
  position: relative;
}

.avatar-media {
  border-radius: 18px;
  overflow: hidden;
}

.avatar-main {
  transition: opacity 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

@keyframes avatarZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

.avatar-main.zooming {
  animation: avatarZoom 3s ease forwards;
}

.avatar-overlay {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 2;
}

.avatar-overlay-bottom {
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  gap: 10px;
  align-items: center;
}

.overlay-index {
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.overlay-text {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 400;
}

.service-visual.avatar-visual {
  position: relative;
}

.avatar-thumbs {
  position: absolute;
  top: -12px;
  right: 24px;
  bottom: 112px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  align-content: start;
  gap: 2px;
  width: 120px;
  pointer-events: auto;
}

.avatar-visual.center-thumbs .avatar-thumbs {
  top: 50%;
  bottom: auto;
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.avatar-visual.left-thumbs .avatar-thumbs {
  right: auto;
  left: 24px;
}

.avatar-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.avatar-thumb {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 3 / 5;
  position: relative;
  border: 1px solid #9a9a9a;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.avatar-thumb:nth-child(1) {
  transform: rotate(-9deg);
}

.avatar-thumb:nth-child(2) {
  transform: rotate(10deg);
  margin-top: -26px;
}

.avatar-thumb:nth-child(3) {
  transform: rotate(-10deg);
  margin-top: -26px;
  margin-left: 12px;
}

.avatar-thumb:nth-child(4) {
  transform: rotate(11deg);
  margin-top: -26px;
  margin-left: 6px;
}

.avatar-thumb {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
}

.avatar-thumb:hover,
.avatar-thumb.active {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  filter: saturate(1.03);
  border-radius: 16px;
}

.avatar-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.avatar-thumb:hover::after,
.avatar-thumb.active::after {
  opacity: 1;
}

.video-placeholder {
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 80px;
  text-align: center;
}

.metric-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid var(--line);
}

.guarantee {
  background: #111;
  color: #fff;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.guarantee ul {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.guarantee li::before {
  content: "✓ ";
}

.social-proof {
  background: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.metric {
  padding: 24px;
  border: 1px solid var(--line);
  text-align: center;
}

.metric-value {
  font-size: 40px;
  font-family: var(--serif);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial {
  padding: 24px;
  border: 1px solid var(--line);
  background: #f9f9f9;
}

.final-cta {
  background: #111;
  color: #fff;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-group {
  position: relative;
  display: grid;
  gap: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 16px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 110px;
  resize: none;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  background: transparent;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-12px);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
}

.form-group select {
  padding-top: 14px;
}

.form-group .error-message {
  font-size: 12px;
  color: #f2a3a3;
  min-height: 16px;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea,
.form-group.is-invalid select {
  border-color: rgba(242, 163, 163, 0.8);
  box-shadow: 0 0 0 2px rgba(242, 163, 163, 0.15);
}

.form-message {
  font-size: 14px;
  color: #d4af37;
}

.results-cta .results-cta-text {
  margin-bottom: 16px;
}

.form-message.success {
  color: #9ed7b4;
}

.form-message.error {
  color: #f2a3a3;
}

#submitBtn {
  position: relative;
  overflow: hidden;
}

#submitBtn .btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

#submitBtn.is-loading .btn-text {
  opacity: 0.7;
}

#submitBtn.is-loading .btn-loader {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  padding: 48px 0 24px;
  background: #0f0f0f;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-video {
    width: min(480px, 92vw);
  }

  .hero-media {
    padding-bottom: 24px;
  }

  .hero-video-thumbs {
    position: absolute;
    --thumb-overhang: 22px;
    top: calc(-1 * var(--thumb-overhang));
    left: 18px;
    bottom: calc(-1 * var(--thumb-overhang));
    right: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0;
    width: auto;
    z-index: 4;
    gap: 0;
    max-height: none;
    height: calc(100% + (2 * var(--thumb-overhang)));
  }

  .hero-video-thumb {
    width: auto;
    height: calc((100% + (2 * var(--thumb-overhang))) / 4);
    aspect-ratio: 9 / 16;
    flex: 0 0 auto;
    align-self: center;
  }

  .hero-video-thumbs .avatar-thumb {
    margin-top: 0;
    width: auto;
  }

  .hero-video-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .avatar-visual,
  .service-visual.avatar-visual {
    overflow: hidden;
  }

  .avatar-thumbs {
    top: 8px;
    bottom: 72px;
    right: 16px;
    left: auto;
    width: 104px;
  }

  .avatar-visual.left-thumbs .avatar-thumbs {
    left: 16px;
    right: auto;
  }

  .avatar-thumb {
    width: 84%;
  }

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

  .benefits-grid,
  .process-timeline,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-block,
  .service-block.reverse {
    display: flex;
    flex-direction: column;
  }

  .service-block .service-text {
    display: contents;
  }

  .service-intro {
    order: 1;
  }

  .service-block .service-visual {
    order: 2;
  }

  .service-details {
    order: 3;
    margin-top: 44px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .results-gallery {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 12px 18px;
    scrollbar-width: none;
    align-items: flex-start;
    scroll-snap-stop: always;
  }

  .results-gallery::-webkit-scrollbar {
    display: none;
  }

  .results-stack {
    min-width: 70vw;
    scroll-snap-align: center;
  }

  .results-card {
    height: 390px;
    --quote-top: 230px;
  }

  .results-main-img {
    height: 390px !important;
  }

  .results-arrow {
    display: inline-flex;
  }

  .results-label {
    font-size: clamp(14px, 2.8vw, 22px);
  }

  .results-quote-text {
    font-size: 11px;
  }

  .results-quote-stars {
    font-size: 26px;
    top: calc(var(--quote-top) + 76px);
  }

  .results-quote-name {
    font-family: var(--serif);
    font-weight: 600;
  }

  .results-footnote .footnote-effect {
    top: -40px;
  }

  .results-below {
    aspect-ratio: 1 / 1;
  }

  .results-footnote {
    font-size: 10.5px;
    transform: translateY(-16px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: #f5f5f5;
    flex-direction: column;
    padding: 120px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 120;
  }

  .nav.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
    z-index: 130;
  }

  .nav-close {
    display: inline-flex;
  }

  .nav.open + .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-media {
    padding-bottom: 28px;
  }

  .hero-video-thumbs {
    position: absolute;
    --thumb-overhang: 20px;
    top: calc(-1 * var(--thumb-overhang));
    left: 12px;
    bottom: calc(-1 * var(--thumb-overhang));
    right: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0;
    width: auto;
    z-index: 4;
    gap: 0;
    max-height: none;
    height: calc(100% + (2 * var(--thumb-overhang)));
  }

  .hero-video-thumb {
    width: auto;
    height: calc((100% + (2 * var(--thumb-overhang))) / 4);
    aspect-ratio: 9 / 16;
    flex: 0 0 auto;
    align-self: center;
  }

  .hero-video-thumbs .avatar-thumb {
    margin-top: 0;
    width: auto;
  }

  .hero-video-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .avatar-thumbs {
    top: 6px;
    bottom: 64px;
    right: 12px;
    left: auto;
    width: 88px;
  }

  .avatar-visual.left-thumbs .avatar-thumbs {
    left: 12px;
    right: auto;
  }

  .avatar-thumb {
    width: 82%;
  }

  .sticky-cta {
    display: block;
  }

  .benefits-grid,
  .process-timeline,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .results-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 12px 18px;
    scrollbar-width: none;
    overflow-y: hidden;
    align-items: flex-start;
    scroll-snap-stop: always;
  }

  .results-gallery::-webkit-scrollbar {
    display: none;
  }

  .results-stack {
    min-width: 88vw;
    scroll-snap-align: center;
  }

  .results-card {
    height: 360px;
    --quote-top: 210px;
  }

  .results-main-img {
    height: 360px !important;
  }

  .results-label {
    font-size: clamp(14px, 4vw, 20px);
    top: 12px;
  }

  .results-square-img {
    --square-size: 78px;
  }

  .results-quote-name {
    font-size: 16px;
    top: calc(var(--quote-top) - 92px);
    font-family: var(--serif);
    font-weight: 600;
  }

  .results-quote-role {
    top: calc(var(--quote-top) - 64px);
    font-size: 9px;
  }

  .results-quote-text {
    font-size: 10px;
    line-height: 1.45;
    max-height: 120px;
    overflow: hidden;
  }

  .results-quote-text.agencja-opinia {
    top: calc(var(--quote-top) - 46px);
  }

  .results-quote-stars {
    font-size: 22px;
    top: calc(var(--quote-top) + 64px);
    gap: 6px;
    letter-spacing: 0.05em;
  }

  .results-quote-stars::before {
    font-size: 9px;
  }

  .results-below {
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .results-footnote {
    font-size: 10px;
    transform: translateY(-10px);
  }

  .results-footnote .footnote-solution {
    top: -20px;
  }

  .results-footnote .footnote-effect {
    top: -38px;
  }

  :root {
    --section-pad: 64px;
  }

  .eyebrow,
  .hero-kicker {
    font-size: 10px;
  }

  .hero-grid {
    padding-top: 120px;
  }

  .hero-actions-secondary { margin-bottom: 0; }

  .guarantee-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-more {
    display: inline;
  }

  .results-arrow {
    display: inline-flex;
  }

  .before-after {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }

  .results-label {
    font-size: clamp(16px, 4.2vw, 22px);
  }

  .crop {
    display: none;
  }

  /* ── Mobile hero: kolejność sekcji ─────────────────────────── */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Spłaszcz kontenery do bezpośrednich dzieci flex */
  .hero-copy,
  .hero-subtitle,
  .hero-actions-main {
    display: contents;
  }

  /* ── Kolejność + równe odstępy 40px (= 24px margin + 16px gap) ── */
  .hero-kicker                           { order: 1; margin-bottom: 0; }
  .section-header.hero-header            { order: 2; }
  .hero-actions-main .hero-rating-inline { order: 3; padding-top: 14px; padding-bottom: 14px; margin-bottom: 24px; }
  .hero-proof                            { order: 4; margin-bottom: 24px; }
  .hero-actions-main .btn-primary        { order: 5; margin-bottom: 24px; }
  /* order: 6 — hero-media; margin 20px kompensuje overhang miniatur, dając 40px od thumbnails */
  .hero-media                            { order: 6; padding-bottom: 0; margin-top: 20px; margin-bottom: 20px; }
  .hero-sublist                          { order: 7; padding-left: 12px; margin-top: 24px; margin-bottom: 24px; }
  .hero-actions-consult                  { display: flex; order: 8; margin-top: 0; }
  .hero-actions-consult .btn             { white-space: nowrap; font-size: clamp(11px, 3.5vw, 16px); }
  .hero-subtitle > p                     { order: 9; margin-bottom: 0; padding-left: 12px; }
  .hero-actions-secondary                { order: 10; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CS MODULE -- Case Study Cards
   ============================================ */

#csSliderOuter {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 28px;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/*
  clip-path na RODZICU przycina cały skomponowany wynik karty
  (po GPU compositing dzieci) — jedyna niezawodna metoda.
  drop-shadow zamiast box-shadow bo filter jest aplikowany PO clip-path.
*/
.cs-card {
  background: #141414;
  clip-path: inset(0 0 0 0 round 18px);
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.28));
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.cs-card:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 16px 45px rgba(0, 0, 0, 0.42));
}

.cs-media {
  position: relative;
  flex-shrink: 0;
  clip-path: inset(0 0 0 0 round 18px 18px 0 0);
}

.cs-main-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.93);
}

.cs-card:hover .cs-main-img {
  transform: scale(1.04);
}

.cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.00)  0%,
    rgba(0, 0, 0, 0.00)  22%,
    rgba(0, 0, 0, 0.80)  42%,
    rgba(0, 0, 0, 0.86) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.cs-industry-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9b07a;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(201, 176, 122, 0.3);
  font-weight: 500;
  z-index: 3;
}

.cs-media-text {
  position: absolute;
  top: 22%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.cs-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid rgba(201, 176, 122, 0.7);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.cs-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cs-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #f2ede6;
  line-height: 1;
}

.cs-role {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.6);
  line-height: 1;
}

.cs-stars {
  color: #c9b07a;
  font-size: 13px;
  letter-spacing: 3px;
  margin-left: 1px;
}

.cs-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(242, 237, 230, 0.80);
  border-left: 2px solid rgba(201, 176, 122, 0.4);
  padding-left: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-ps-overlay {
  display: flex;
  flex-direction: column;
  margin-top: 2px;
  padding-top: 10px;
  gap: 8px;
}

.cs-ps-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cs-ps-block + .cs-ps-block {
  padding-top: 8px;
}

.cs-ps-label {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9b07a;
  font-weight: 600;
}

.cs-ps-text {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(242, 237, 230, 0.68);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-effect {
  background: #141414;
  padding: 16px 20px 20px;
}

.cs-effect-label {
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9b07a;
  font-weight: 600;
  margin-bottom: 10px;
}

.cs-metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cs-metric { display: flex; flex-direction: column; gap: 2px; }

.cs-metric-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #c9b07a;
  line-height: 1;
}

.cs-metric-lbl { font-size: 10px; color: #999; line-height: 1.3; }

/* ── MOBILE NAV ── */
.cs-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.cs-dots { display: flex; gap: 7px; align-items: center; }

.cs-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 176, 122, 0.28);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.cs-dot.active { width: 22px; border-radius: 2.5px; background: #c9b07a; }

.cs-nav-pills {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.cs-nav-pill {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  background: transparent;
  border: 1px solid rgba(201, 176, 122, 0.35);
  border-radius: 99px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.cs-nav-pill--next {
  justify-content: flex-end;
  padding: 6px 6px 6px 14px;
}

.cs-nav-pill:hover {
  color: #c9b07a;
  border-color: rgba(201, 176, 122, 0.65);
  background: rgba(201, 176, 122, 0.05);
}

.cs-nav-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  color: #c9b07a;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cs-nav-pill:hover .cs-nav-chevron {
  background: rgba(201, 176, 122, 0.18);
}

/* ── CS MOBILE ── */
@media (max-width: 960px) {
  #csSliderOuter {
    overflow: hidden;
    width: 100%;
  }

  .cs-grid {
    display: flex;
    gap: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .cs-card {
    flex: 0 0 100%;
    transform: none !important;
  }

  .cs-card:hover { transform: none !important; }

  .cs-main-img { height: 480px; }

  .cs-nav { display: flex; }

  .cs-name { font-size: 18px; }
  .cs-metric-val { font-size: 19px; }
}

