/* =====================================================
   COMPONENTS.CSS

   Wszystkie komponenty aplikacji.

   Przykłady:

   - navbar
   - hero
   - buttons
   - cards
   - inputs
   - modal
   - footer
   - dashboard
   - pricing
   - faq

   Wszystko co użytkownik widzi jako gotowy element UI.

===================================================== */

/* =====================================================
                        NAVBAR
===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: 0;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);

  z-index: 300;
}

.navbar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar__logo img {
  width: 120px;
}

.navbar-menu {
  display: none;
}

.navbar__menu a,
.navbar__login a {
  font-size: 1.25rem;
}

.mobile-menu__nav a {
  font-size: 1.25rem;
}

.burger {
  width: 48px;
  height: 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;

  background: none;
  border: none;
  cursor: pointer;

  z-index: 200;
}

.burger span {
  width: 28px;
  height: 2px;

  background: var(--text-primary);

  border-radius: 999px;

  transition: all 0.35s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100dvh;

  padding: 40px;

  background: var(--bg-card);
  box-shadow: var(--shadow-lg);

  transform: translateX(100%);
  opacity: 0.4;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;

  z-index: 100;
}

.mobile-menu__nav {
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);

  transition: 0.2s;
}

.navbar__menu,
.navbar__login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);

  list-style: none;
}

.navbar__menu li a,
.navbar__login li a {
  opacity: 0;

  transform: translateX(25px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mobile-menu.active {
  transform: translateX(0);

  opacity: 1;
}

.mobile-menu.active .mobile-menu__nav a {
  opacity: 1;

  transform: translateX(0);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 32, 56, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 90;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

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

.hero {
  position: relative;

  overflow: hidden;

  min-height: calc(100vh - 68px);

  display: flex;
  align-items: center;

  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
}

.hero::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background: #00a86b;

  filter: blur(180px);

  opacity: 0.18;

  top: -250px;
  right: -180px;

  animation: floatOne 14s ease-in-out infinite;
}

.hero::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: #123458;

  filter: blur(180px);

  opacity: 0.14;

  bottom: -180px;
  left: -120px;

  animation: floatTwo 18s ease-in-out infinite;
}

.hero__wrapper {
  display: grid;

  grid-template-columns: 1fr;

  gap: 80px;

  position: relative;

  z-index: 5;
}

.hero__badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.7);

  font-size: 0.85rem;

  backdrop-filter: blur(10px);

  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 5rem);

  line-height: 1.05;

  font-weight: 800;

  margin-bottom: 24px;
}

.hero__description {
  max-width: 650px;

  font-size: 1.1rem;

  line-height: 1.8;

  color: var(--text-secondary);

  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 28px;

  border-radius: 14px;

  font-size: 1rem;
  font-weight: 600;

  transition: 0.25s;
}

.btn-primary {
  background: var(--secondary);

  color: white;
}

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

  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: white;

  color: var(--text-primary);

  border: 1px solid var(--border);
}

@keyframes floatOne {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-50px, 30px) scale(1.08);
  }

  50% {
    transform: translate(-100px, 80px) scale(1.15);
  }

  75% {
    transform: translate(-40px, 40px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatTwo {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(60px, -20px) scale(1.05);
  }

  50% {
    transform: translate(120px, -80px) scale(1.18);
  }

  75% {
    transform: translate(70px, -30px) scale(1.08);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* =====================================================
                        DASHBOARD PREVIEW
===================================================== */

.hero__dashboard {
  display: none;
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(221, 230, 238, 0.9);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.dashboard-preview__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 700;
}

.dashboard-preview__status {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 168, 107, 0.12);
  color: var(--secondary);
  font-size: 0.8rem;
}

