/* ==========================================================================
   main.css — Energosertyfikat / Program Partnerski
   Mobile-first, BEM, CSS variables, no frameworks
   ========================================================================== */

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
  --sce-primary: #0a5c5f;
  --sce-primary-hover: #0d7377;
  --sce-primary-light: rgba(10, 92, 95, 0.07);
  --sce-danger: #b91c1c;
  --sce-warning: #ca8a04;
  --sce-success: #15803d;
  --sce-text: #1a1a1a;
  --sce-text-secondary: #555555;
  --sce-text-disabled: #9a9a9a;
  --sce-bg-page: #fafaf8;
  --sce-bg-section: #f2f2ef;
  --sce-border-light: #e0e0dc;
  --sce-border-medium: #a3a39e;
  --sce-shadow-card: 0 1px 3px rgba(26, 26, 26, 0.09);
  --sce-transition: 0.15s ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--sce-text);
  background-color: var(--sce-bg-page);
}

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

ul, ol {
  list-style: none;
}

a {
  color: var(--sce-primary);
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.sce-skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--sce-primary);
  color: #fff;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.sce-skip-nav:focus {
  top: 0;
}

.sce-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--sce-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1 { font-size: 1.75rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }

@media (min-width: 1080px) {
  h1 { font-size: 2.5rem; }
}

/* ==========================================================================
   LAYOUT HELPERS
   ========================================================================== */

.sce-header__inner,
.sce-trust-bar__inner,
.sce-hero__inner,
.sce-problem__inner,
.sce-steps__inner,
.sce-calculator__inner,
.sce-founder__inner,
.sce-proof__inner,
.sce-transparency__inner,
.sce-terms__inner,
.sce-faq__inner,
.sce-scarcity__inner,
.sce-register__inner,
.sce-footer__inner,
.sce-stage__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .sce-header__inner,
  .sce-trust-bar__inner,
  .sce-hero__inner,
  .sce-problem__inner,
  .sce-steps__inner,
  .sce-calculator__inner,
  .sce-founder__inner,
  .sce-proof__inner,
  .sce-transparency__inner,
  .sce-terms__inner,
  .sce-faq__inner,
  .sce-scarcity__inner,
  .sce-register__inner,
  .sce-footer__inner,
  .sce-stage__inner {
    padding: 0 1.5rem;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.sce-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 1.5rem;
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--sce-transition),
    color var(--sce-transition),
    border-color var(--sce-transition);
}

.sce-btn--filled {
  background: var(--sce-primary);
  color: #fff;
  border-color: var(--sce-primary);
}
.sce-btn--filled:hover {
  background: var(--sce-primary-hover);
  border-color: var(--sce-primary-hover);
}

.sce-btn--outline {
  background: transparent;
  color: var(--sce-primary);
  border-color: var(--sce-primary);
}
.sce-btn--outline:hover {
  background: var(--sce-primary);
  color: #fff;
}

.sce-btn--sm {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

/* Кнопка submit — белый фон, primary текст */
.sce-btn--submit {
  background: #fff;
  color: var(--sce-primary);
  border-color: #fff;
  width: 100%;
  min-width: 280px;
}
.sce-btn--submit:hover {
  background: var(--sce-bg-section);
  border-color: var(--sce-bg-section);
}

@media (min-width: 768px) {
  .sce-btn--submit {
    width: auto;
  }
}

/* ==========================================================================
   ALERTS
   ========================================================================== */

.sce-alert {
  padding: 1rem 1.25rem;
  border-left: 4px solid;
}

.sce-alert--info {
  background: rgba(10, 92, 95, 0.07);
  border-color: var(--sce-primary);
  color: var(--sce-text);
}

.sce-alert--warning {
  background: rgba(202, 138, 4, 0.08);
  border-color: var(--sce-warning);
  color: var(--sce-text);
}

.sce-alert--danger {
  background: rgba(185, 28, 28, 0.07);
  border-color: var(--sce-danger);
  color: var(--sce-text);
}

.sce-alert--success {
  background: rgba(21, 128, 61, 0.08);
  border-color: var(--sce-success);
  color: var(--sce-text);
}

/* ==========================================================================
   FORM FIELDS
   ========================================================================== */

.sce-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.sce-field__label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--sce-text);
}

