@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --color-bg: #f6fbf7;
  --color-surface: #ffffff;
  --color-primary: #36c9a3;
  --color-text: #1f2a2e;
  --color-text-muted: #6b7780;
  --color-border: #e6ecef;
  --color-shadow-soft: rgba(17, 24, 39, 0.08);
}

body,
button,
input,
textarea {
  font-family: "Quicksand", sans-serif;
}
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover {
  color: #28b992;
}

.jolimaner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.jolimaner-header__brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}
.jolimaner-header__brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
}
.jolimaner-header__brand-text {
  font-weight: 700;
}
.jolimaner-header__nav-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.jolimaner-header__nav-link {
  color: var(--color-text);
  opacity: 0.85;
  transition:
    opacity 0.18s ease,
    color 0.18s ease;
}
.jolimaner-header__nav-link:hover {
  color: var(--color-primary);
  opacity: 1;
}

.jolimaner-hero,
.jolimaner-onboard,
.jolimaner-levels,
.jolimaner-mechanics,
.jolimaner-description,
.jolimaner-features,
.jolimaner-gallery,
.jolimaner-faq,
.jolimaner-testimonials,
.jolimaner-finalcta,
.jolimaner-reach,
.jolimaner-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.jolimaner-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.jolimaner-hero__tag {
  background: #e9fbf6;
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
}
.jolimaner-hero__title {
  font-size: 40px;
  line-height: 1.15;
  margin: 8px 0 10px;
}
.jolimaner-hero__lead {
  color: var(--color-text-muted);
  max-width: 820px;
  margin-bottom: 18px;
}
.jolimaner-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.jolimaner-hero__cta-link,
.jolimaner-finalcta__cta {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}
.jolimaner-hero__cta-link:hover,
.jolimaner-finalcta__cta:hover {
  background: #28b992;
  transform: translateY(-1px);
}

.jolimaner-onboard__title,
.jolimaner-levels__title,
.jolimaner-mechanics__title,
.jolimaner-description__title,
.jolimaner-features__title,
.jolimaner-gallery__title,
.jolimaner-faq__title,
.jolimaner-testimonials__title,
.jolimaner-finalcta__title,
.jolimaner-reach__title,
.jolimaner-legal__title {
  font-size: 28px;
  margin: 0 0 14px;
}
.jolimaner-legal__subtitle {
  font-size: 20px;
  margin: 16px 0 8px;
}

.jolimaner-onboard__stepper {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 12px;
  padding: 0;
}
.jolimaner-onboard__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
}
.jolimaner-onboard__step-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9fbf6;
  color: var(--color-primary);
  font-weight: 700;
}

.jolimaner-levels__intro {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.jolimaner-levels__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.jolimaner-levels__item {
  background: var(--color-surface);
  border-left: 3px solid var(--color-primary);
  border-radius: 10px;
  padding: 10px 12px;
}

.jolimaner-mechanics__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.jolimaner-mechanics__image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px var(--color-shadow-soft);
}
.jolimaner-mechanics__image {
  display: block;
  width: 100%;
  height: auto;
}
.jolimaner-mechanics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.jolimaner-mechanics__item {
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
}
.jolimaner-mechanics__item:last-child {
  border-bottom: 0;
}

.jolimaner-description__text {
  margin: 10px 0;
  color: #223037;
}

.jolimaner-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jolimaner-features__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.jolimaner-features__item:hover {
  transform: translateY(-2px);
  border-color: #d7ebe6;
}
.jolimaner-features__item-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.jolimaner-features__item-desc {
  color: var(--color-text-muted);
}

.jolimaner-gallery__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jolimaner-gallery__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.jolimaner-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.18s ease;
}
.jolimaner-gallery__item:hover .jolimaner-gallery__img {
  transform: scale(1.02);
}
.jolimaner-gallery__caption {
  padding: 8px 10px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.jolimaner-faq__list {
  display: grid;
  gap: 10px;
}
.jolimaner-faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.jolimaner-faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease;
}
.jolimaner-faq__question:hover {
  background: #f4faf7;
}
.jolimaner-faq__question[aria-expanded="true"] {
  background: #ecfaf6;
}
.jolimaner-faq__answer {
  padding: 0 16px 14px;
  color: var(--color-text-muted);
}

