/* Live LP overrides + LIVE-specific komponenty których main LP nie ma.
   Tokens (--gold, --dark, --cream, --ease itd) z main-styles.css. */

/* Reveal fix: above-fold sekcje od razu visible (IntersectionObserver
   triggeruje tylko po scrolle, ale chcemy zeby content nad fold byl widoczny). */
.hero .reveal,
.hero .reveal *,
.no-reveal-anim .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Agenda */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.agenda-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 165, 111, 0.15);
  border-radius: 16px;
  padding: 28px;
}
.sect-cream .agenda-item {
  background: #fff;
  border-color: rgba(199, 165, 111, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.agenda-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}
.agenda-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.agenda-item p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Mentor block */
.mentor-block {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 760px;
  margin: 32px auto 0;
}
.mentor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.mentor-info {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}
.mentor-info h2 {
  margin-bottom: 16px;
}
.mentor-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.mentor-list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.mentor-list li:last-child {
  border-bottom: 0;
}
.sect-cream .mentor-list li {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #2a2520;
}
.mc-highlight {
  color: var(--gold);
  font-weight: 700;
}

/* Bonus block */
.bonus-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Counter w bonus block */
.bonus-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 32px;
  margin: 24px auto 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(199, 165, 111, 0.12) 0%, rgba(199, 165, 111, 0.06) 100%);
  border: 1px solid rgba(199, 165, 111, 0.25);
}
.bonus-counter-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.bonus-counter-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.04em;
}
.sect-dark .bonus-counter-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonials carousel */
.live-testimonials {
  position: relative;
  max-width: 760px;
  margin: 32px auto 0;
  min-height: 320px;
}
.live-testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.live-testimonial.active {
  display: block;
  opacity: 1;
}
.live-quote {
  margin: 0;
  padding: 28px 32px;
  background: #fff;
  border-radius: 16px;
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
  color: #2a2a2a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.sect-dark .live-quote {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.live-quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-style: normal;
  font-size: 14px;
}
.sect-dark .live-quote footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.live-quote footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.live-quote footer strong {
  display: block;
  font-size: 15px;
}
.live-quote footer span {
  font-size: 13px;
  opacity: 0.7;
}
.live-testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.live-test-prev,
.live-test-next {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(199, 165, 111, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.live-test-prev:hover,
.live-test-next:hover {
  background: var(--gold);
  color: #fff;
}
.live-test-dots {
  display: flex;
  gap: 6px;
}
.live-test-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(199, 165, 111, 0.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.live-test-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 999px;
}

/* Form */
.form {
  max-width: 540px;
  margin: 32px auto 0;
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-row input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--dark2, #161616);
  color: #fff;
  font: inherit;
  font-size: 15px;
}
.form-row input:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}
.form-row input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.required {
  color: var(--gold);
}
.optional {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 14px;
}
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ffb0b0;
  font-size: 14px;
}
.form-ok {
  text-align: center;
  max-width: 540px;
  margin: 32px auto 0;
  padding: 32px;
  border-radius: 16px;
  background: rgba(199, 165, 111, 0.08);
  border: 1px solid rgba(199, 165, 111, 0.2);
}
.form-ok h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 22px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 32px;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}

/* Counter w bonus block - widoczny od start, gold accent */
.bonus-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 32px;
  margin: 24px auto 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(199, 165, 111, 0.12) 0%, rgba(199, 165, 111, 0.06) 100%);
  border: 1px solid rgba(199, 165, 111, 0.25);
}

.bonus-counter-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.bonus-counter-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.04em;
}

.sect-dark .bonus-counter-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Form-ok redirect counter */
#redirectCounter {
  font-weight: 700;
  color: var(--gold);
}

/* Top-bar label dla live */
.top-bar-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 8px;
}

/* Hero countdown extra gap */
.hero-content > .badge + h1 {
  margin-top: 12px;
}

/* Ankieta + dziekujemy specific */
.ankieta-wrap {
  max-width: 640px;
  margin: 80px auto;
  padding: 0 24px;
}

.ankieta-wrap .progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}

.ankieta-wrap .progress span {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.ankieta-wrap .progress span.done {
  background: var(--gold);
}

.ankieta-step {
  display: none;
}

.ankieta-step.active {
  display: block;
}

.ankieta-q {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #fff;
}

.opt {
  display: block;
  padding: 16px 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(199, 165, 111, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.15s;
}

.opt:hover {
  border-color: var(--gold, #C7A56F);
  background: rgba(199, 165, 111, 0.08);
}

.opt input {
  margin-right: 10px;
  accent-color: var(--gold, #C7A56F);
}

.opt-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.nav-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.btn-secondary:hover {
  border-color: var(--gold, #C7A56F);
  color: var(--gold, #C7A56F);
}

.open-textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  resize: vertical;
}

.open-textarea:focus {
  outline: 2px solid var(--gold, #C7A56F);
  border-color: transparent;
}

/* Dziekujemy */
.ty-wrap {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.ty-icon {
  font-size: 56px;
  color: var(--gold, #C7A56F);
  margin-bottom: 16px;
  line-height: 1;
}

.ty-h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
  color: #fff;
}

.ty-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.ty-card {
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(199, 165, 111, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.ty-card h3 {
  color: var(--gold, #C7A56F);
  margin-bottom: 12px;
  font-size: 20px;
}

.ty-segment {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(199, 165, 111, 0.15);
  color: var(--gold, #C7A56F);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cal-link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(199, 165, 111, 0.15);
  color: var(--gold, #C7A56F);
  text-decoration: none;
  margin: 8px 4px;
}

.cal-link:hover {
  background: rgba(199, 165, 111, 0.25);
  text-decoration: none;
}