.sce-field--light .sce-field__label {
  color: #fff;
}

.sce-field__optional {
  font-weight: 400;
  color: var(--sce-text-secondary);
  font-size: 0.8125rem;
}

.sce-field--light .sce-field__optional {
  color: rgba(255, 255, 255, 0.7);
}

.sce-field__input {
  height: 3rem;
  padding: 0 0.875rem;
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  color: var(--sce-text);
  background: var(--sce-bg-page);
  border: 2px solid var(--sce-border-medium);
  transition: border-color var(--sce-transition);
  width: 100%;
}

.sce-field--light .sce-field__input {
  background: #fff;
  border-color: var(--sce-border-light);
}

.sce-field__input:focus {
  border-color: var(--sce-primary);
  outline: none;
}

.sce-field__input[aria-invalid="true"] {
  border-color: var(--sce-danger);
}

.sce-field__error {
  font-size: 0.875rem;
  color: var(--sce-danger);
}

.sce-field--light .sce-field__error {
  color: #fca5a5;
}

/* Fieldset */
.sce-field--fieldset {
  border: none;
}

.sce-field--fieldset legend.sce-field__label {
  float: left;
  width: 100%;
  margin-bottom: 0.75rem;
}

/* Radio */
.sce-field__radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sce-field__radio-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.sce-field__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.sce-field__radio-custom {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--sce-border-medium);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  border-radius: 50%;
}

.sce-field__radio-input:checked + .sce-field__radio-custom::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--sce-primary);
  border-radius: 50%;
  display: block;
}

.sce-field__radio-input:focus-visible + .sce-field__radio-custom {
  outline: 3px solid var(--sce-primary);
  outline-offset: 2px;
}

.sce-field__radio-text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

/* ==========================================================================
   PLACEHOLDER (image stubs)
   ========================================================================== */

.sce-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sce-placeholder--portrait {
  aspect-ratio: 4 / 5;
}

.sce-placeholder--square {
  aspect-ratio: 1 / 1;
}

.sce-placeholder__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.6;
}

/* Dark bg placeholder (founder section on light bg) */
.sce-founder__photo .sce-placeholder {
  background: var(--sce-primary-light);
  border-color: var(--sce-border-medium);
}

.sce-founder__photo .sce-placeholder__label {
  color: var(--sce-text-secondary);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.sce-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--sce-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  height: 3.5rem;
}

.sce-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sce-header__brand {
  text-decoration: none;
  color: #fff;
}

.sce-header__brand-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.sce-header__brand-sub {
  display: none;
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .sce-header__brand-sub {
    display: block;
  }
}

.sce-header__cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.sce-header__cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.sce-header-spacer {
  height: 3.5rem;
}

@media (min-width: 768px) {
  .sce-header {
    height: 4rem;
  }
  .sce-header-spacer {
    height: 4rem;
  }
}

/* ==========================================================================
   TRUST BAR (zaufanie)
   ========================================================================== */

.sce-trust-bar {
  background: var(--sce-bg-section);
  border-bottom: 1px solid var(--sce-border-light);
  padding: 0.75rem 0;
}

.sce-trust-bar__list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.125rem;
}

.sce-trust-bar__list::-webkit-scrollbar {
  display: none;
}

.sce-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.sce-trust-bar__icon {
  font-size: 1rem;
}

.sce-trust-bar__label {
  font-size: 0.75rem;
  color: var(--sce-text-secondary);
}

@media (min-width: 768px) {
  .sce-trust-bar__list {
    overflow-x: visible;
    white-space: normal;
    justify-content: space-between;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.sce-hero {
  background: var(--sce-primary);
  color: #fff;
  padding: 4rem 0;
}

.sce-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sce-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sce-hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.25rem 0.75rem;
  align-self: flex-start;
}

.sce-hero__title {
  color: #fff;
}

.sce-hero__title-accent {
  display: block;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.375rem;
}

.sce-hero__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 560px;
}