.dashboard-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-card,
.dashboard-task,
.dashboard-progress {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.dashboard-card strong {
  display: block;
  font-size: 2rem;
  margin: 8px 0;
}

.dashboard-card p,
.dashboard-task p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.dashboard-task {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.dashboard-task strong {
  display: block;
  margin: 6px 0;
}

.dashboard-task__badge {
  height: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.dashboard-progress__text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dashboard-progress__bar {
  height: 10px;
  background: var(--bg-secondary);
  border-radius: 999px;
  overflow: hidden;
}

.dashboard-progress__bar span {
  display: block;
  width: 86%;
  height: 100%;
  background: var(--secondary);
  border-radius: inherit;
}

/* Desktop hero layout */
@media (min-width: 992px) {
  .hero__wrapper {
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
  }

  .hero__dashboard {
    display: block;
    transform: rotate(2deg);
  }
}

/* =====================================================
                        WHY VERIQO
===================================================== */

.why-veriqo {
  position: relative;

  background-image:
    linear-gradient(rgba(18, 52, 88, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 52, 88, 0.04) 1px, transparent 1px);

  background-size: 40px 40px;
}

.why-veriqo::before {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  right: -120px;
  top: 50px;

  border-radius: 50%;

  background: rgba(56, 181, 109, 0.08);

  filter: blur(140px);

  pointer-events: none;
}

.section-badge {
  display: inline-flex;
  padding: 10px 18px;
  margin-bottom: var(--space-5);

  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;

  background: rgba(0, 168, 107, 0.16);
  color: var(--secondary-dark);
}

.section-header {
  max-width: 720px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.section-header h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
}

.why-veriqo__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.why-veriqo__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);

  padding: 32px;
  width: 100%;

  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 168, 107, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.why-veriqo__card i {
  width: 64px;
  height: 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: rgba(0, 168, 107, 0.12);
  color: var(--secondary-dark);

  font-size: 32px;
}

.why-veriqo__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.why-veriqo__card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.why-veriqo__card-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);

  width: 100%;
}

@media (min-width: 992px) {
  .why-veriqo__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================================================
                        ROADMAP
===================================================== */

.roadmap {
  position: relative;
  overflow: hidden;

  background: #fff;
}

.roadmap__list {
  position: relative;

  display: flex;
  flex-direction: column;

  gap: 40px;

  max-width: 850px;

  margin: 70px auto 0;
}

.roadmap__list::before {
  content: "";

  position: absolute;

  left: 26px;

  top: 0;
  bottom: 0;

  width: 2px;

  background: rgba(18, 52, 88, 0.08);
}

.roadmap__item {
  display: flex;

  gap: 28px;

  position: relative;
}

.roadmap__marker {
  width: 54px;
  height: 54px;

  min-width: 54px;

  border-radius: 50%;

  display: flex;

  justify-content: center;
  align-items: center;

  background: white;

  border: 2px solid rgba(18, 52, 88, 0.12);

  box-shadow: 0 10px 30px rgba(18, 52, 88, 0.08);

  z-index: 2;
}

.roadmap__marker i {
  font-size: 24px;

  color: var(--primary);
}

.roadmap__content {
  flex: 1;

  background: white;

  padding: 28px;

  border-radius: 18px;

  border: 1px solid rgba(18, 52, 88, 0.08);

  box-shadow: 0 12px 40px rgba(18, 52, 88, 0.06);

  transition: 0.35s;
}

.roadmap__content:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 50px rgba(18, 52, 88, 0.1);
}

.roadmap__step {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--secondary-dark);

  font-size: 0.9rem;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.roadmap__content h3 {
  margin-bottom: 14px;
}

.roadmap__status {
  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(56, 181, 109, 0.12);

  color: #1e8c52;

  font-weight: 600;

  font-size: 0.8rem;
}

.roadmap__item--completed .roadmap__marker {
  background: #38b56d;

  border: none;
}

.roadmap__item--completed i {
  color: white;
}

.roadmap__item--current .roadmap__marker {
  background: #123458;

  border: none;

  box-shadow:
    0 0 0 8px rgba(56, 181, 109, 0.15),
    0 20px 40px rgba(18, 52, 88, 0.18);
}

.roadmap__item--current i {
  color: white;
}

.roadmap__item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.roadmap__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.roadmap__item--future .roadmap__marker {
  background: white;
  border: 2px solid rgba(18, 52, 88, 0.12);
}

