.home-page {
  --home-surface: rgba(255, 255, 255, 0.82);
  --home-surface-strong: rgba(255, 255, 255, 0.96);
  --home-border: rgba(148, 163, 184, 0.18);
  --home-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --home-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.06);
  --home-hero-glow: radial-gradient(circle at top left, rgba(28, 181, 124, 0.18), transparent 36%),
    radial-gradient(circle at 85% 10%, rgba(24, 94, 224, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fffb 0%, #ffffff 56%, #f5f7fb 100%);
  --home-dark-surface: rgba(15, 23, 42, 0.78);
  --home-dark-border: rgba(148, 163, 184, 0.16);
  --home-dark-shadow: 0 28px 80px rgba(2, 6, 23, 0.38);
}

[data-theme="dark"] .home-page {
  --home-surface: var(--home-dark-surface);
  --home-surface-strong: rgba(15, 23, 42, 0.94);
  --home-border: var(--home-dark-border);
  --home-shadow: var(--home-dark-shadow);
  --home-shadow-soft: 0 18px 44px rgba(2, 6, 23, 0.32);
  --home-hero-glow: radial-gradient(circle at top left, rgba(28, 181, 124, 0.16), transparent 36%),
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.14), transparent 26%),
    linear-gradient(180deg, #0f172a 0%, #111827 54%, #0f172a 100%);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.03em;
}

.home-page main {
  overflow: clip;
}

.home-page section {
  position: relative;
}

.home-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-page .section-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(28, 181, 124, 0.12);
}

.home-page .section-kicker--light {
  color: rgba(255, 255, 255, 0.92);
}

.home-page .section-kicker--light::before {
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.home-page .section-heading {
  margin-bottom: 3rem;
}

.home-page .section-heading--center {
  
  margin: 0 auto 3rem;
  
}

.home-page .section-heading--split {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.home-page .section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  color: var(--text);
}

.home-page .section-intro {
  max-width: 720px;
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-light);
}

.home-hero {
  min-height: calc(100svh - var(--header-height));
  padding: 2.25rem 0 3rem;
  background: var(--home-hero-glow);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 2.5rem auto auto -10rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(28, 181, 124, 0.08);
  filter: blur(10px);
  pointer-events: none;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 2.25rem;
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 5.25rem);
}

.home-hero__content {
  position: relative;
  z-index: 1;
}

.home-hero__content h1 {
  /* max-width: 13ch; */
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--text);
}

.home-hero__subtitle {
  max-width: 640px;
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-light);
}

.home-hero__contexts,
.home-hero__proof,
.context-card__list,
.home-problem__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-hero__contexts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.home-hero__contexts li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.35);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

[data-theme="dark"] .home-hero__contexts li {
  background: rgba(15, 23, 42, 0.7);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.home-hero__proof {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.home-hero__proof li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
}

.home-hero__proof i,
.context-card__list li::before,
.home-problem__list li::before {
  color: var(--primary);
}

.home-hero__visual {
  position: relative;
  min-height: 22.5rem;
}

.home-hero__visual::before {
  content: "";
  position: absolute;
  inset: 1.8rem 1.7rem 1.2rem 2.5rem;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(28, 181, 124, 0.16), transparent 38%),
    radial-gradient(circle at 58% 72%, rgba(59, 130, 246, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

[data-theme="dark"] .home-hero__visual::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(28, 181, 124, 0.18), transparent 38%),
    radial-gradient(circle at 58% 72%, rgba(59, 130, 246, 0.14), transparent 42%),
    rgba(15, 23, 42, 0.34);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.home-hero__visual-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.home-hero__mockup {
  display: block;
  position: relative;
  z-index: 1;
  width: min(100%, 285px);
  margin: 0 auto;
  border-radius: 1.6rem;
  filter: drop-shadow(0 26px 44px rgba(15, 23, 42, 0.22));
}

.home-hero__floating-card {
  position: absolute;
  z-index: 2;
  max-width: 12.5rem;
  padding: 0.72rem 0.85rem;
  border-radius: 1rem;
  background: var(--home-surface-strong);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-soft);
}

.home-hero__floating-card strong,
.home-problem__label,
.context-card__problem,
.context-card__link,
.home-solution__number,
.home-trust__note {
  font-weight: 700;
}

.home-hero__floating-card span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.4;
}

.home-hero__floating-card--top {
  top: 2.4rem;
  right: 0.35rem;
}

.home-hero__floating-card--bottom {
  right: 0.85rem;
  bottom: 2.6rem;
}

.home-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: var(--primary);
  opacity: 0.72;
  animation: homeScrollBounce 2.2s ease-in-out infinite;
}

@keyframes homeScrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.home-problem,
.home-contexts,
.home-trust,
.home-faq {
  padding: 4.75rem 0;
}

.home-solution,
.home-benefits {
  padding: 4.75rem 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
}

[data-theme="dark"] .home-solution,
[data-theme="dark"] .home-benefits {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.88) 0%, rgba(15, 23, 42, 0.96) 100%);
}

.home-problem__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.home-problem__quotes,
.home-problem__resolution,
.home-solution__card,
.context-card,
.benefit-card,
.trust-card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow-soft);
  backdrop-filter: blur(14px);
}