.sce-hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

/* Hero primary button: белый фон, primary текст */
.sce-hero__cta-primary {
  background: #fff;
  color: var(--sce-primary);
  border-color: #fff;
}
.sce-hero__cta-primary:hover {
  background: var(--sce-bg-section);
  border-color: var(--sce-bg-section);
  color: var(--sce-primary);
}

/* Hero secondary button: прозрачный фон, белая рамка */
.sce-hero__cta-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.sce-hero__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.sce-hero__microcopy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.sce-hero__photo {
  display: none;
}

@media (min-width: 768px) {
  .sce-hero__cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1080px) {
  .sce-hero {
    padding: 6rem 0;
  }

  .sce-hero__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: center;
  }

  .sce-hero__photo {
    display: block;
  }
}

/* ==========================================================================
   PROBLEM
   ========================================================================== */

.sce-problem {
  background: var(--sce-bg-page);
  padding: 3.5rem 0;
}

.sce-problem__inner {
  max-width: 720px;
}

.sce-problem__title {
  margin-bottom: 1.75rem;
  color: var(--sce-text);
}

.sce-problem__scenario {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sce-problem__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sce-primary);
  border-left: 4px solid var(--sce-primary);
  padding-left: 1.25rem;
}

.sce-problem__text {
  color: var(--sce-text-secondary);
}

.sce-problem__text--highlight {
  font-weight: 700;
  color: var(--sce-text);
}

@media (min-width: 1080px) {
  .sce-problem {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   STEPS (jak-dziala)
   ========================================================================== */

.sce-steps {
  background: var(--sce-bg-section);
  padding: 3.5rem 0;
}

.sce-steps__title {
  margin-bottom: 2.5rem;
  text-align: center;
}

.sce-steps__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sce-steps__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sce-steps__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sce-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}

.sce-steps__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sce-steps__item-title {
  color: var(--sce-text);
}

.sce-steps__item-desc {
  color: var(--sce-text-secondary);
}

@media (min-width: 768px) {
  .sce-steps__list {
    flex-direction: row;
    gap: 0;
    position: relative;
  }

  .sce-steps__list::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: 2rem;
    right: 2rem;
    border-top: 2px dashed var(--sce-border-medium);
    z-index: 0;
  }

  .sce-steps__item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }

  .sce-steps__number {
    background: var(--sce-bg-section);
    padding: 0 0.375rem;
    min-width: auto;
  }
}

@media (min-width: 1080px) {
  .sce-steps {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   CALCULATOR (kalkulator)
   ========================================================================== */

.sce-calculator {
  background: var(--sce-bg-page);
  padding: 3.5rem 0;
}

.sce-calculator__title {
  margin-bottom: 0.5rem;
}

.sce-calculator__subtitle {
  color: var(--sce-text-secondary);
  margin-bottom: 2.5rem;
}

.sce-calculator__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sce-calculator__controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sce-calculator__field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.sce-calculator__field-label {
  font-weight: 700;
  font-size: 0.9375rem;
}

.sce-calculator__field-hint {
  font-size: 0.8125rem;
  color: var(--sce-text-secondary);
}

.sce-calculator__slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Slider */
.sce-calculator__range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  background: var(--sce-border-medium);
  outline: none;
  cursor: pointer;
}

.sce-calculator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sce-primary);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: var(--sce-shadow-card);
}

.sce-calculator__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sce-primary);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: var(--sce-shadow-card);
}

.sce-calculator__range:focus-visible {
  outline: 3px solid var(--sce-primary);
  outline-offset: 2px;
}

/* Number input */
.sce-calculator__number {
  width: 4rem;
  height: 3rem;
  padding: 0 0.5rem;
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--sce-text);
  background: var(--sce-bg-page);
  border: 2px solid var(--sce-border-medium);
  flex-shrink: 0;
}

.sce-calculator__number:focus {
  border-color: var(--sce-primary);
  outline: none;
}