.roadmap__item--future i {
  color: rgba(18, 52, 88, 0.4);
}

/* =====================================================
                        FEATURES
===================================================== */

.features {
  position: relative;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.features::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left: -120px;
  bottom: -80px;

  border-radius: 50%;

  background: rgba(56, 181, 109, 0.08);

  filter: blur(140px);

  pointer-events: none;
}

.features__grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 24px;
}

.feature-card {
  position: relative;

  display: flex;
  flex-direction: column;

  gap: var(--space-4);

  padding: 32px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(16px);

  border: 1px solid rgba(18, 52, 88, 0.08);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);

  border-color: rgba(56, 181, 109, 0.35);

  box-shadow: 0 18px 45px rgba(18, 52, 88, 0.12);
}

.feature-card__icon {
  width: 68px;
  height: 68px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 20px;

  background: rgba(56, 181, 109, 0.12);

  color: var(--secondary-dark);

  font-size: 32px;

  transition: 0.35s;
}

.feature-card:hover .feature-card__icon {
  background: var(--secondary);

  color: white;

  transform: rotate(-8deg) scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;

  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);

  line-height: 1.7;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card__badge {
  position: absolute;

  top: 24px;
  right: 24px;

  display: inline-flex;
  align-items: center;

  padding: 6px 12px;

  border-radius: 999px;

  background: rgba(56, 181, 109, 0.12);

  color: var(--secondary-dark);

  font-size: 0.75rem;
  font-weight: 600;
}

/* =====================================================
                        TESTERS
===================================================== */

.testers {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 55%,
    var(--secondary-dark) 100%
  );

  color: var(--text-light);
}

.testers::before,
.testers::after {
  content: "";
  position: absolute;

  border-radius: 50%;
  pointer-events: none;
}

.testers::before {
  width: 420px;
  height: 420px;

  top: -180px;
  right: -120px;

  background: rgba(52, 211, 153, 0.2);
  filter: blur(120px);
}

.testers::after {
  width: 360px;
  height: 360px;

  left: -140px;
  bottom: -180px;

  background: rgba(255, 255, 255, 0.1);
  filter: blur(130px);
}

.testers__wrapper {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.testers__content {
  text-align: center;
}

.section-badge--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.testers__content h2 {
  max-width: 720px;
  margin: 0 auto var(--space-5);

  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 750;
}

.testers__content > p {
  max-width: 680px;
  margin: 0 auto var(--space-7);

  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.testers__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.btn--outline-light {
  color: var(--text-light);

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);

  backdrop-filter: blur(10px);
}

.btn--light:hover,
.btn--outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.testers__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.testers__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);

  padding: 24px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);

  backdrop-filter: blur(16px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.testers__step:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(52, 211, 153, 0.45);
}

.testers__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: rgba(52, 211, 153, 0.18);
  color: var(--secondary-light);

  font-size: 26px;
}

.testers__step-content h3 {
  margin-bottom: var(--space-2);

  font-size: 1.1rem;
  font-weight: 700;
}

.testers__step-content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Tablet */
@media (min-width: 768px) {
  .testers__actions {
    flex-direction: row;
    justify-content: center;
  }

  .testers__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .testers__step {
    flex-direction: column;
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .testers__wrapper {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: var(--space-9);
  }

  .testers__content {
    text-align: left;
  }

  .testers__content h2,
  .testers__content > p {
    margin-left: 0;
    margin-right: 0;
  }

  .testers__actions {
    justify-content: flex-start;
  }

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

  .testers__step {
    flex-direction: row;
  }
}

/* =====================================================
                        SURVEY
===================================================== */

.survey {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(56, 181, 109, 0.1),
      transparent 35%
    ),
    var(--bg-primary);
}

.survey__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.survey__content {
  text-align: center;
}

.survey__content h2 {
  margin-bottom: var(--space-5);

  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 750;
}

.survey__content > p {
  margin-bottom: var(--space-6);

  color: var(--text-secondary);
  line-height: 1.8;
}

