.page-home {
  position: relative;
  overflow-x: hidden;
}

.page-home::before,
.page-home::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(0px);
}

.page-home::before {
  top: -120px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgb(var(--zoa-blue) / 0.35), transparent 70%);
}

.page-home::after {
  bottom: -160px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgb(var(--zoa-green) / 0.3), transparent 70%);
}

.container {
  width: min(var(--max-width), 100% - 48px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 24px;
}

.section-lead {
  margin-top: 16px;
  color: rgb(var(--zoa-slate));
  font-size: 1.1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgb(var(--zoa-green));
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(255 255 255 / 0.9);
  border-bottom: 1px solid rgb(210 220 230 / 0.6);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: rgb(var(--zoa-slate));
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgb(var(--zoa-blue));
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: rgb(var(--zoa-green));
  color: rgb(var(--zoa-white));
  box-shadow: 0 16px 30px rgb(var(--zoa-green) / 0.3);
}

.btn--primary:hover {
  background: rgb(62 143 88);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgb(var(--zoa-white));
  border-color: rgb(var(--zoa-blue) / 0.3);
  color: rgb(var(--zoa-dark));
}

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

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding-top: 120px;
  padding-bottom: 110px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero__lead {
  margin-top: 18px;
  font-size: 1.15rem;
  color: rgb(var(--zoa-slate));
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgb(var(--zoa-white));
  border: 1px solid rgb(var(--zoa-blue) / 0.25);
  font-size: 0.85rem;
  color: rgb(var(--zoa-slate));
  box-shadow: 0 8px 20px rgb(12 32 48 / 0.06);
}

.panel-card {
  position: relative;
  background: rgb(var(--zoa-white));
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgb(var(--zoa-blue) / 0.15);
  overflow: hidden;
}

.panel-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgb(var(--zoa-blue) / 0.45), transparent 70%);
}

.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: rgb(var(--zoa-slate));
  margin-bottom: 12px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: rgb(var(--zoa-slate));
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(var(--zoa-blue)), rgb(var(--zoa-green)));
}

.panel-highlight {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgb(var(--zoa-blue) / 0.18), rgb(var(--zoa-green) / 0.18));
  border: 1px solid rgb(var(--zoa-green) / 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.panel-highlight__title {
  font-weight: 600;
}

.panel-highlight__copy {
  color: rgb(var(--zoa-slate));
  margin-top: 6px;
  font-size: 0.95rem;
}

.link {
  color: rgb(var(--zoa-green));
  font-weight: 600;
}

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

.card {
  background: rgb(var(--zoa-white));
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgb(var(--zoa-blue) / 0.15);
  box-shadow: 0 16px 34px rgb(12 32 48 / 0.08);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(var(--zoa-blue)), rgb(var(--zoa-green)));
  color: rgb(var(--zoa-white));
  font-weight: 600;
  margin-bottom: 16px;
}

.card p {
  margin-top: 12px;
  color: rgb(var(--zoa-slate));
}

.trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.list-check li {
  position: relative;
  padding-left: 30px;
  color: rgb(var(--zoa-slate));
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid rgb(var(--zoa-green));
}

.trust-card {
  margin-top: 24px;
  background: rgb(var(--zoa-white));
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgb(var(--zoa-blue) / 0.15);
  box-shadow: var(--shadow-sm);
}

.trust-card p {
  margin-top: 12px;
  color: rgb(var(--zoa-slate));
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgb(var(--zoa-white));
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgb(var(--zoa-blue) / 0.15);
  box-shadow: 0 12px 24px rgb(12 32 48 / 0.08);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgb(var(--zoa-blue));
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: rgb(var(--zoa-slate));
}

.contact {
  padding-bottom: 120px;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  color: rgb(var(--zoa-slate));
}

.contact-details strong {
  display: block;
  font-size: 0.9rem;
  color: rgb(var(--zoa-dark));
}

.contact-card {
  background: rgb(var(--zoa-white));
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgb(var(--zoa-blue) / 0.15);
  box-shadow: var(--shadow-sm);
}

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

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgb(var(--zoa-slate));
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgb(210 220 230);
  background: rgb(252 253 254);
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgb(210 220 230 / 0.6);
  color: rgb(var(--zoa-slate));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 960px) {
  .header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__grid,
  .trust__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 96px;
  }

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

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

  .btn {
    width: 100%;
  }
}

.accreditations {
  padding-top: 20px;
  padding-bottom: 40px;
}

.accreditations__head {
  text-align: center;
  margin: 0 auto 28px;
}

.accreditations__strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 24px;
  padding: 24px 28px;
  background: rgb(var(--zoa-white));
  border-radius: var(--radius-lg);
  border: 1px solid rgb(var(--zoa-blue) / 0.15);
  box-shadow: 0 18px 40px rgb(12 32 48 / 0.08);
  align-items: center;
}

.accreditation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditation img {
  max-height: 48px;
  width: auto;
  filter: saturate(0.9);
  opacity: 0.9;
}

@media (max-width: 960px) {
  .accreditations__strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .accreditations {
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .accreditations__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px;
    gap: 16px;
  }

  .accreditation img {
    max-height: 42px;
  }
}

.hero__panel {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgb(var(--zoa-blue) / 0.12), rgb(var(--zoa-green) / 0.12));
  border: 1px solid rgb(var(--zoa-blue) / 0.18);
}

.hero__illustration img {
  width: min(320px, 100%);
  height: auto;
}

.card-illustration {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.step-illustration {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
}

@media (max-width: 960px) {
  .hero__illustration img {
    width: min(280px, 100%);
  }
}

@media (max-width: 640px) {
  .hero__illustration {
    padding: 14px;
  }

  .card-illustration {
    width: 44px;
    height: 44px;
  }

  .step-illustration {
    width: 32px;
    height: 32px;
  }
}

.hero__content {
  position: relative;
  isolation: isolate;
}

.hero__content > *:not(.hero__illustration) {
  position: relative;
  z-index: 1;
}

.hero__illustration {
  position: absolute;
  top: -40px;
  right: -40px;
  width: min(360px, 60vw);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  background: none;
  border: none;
  padding: 0;
}

.hero__illustration img {
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .hero__illustration {
    top: -24px;
    right: -24px;
    width: min(320px, 70vw);
    opacity: 0.28;
  }
}

@media (max-width: 640px) {
  .hero__illustration {
    top: -10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(260px, 80vw);
    opacity: 0.22;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}


@media (max-width: 640px) {
  .brand {
    gap: 10px;
  }

}