/* Result card */
.sce-calculator__result-card {
  background: var(--sce-primary);
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sce-calculator__result-label {
  font-size: 0.875rem;
  opacity: 0.85;
}

.sce-calculator__result-amount {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.sce-calculator__result-currency {
  font-size: 1.25rem;
}

.sce-calculator__result-yearly {
  font-size: 0.9375rem;
  opacity: 0.85;
}

.sce-calculator__result-breakdown {
  font-size: 0.875rem;
  opacity: 0.9;
}

.sce-calculator__breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
}

/* CTA button in result card: белый фон, primary текст */
.sce-calculator__result-cta {
  background: #fff;
  color: var(--sce-primary);
  border-color: #fff;
  align-self: flex-start;
}
.sce-calculator__result-cta:hover {
  background: var(--sce-bg-section);
  border-color: var(--sce-bg-section);
  color: var(--sce-primary);
}

.sce-calculator__result-note {
  font-size: 0.8125rem;
  color: var(--sce-text-secondary);
  margin-top: 0.75rem;
}

@media (min-width: 1080px) {
  .sce-calculator {
    padding: 5rem 0;
  }

  .sce-calculator__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
  }

  .sce-calculator__result-amount {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sce-calculator__range {
    transition: none;
  }
}

/* ==========================================================================
   FOUNDER (edward)
   ========================================================================== */

.sce-founder {
  background: var(--sce-bg-section);
  padding: 3.5rem 0;
}

.sce-founder__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sce-founder__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 200px;
  align-self: center;
}

.sce-placeholder--square {
  max-width: 280px;
  width: 100%;
}

.sce-founder__credential {
  background: var(--sce-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.sce-founder__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sce-founder__title {
  margin-bottom: 0.5rem;
}

.sce-founder__text {
  color: var(--sce-text-secondary);
}

.sce-founder__text strong {
  color: var(--sce-text);
}

.sce-founder__quote {
  border-left: 4px solid var(--sce-primary);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--sce-text-secondary);
  margin-top: 0.5rem;
}

.sce-founder__quote p {
  margin-bottom: 0.5rem;
}

.sce-founder__quote-attr {
  font-size: 0.875rem;
  color: var(--sce-text-secondary);
  font-style: normal;
}

@media (min-width: 768px) {
  .sce-founder__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
  }

  .sce-founder__photo {
    max-width: none;
    align-self: auto;
  }
}