.survey__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);

  margin: 0;
  padding: 0;

  list-style: none;
  text-align: left;
}

.survey__benefits li {
  position: relative;

  padding-left: 34px;

  color: var(--text-secondary);
  font-weight: 500;
}

.survey__benefits li::before {
  content: "✓";

  position: absolute;
  top: 0;
  left: 0;

  width: 24px;
  height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(56, 181, 109, 0.14);
  color: var(--secondary-dark);

  font-size: 0.8rem;
  font-weight: 800;
}

.survey__form {
  padding: 28px;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 52, 88, 0.08);
  border-radius: var(--radius-xl);

  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.survey__form form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  background: var(--bg-card);
  color: var(--text-primary);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  font: inherit;

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--secondary);
  box-shadow: 0 0 0 4px var(--focus);
}

.survey__form .btn {
  width: 100%;
  border: none;
}

/* Pole antyspamowe */
.form-honeypot {
  position: absolute;

  width: 1px;
  height: 1px;

  margin: -1px;
  padding: 0;

  overflow: hidden;
  clip: rect(0 0 0 0);

  border: 0;
}

.survey__farm-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);

  padding: 24px;

  background: rgba(56, 181, 109, 0.06);
  border: 1px solid rgba(56, 181, 109, 0.16);
  border-radius: var(--radius-lg);
}

.survey__farm-details[hidden] {
  display: none;
}

.form-group--checkboxes {
  margin: 0;
  padding: 0;

  border: 0;
}

.form-group--checkboxes legend {
  margin-bottom: var(--space-3);

  font-size: 0.95rem;
  font-weight: 600;
}

.form-group--checkboxes label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);

  padding: 8px 0;

  color: var(--text-secondary);
  font-weight: 400;
  cursor: pointer;
}

.form-group--checkboxes input {
  width: 18px;
  height: 18px;
  margin-top: 2px;

  accent-color: var(--secondary);
}

.survey__other-problem {
  margin-top: var(--space-4);

  animation: fadeIn 0.25s ease;
}

.form-group--checkbox {
  margin-top: var(--space-2);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  cursor: pointer;
}

.checkbox input {
  display: none;
}

.checkbox__custom {
  width: 22px;
  height: 22px;
  min-width: 22px;

  margin-top: 2px;

  border-radius: 7px;
  border: 2px solid var(--border);

  background: white;

  transition: var(--transition);

  position: relative;
}

.checkbox__custom::after {
  content: "";

  position: absolute;

  left: 6px;
  top: 1px;

  width: 6px;
  height: 12px;

  border: solid white;
  border-width: 0 2px 2px 0;

  transform: rotate(45deg) scale(0);

  transition: var(--transition);
}

.checkbox input:checked + .checkbox__custom {
  background: var(--secondary);
  border-color: var(--secondary);
}

.checkbox input:checked + .checkbox__custom::after {
  transform: rotate(45deg) scale(1);
}

.checkbox__text {
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 992px) {
  .survey__wrapper {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: var(--space-9);
  }

  .survey__content {
    position: sticky;
    top: 120px;
    text-align: left;
  }
}

/* =====================================================
                        DZIEKUJEMY.HTML
===================================================== */

.thank-you {
  min-height: 100dvh;

  display: grid;
  place-items: center;

  padding: 40px 20px;

  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
}

.thank-you .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.thank-you__content {
  width: min(100%, 680px);
  margin: 0 auto;

  text-align: center;
}

.thank-you .section-badge {
  margin-bottom: var(--space-5);
}

.thank-you__icon {
  width: 110px;
  height: 110px;

  display: grid;
  place-items: center;

  margin: 0 auto var(--space-5);

  border-radius: 50%;

  background: rgba(56, 181, 109, 0.12);
  color: var(--secondary);

  font-size: 3.5rem;
}

.thank-you__content h1 {
  margin-bottom: var(--space-5);

  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
}

.thank-you__content p {
  max-width: 600px;
  margin: 0 auto var(--space-6);

  color: var(--text-secondary);
  line-height: 1.8;
}