.home-problem__quotes,
.home-problem__resolution {
  padding: 1.3rem;
  border-radius: 1.4rem;
}

.home-problem__quotes {
  display: grid;
  gap: 1rem;
}

.home-problem__quote {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 0.95rem;
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

[data-theme="dark"] .home-problem__quote {
  background: rgba(255, 255, 255, 0.04);
}

.home-problem__label {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-problem__list {
  display: grid;
  gap: 1rem;
}

.home-problem__list li,
.context-card__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  line-height: 1.6;
}

.context-card__list li::before,
.home-problem__list li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.home-solution__grid,
.home-contexts__grid,
.home-benefits__grid,
.home-trust__grid {
  display: grid;
  gap: 1.2rem;
}

.home-solution__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-solution__card {
  padding: 1.35rem;
  border-radius: 1.3rem;
}

.home-solution__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(28, 181, 124, 0.12);
  color: var(--primary);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.home-solution__card h3,
.benefit-card h3,
.trust-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: var(--text);
}

.home-solution__card p,
.benefit-card p,
.trust-card p,
.context-card__desc {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

.home-contexts__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.context-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.45rem;
}

.context-card__image {
  padding: 1rem 1rem 0;
}

.context-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.3rem;
}

.context-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
}

.context-card__tag {
  align-self: flex-start;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(28, 181, 124, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.context-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.context-card__problem {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.context-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--primary);
}

.context-card__link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
}

.home-benefits__grid,
.home-trust__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card,
.trust-card {
  padding: 1.35rem;
  border-radius: 1.25rem;
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: rgba(28, 181, 124, 0.12);
  color: var(--primary);
  font-size: 1.2rem;
}

.home-trust__note {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

.home-faq .faq-grid {
  
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.home-faq .faq-item {
  border: 1px solid var(--home-border);
  border-radius: 1.25rem;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-soft);
  overflow: hidden;
}

.home-faq .faq-item summary {
  padding: 1.2rem 1.35rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.home-faq .faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq .faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.home-faq .faq-item[open] summary::after {
  transform: rotate(180deg);
}

.home-faq .faq-answer {
  padding: 0 1.35rem 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.home-faq .faq-answer p {
  margin: 0;
}

.home-final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #27d88f 100%);
  color: #fff;
}

.home-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.home-final-cta h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.08;
  color: #fff;
}

.home-final-cta p {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.65;
}

.home-final-cta__button {
  justify-content: center;
  flex-shrink: 0;
  min-width: 220px;
  padding: 18px 30px;
  background: #ffffff;
  color: #103427;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 18px 36px rgba(10, 32, 23, 0.2);
}

.home-final-cta__button:hover {
  background: #ffffff;
  color: #0f2d21;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 42px rgba(10, 32, 23, 0.24);
}

.home-final-cta__button i {
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .home-final-cta__button {
    min-width: 0;
    width: 100%;
  }
}

@media (min-width: 900px) {
  .home-page .section-heading--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .home-page .section-heading--split .section-intro {
    justify-self: end;
    margin-top: 0;
  }
}

@media (max-width: 1100px) {
  .home-hero__grid,
  .home-problem__grid,
  .home-contexts__grid {
    grid-template-columns: 1fr;
  }

  .home-solution__grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .home-hero__grid {
    min-height: auto;
    gap: 1.35rem;
  }

  .home-hero__visual {
    display: none;
  }

  .home-contexts__grid {
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .home-benefits__grid,
  .home-trust__grid,
  .home-final-cta__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .home-final-cta__inner {
    justify-items: start;
  }

}

@media (max-height: 820px) and (min-width: 901px) {
  .home-hero {
    min-height: auto;
    padding: 1.75rem 0 2.4rem;
  }

  .home-hero__grid {
    min-height: auto;
  }

  .home-hero__content h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  }

  .home-hero__visual {
    min-height: 19.5rem;
  }

  .home-hero__mockup {
    width: min(100%, 245px);
  }

  .home-hero__floating-card--top {
    top: 1.8rem;
  }

  .home-hero__floating-card--bottom {
    bottom: 1.8rem;
  }
}

@media (max-width: 768px) {
  .home-problem,
  .home-solution,
  .home-contexts,
  .home-benefits,
  .home-trust,
  .home-faq {
    padding: 3.75rem 0;
  }

  .home-hero__actions,
  .home-hero__contexts {
    gap: 0.75rem;
  }

  .home-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-page .section-intro,
  .home-hero__subtitle {
    font-size: 0.98rem;
  }
}

@media (max-width: 560px) {
  .home-page .container {
    padding: 0 18px;
  }

  .home-hero {
    padding: 1.5rem 0 2.2rem;
  }

  .home-hero__grid {
    gap: 1.25rem;
  }

  .home-hero__content h1 {
    max-width: none;
    font-size: 1.95rem;
  }

  .home-hero__contexts li,
  .home-problem__quote,
  .home-problem__quotes,
  .home-problem__resolution,
  .home-solution__card,
  .context-card__content,
  .benefit-card,
  .trust-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-hero__actions {
    gap: 0.65rem;
  }

  .home-hero__scroll {
    display: none;
  }

  .home-final-cta {
    padding: 3.4rem 0;
  }
}