@media (min-width: 1080px) {
  .sce-founder {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   PROOF / SOCIAL (dowody)
   ========================================================================== */

.sce-proof {
  background: var(--sce-bg-page);
  padding: 3.5rem 0;
}

.sce-proof__title {
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Stats */
.sce-proof__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sce-proof__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.sce-proof__stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sce-primary);
  line-height: 1;
}

.sce-proof__stat-label {
  font-size: 0.875rem;
  color: var(--sce-text-secondary);
}

@media (min-width: 768px) {
  .sce-proof__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .sce-proof__stat {
    border-right: 1px solid var(--sce-border-light);
    padding: 0 1.5rem;
  }

  .sce-proof__stat:first-child {
    padding-left: 0;
  }

  .sce-proof__stat:last-child {
    border-right: none;
    padding-right: 0;
  }
}

/* Reviews */
.sce-proof__reviews {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.sce-proof__review {
  background: var(--sce-bg-section);
  border: 1px solid var(--sce-border-light);
  padding: 1.5rem;
  box-shadow: var(--sce-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sce-proof__review-stars {
  color: var(--sce-warning);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.sce-proof__review-text {
  font-style: italic;
  color: var(--sce-text-secondary);
  line-height: 1.6;
}

.sce-proof__review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sce-proof__review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sce-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.sce-proof__review-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--sce-text-secondary);
}

@media (min-width: 768px) {
  .sce-proof__reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1080px) {
  .sce-proof {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   TRANSPARENCY / SYSTEM (system)
   ========================================================================== */

.sce-transparency {
  background: var(--sce-primary);
  color: #fff;
  padding: 3.5rem 0;
}

.sce-transparency__title {
  color: #fff;
  margin-bottom: 1rem;
}

.sce-transparency__lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* Timeline */
.sce-transparency__timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sce-transparency__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sce-transparency__step-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.sce-transparency__step-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sce-transparency__step-title {
  color: #fff;
}

.sce-transparency__step-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

@media (min-width: 1080px) {
  .sce-transparency__timeline {
    flex-direction: row;
    gap: 0;
    position: relative;
  }

  .sce-transparency__timeline::before {
    content: '';
    position: absolute;
    top: 0.875rem;
    left: 2rem;
    right: 2rem;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    z-index: 0;
  }

  .sce-transparency__step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }

  .sce-transparency__step-icon {
    background: var(--sce-primary);
    padding: 0 0.375rem;
  }
}

/* Table */
.sce-transparency__table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.sce-transparency__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.9375rem;
}

.sce-transparency__table th,
.sce-transparency__table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.sce-transparency__table thead {
  background: rgba(0, 0, 0, 0.2);
}

.sce-transparency__table thead th {
  font-weight: 700;
  color: #fff;
}

.sce-transparency__table tbody td {
  color: rgba(255, 255, 255, 0.9);
}

.sce-transparency__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Quote */
.sce-transparency__quote {
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.sce-transparency__quote footer {
  font-size: 0.875rem;
  font-style: normal;
  margin-top: 0.5rem;
  opacity: 0.75;
}

/* Badges */
.sce-transparency__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.sce-transparency__badges li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
}

@media (min-width: 1080px) {
  .sce-transparency {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   TERMS (warunki)
   ========================================================================== */

.sce-terms {
  background: var(--sce-bg-section);
  padding: 3.5rem 0;
}

.sce-terms__title {
  margin-bottom: 2rem;
  text-align: center;
}

.sce-terms__options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.sce-terms__option {
  border: 2px solid var(--sce-border-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sce-terms__option--a {
  border-color: var(--sce-primary);
}

.sce-terms__option-badge {
  display: inline-block;
  background: var(--sce-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  align-self: flex-start;
}

.sce-terms__option-title {
  color: var(--sce-text);
}

.sce-terms__option-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--sce-text-secondary);
}

.sce-terms__option-list strong {
  color: var(--sce-text);
}

.sce-terms__note {
  font-size: 0.875rem;
  color: var(--sce-text-secondary);
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .sce-terms__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 1080px) {
  .sce-terms {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.sce-faq {
  background: var(--sce-bg-page);
  padding: 3.5rem 0;
}

.sce-faq__inner {
  max-width: 800px;
}

.sce-faq__title {
  margin-bottom: 2rem;
}

.sce-faq__list {
  display: flex;
  flex-direction: column;
}

.sce-faq__item {
  border-bottom: 1px solid var(--sce-border-light);
}

.sce-faq__question {
  display: block;
}

.sce-faq__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sce-text);
  gap: 1rem;
}

.sce-faq__toggle:hover {
  color: var(--sce-primary);
}

.sce-faq__toggle-icon {
  color: var(--sce-primary);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.sce-faq__answer {
  padding-bottom: 1.25rem;
}

.sce-faq__answer p {
  color: var(--sce-text-secondary);
}

@media (min-width: 1080px) {
  .sce-faq {
    padding: 5rem 0;
  }
}

/* ==========================================================================
   SCARCITY (miejsce)
   ========================================================================== */

.sce-scarcity {
  background: var(--sce-bg-section);
  padding: 3.5rem 0;
  text-align: center;
}

.sce-scarcity__inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.sce-scarcity__title {
  margin-bottom: 0.25rem;
}

.sce-scarcity__text {
  color: var(--sce-text-secondary);
  text-align: center;
}

.sce-scarcity__text strong {
  color: var(--sce-text);
}

/* Meter */
.sce-scarcity__meter {
  margin: 0.75rem auto;
  max-width: 500px;
  width: 100%;
}

.sce-scarcity__meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--sce-text-secondary);
}

.sce-scarcity__meter-count {
  font-weight: 700;
  color: var(--sce-primary);
}

.sce-scarcity__meter-track {
  height: 8px;
  background: var(--sce-border-light);
}

.sce-scarcity__meter-fill {
  height: 100%;
  background: var(--sce-primary);
  transition: width var(--sce-transition);
}

/* Quote */
.sce-scarcity__quote {
  font-style: italic;
  color: var(--sce-text-secondary);
  border-left: 4px solid var(--sce-primary);
  padding-left: 1.25rem;
  text-align: left;
  max-width: 560px;
  width: 100%;
}

.sce-scarcity__quote footer {
  font-size: 0.875rem;
  font-style: normal;
  margin-top: 0.5rem;
}

.sce-scarcity__closing {
  font-size: 1rem;
  color: var(--sce-text-secondary);
}

@media (min-width: 1080px) {
  .sce-scarcity {
    padding: 5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sce-scarcity__meter-fill {
    transition: none;
  }
}

/* ==========================================================================
   REGISTER FORM (formularz)
   ========================================================================== */

.sce-register {
  background: var(--sce-primary);
  color: #fff;
  padding: 4rem 0;
}

.sce-register__header {
  margin-bottom: 2.5rem;
}

.sce-register__title {
  color: #fff;
  margin-bottom: 0.5rem;
}

.sce-register__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.sce-register__form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sce-field--full {
  grid-column: 1 / -1;
}

.sce-register__submit {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sce-register__privacy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.sce-register__success {
  margin-top: 1.5rem;
}

/* Alert success na ciemnym tle */
.sce-register .sce-alert--success {
  background: rgba(21, 128, 61, 0.2);
  border-color: #4ade80;
  color: #fff;
}

@media (min-width: 768px) {
  .sce-register__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (min-width: 1080px) {
  .sce-register {
    padding: 6rem 0;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.sce-footer {
  background: var(--sce-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 1.5rem;
}

.sce-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sce-footer__brand {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.sce-footer__brand strong {
  color: #fff;
}

.sce-footer__credentials {
  font-size: 0.8125rem;
  opacity: 0.7;
}

.sce-footer__contact,
.sce-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.sce-footer__link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.sce-footer__link:hover {
  color: #fff;
  text-decoration: underline;
}

.sce-footer__copy {
  font-size: 0.8125rem;
  opacity: 0.6;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .sce-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .sce-footer__copy {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   KLUB PARTNERSKI — nowe komponenty (rewrite 2026)
   ========================================================================== */

/* Hero — podwójna korzyść */
.sce-hero__dual-benefit {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1rem 0;
  font-size: 1.0625rem;
  line-height: 1.5;
}

/* Stage — sekcje etapów */
.sce-stage {
  background: var(--sce-bg-page);
  padding: 3.5rem 0;
}

.sce-stage--alt {
  background: var(--sce-bg-section);
}

.sce-stage__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.sce-stage__lead {
  color: var(--sce-text-secondary);
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 1080px) {
  .sce-stage {
    padding: 5rem 0;
  }
}

/* Steps — lead i closing (nowe) */
.sce-steps__lead {
  color: var(--sce-text-secondary);
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.6;
}

.sce-steps__closing {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--sce-primary-light);
  border-left: 3px solid var(--sce-primary);
  font-weight: 700;
  color: var(--sce-primary);
  max-width: 720px;
}

@media (min-width: 768px) {
  .sce-steps__closing {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Passive calc — slider value display */
.sce-passive-calc__field-value {
  display: inline-block;
  font-weight: 700;
  color: var(--sce-primary);
  min-width: 2rem;
  margin-left: 0.5rem;
}

/* Founder bez zdjęcia — pełna szerokość */
.sce-founder--text-only .sce-founder__inner {
  display: block;
}

.sce-founder--text-only .sce-founder__content {
  max-width: 800px;
}

/* Founder — credentials line */
.sce-founder__credentials {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--sce-text-secondary);
  border-top: 1px solid var(--sce-border-light);
  padding-top: 1rem;
}