.jolimaner-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jolimaner-testimonials__card {
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 10px 28px var(--color-shadow-soft);
  padding: 16px;
}
.jolimaner-testimonials__quote {
  margin-bottom: 8px;
}
.jolimaner-testimonials__persona {
  color: var(--color-text-muted);
  font-size: 14px;
}

.jolimaner-finalcta__inner {
  background: linear-gradient(180deg, #e9fbf6, rgba(233, 251, 246, 0.6));
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.jolimaner-finalcta__desc {
  color: var(--color-text-muted);
  margin: 6px 0 12px;
}

.jolimaner-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 18px 20px;
}
.jolimaner-footer__nav-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.jolimaner-footer__nav-link {
  color: var(--color-text-muted);
  transition: color 0.18s ease;
}
.jolimaner-footer__nav-link:hover {
  color: var(--color-primary);
}
.jolimaner-footer__copyright {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

.jolimaner-reach__intro {
  margin-bottom: 12px;
}
.jolimaner-reach__block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  margin-top: 14px;
}
.jolimaner-reach__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.jolimaner-reach__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border);
}
.jolimaner-reach__label {
  color: var(--color-text-muted);
}
.jolimaner-reach__value a {
  font-weight: 600;
}

.jolimaner-legal__inner {
  max-width: 900px;
  margin: 0 auto;
}
.jolimaner-legal__text {
  margin: 10px 0;
}
.jolimaner-legal__list {
  padding-left: 18px;
  margin: 8px 0;
  display: grid;
  gap: 6px;
}
.jolimaner-legal__link {
  font-weight: 600;
}

.privacy-pane {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  max-width: 960px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px var(--color-shadow-soft);
  border-radius: 14px;
  padding: 16px;
}
.privacy-pane--hidden {
  display: none;
}
.privacy-pane__badge {
  display: inline-block;
  background: #e9fbf6;
  color: var(--color-primary);
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 6px;
}
.privacy-pane__title {
  margin: 0 0 6px;
  font-size: 20px;
}
.privacy-pane__body {
  margin-top: 6px;
}
.privacy-pane__categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.privacy-pane__category p {
  margin: 6px 0 0;
  color: var(--color-text-muted);
}
.privacy-pane__always-on {
  color: var(--color-text-muted);
  font-size: 12px;
}
.privacy-pane__switch {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.privacy-pane__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
.privacy-pane__policy-link {
  color: var(--color-primary);
  font-weight: 600;
}
.privacy-pane__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.privacy-pane__btn {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.privacy-pane__btn:hover {
  background: #f4faf7;
}
.privacy-pane__btn--accept {
  background: var(--color-primary);
  color: #fff;
  border-color: transparent;
}
.privacy-pane__btn--accept:hover {
  background: #28b992;
  transform: translateY(-1px);
}
.privacy-pane__btn--save {
  border-color: #bdeee0;
  color: #169d85;
}
.privacy-pane__btn--reject {
  color: var(--color-text-muted);
}

@media (max-width: 1199px) {
  .jolimaner-hero__title {
    font-size: 34px;
  }
  .jolimaner-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jolimaner-gallery__images {
    grid-template-columns: repeat(2, 1fr);
  }
  .jolimaner-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jolimaner-mechanics__split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .jolimaner-header__nav-list {
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .jolimaner-hero,
  .jolimaner-onboard,
  .jolimaner-levels,
  .jolimaner-mechanics,
  .jolimaner-description,
  .jolimaner-features,
  .jolimaner-gallery,
  .jolimaner-faq,
  .jolimaner-testimonials,
  .jolimaner-finalcta,
  .jolimaner-reach,
  .jolimaner-legal {
    padding: 40px 16px;
  }
  .jolimaner-hero__title {
    font-size: 28px;
  }
  .jolimaner-hero__cta-link,
  .jolimaner-finalcta__cta {
    width: 100%;
    text-align: center;
  }
  .jolimaner-mechanics__split {
    grid-template-columns: 1fr;
  }
  .jolimaner-features__grid,
  .jolimaner-gallery__images,
  .jolimaner-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .jolimaner-reach__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .privacy-pane {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }
  .privacy-pane__actions {
    width: 100%;
  }
  .privacy-pane__btn {
    flex: 1;
  }
}
