/* ===========================
   MONKEY MIND – BRAND STYLESHEET
   =========================== */

:root {
  --teal:       #00BCBC;
  --teal-dark:  #009999;
  --teal-light: #e0fafa;
  --dark:       #1a1a1a;
  --dark-alt:   #2a2a2a;
  --coral:      #FF6B6B;
  --coral-light:#fff0ef;
  --violet:      #7B5EA7;
  --violet-dark: #624888;
  --violet-light:#f3eeff;
  --mid:        #555;
  --light:      #f7f9f9;
  --white:      #ffffff;
  --font-script:'Pacifico', cursive;
  --font-body:  'Inter', sans-serif;
  --radius:     16px;
  --shadow:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--white { background: var(--white); color: var(--teal); }
.btn--white:hover { background: var(--teal-light); }
.btn--outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--teal); }
.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,188,188,0.4); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--dark-alt); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn--ghost-dark:hover { background: var(--dark); color: var(--white); }
.btn--full { width: 100%; text-align: center; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 1.15rem;
  text-align: center;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-sub--light { color: rgba(255,255,255,0.85); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 16px 0;
}
.nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 10px 0;
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav__links a {
  color: var(--white);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
  font-size: 0.95rem;
}
.nav__links a:hover { background: rgba(255,255,255,0.12); }
.nav__cta {
  background: var(--teal) !important;
  padding: 10px 20px !important;
}
.nav__cta:hover { background: var(--teal-dark) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 60%, rgba(0,188,188,0.35) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 20%, rgba(0,188,188,0.15) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 80px;
}
.hero__logo {
  height: 160px;
  width: auto;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero__title span { color: var(--teal); }
.hero__sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--light);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid transparent;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.service-card__icon { font-size: 2.5rem; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; }
.service-card p { color: var(--mid); font-size: 0.95rem; flex: 1; }
.service-card__link {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
  margin-top: 8px;
}
.service-card--pt:hover { border-color: var(--dark); }
.service-card--jumppa:hover { border-color: var(--violet); }
.service-card--run:hover { border-color: var(--coral); }

/* ===== FEATURE SECTIONS ===== */
.feature { padding: 100px 0; }
.feature--teal { background: var(--teal-light); }
.feature--dark { background: var(--dark); color: var(--white); }
.feature--coral { background: var(--coral-light); }
.feature--violet { background: var(--violet-light); }
.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature__inner--reverse .feature__text { order: 2; }
.feature__inner--reverse .feature__visual { order: 1; }
.feature__badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.feature__badge--light { background: rgba(255,255,255,0.15); color: var(--white); }
.feature__badge--dark { background: var(--dark); color: var(--white); }
.feature__badge--violet { background: var(--violet); color: var(--white); }
.feature__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.feature__text p { font-size: 1.05rem; color: var(--mid); margin-bottom: 20px; }
.feature--dark .feature__text p { color: rgba(255,255,255,0.7); }
.feature__slogan {
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--dark) !important;
  font-weight: 600;
  border-left: 4px solid var(--coral);
  padding-left: 16px;
  margin: 16px 0 24px !important;
}
.feature__slogan--violet {
  border-left-color: var(--violet);
}
.feature__list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list li {
  padding-left: 24px;
  position: relative;
  color: var(--dark);
  font-size: 0.95rem;
}
.feature__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.feature__list--light li { color: rgba(255,255,255,0.85); }
.feature__list--light li::before { color: var(--teal); }
.feature__list--violet li::before { color: var(--violet); }
.feature__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.feature__badge-nha {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin: 20px 0;
}
.feature__badge-nha img { height: 32px; width: auto; }
.feature__badge-nha span { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem; }

/* INFO CARDS (JOOGA) */
.feature__card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-card strong { font-size: 0.95rem; font-weight: 700; }
.info-card span { font-size: 0.85rem; color: var(--teal-dark); font-weight: 600; }
.info-card em { font-size: 0.8rem; color: var(--mid); font-style: normal; }
.info-card--3 { cursor: pointer; }
.info-card--3:hover { border: 2px solid var(--teal); }
.info-card--linjaukset { background: #e6f0ed; border-left: 3px solid #2d5a52; cursor: pointer; }
.info-card--linjaukset strong { color: #2d5a52; }
.info-card--linjaukset span { color: #2d5a52; }
.info-card--linjaukset:hover { background: #2d5a52; }
.info-card--linjaukset:hover strong,
.info-card--linjaukset:hover span,
.info-card--linjaukset:hover em { color: var(--white); }
.info-card--retreat { grid-column: 1 / -1; background: var(--teal); color: var(--white); cursor: pointer; }
.info-card--retreat strong, .info-card--retreat span, .info-card--retreat em { color: var(--white); }
.info-card--retreat span { color: rgba(255,255,255,0.8); }
.info-card--retreat:hover { background: var(--teal-dark); }

/* PT HIGHLIGHTS */
.pt-highlight {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pt-highlight__item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}
.pt-highlight__item:hover { background: rgba(0,188,188,0.15); border-color: var(--teal); }
.pt-highlight__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  min-width: 80px;
  text-align: center;
}
.pt-highlight__label { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* VIOLET BUTTONS */
.btn--violet { background: var(--violet); color: var(--white); }
.btn--violet:hover { background: var(--violet-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(123,94,167,0.4); }
.btn--ghost-violet { background: transparent; border-color: var(--violet); color: var(--violet); }
.btn--ghost-violet:hover { background: var(--violet); color: var(--white); }

/* JUMPPA FLOW */
.jumppa-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jumppa-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.jumppa-step:hover {
  transform: translateX(6px);
  border-left-color: var(--violet);
  box-shadow: var(--shadow-lg);
}
.jumppa-step--main {
  border-left-color: var(--violet);
  background: var(--violet);
  color: var(--white);
}
.jumppa-step--main:hover { border-left-color: var(--violet-dark); }
.jumppa-step--main p { color: rgba(255,255,255,0.85); }
.jumppa-step__icon { font-size: 2rem; flex-shrink: 0; }
.jumppa-step strong { display: block; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.jumppa-step p { font-size: 0.88rem; color: var(--mid); margin: 0; }
.jumppa-tagline {
  background: var(--violet-light);
  border: 2px dashed var(--violet);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
}
.jumppa-tagline span {
  font-weight: 700;
  color: var(--violet);
  font-size: 1.05rem;
}

/* RUN JOURNEY */
.run-journey {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.run-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: var(--transition);
}
.run-step:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.run-step__icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.run-step strong { display: block; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.run-step p { font-size: 0.9rem; color: var(--mid); }
.run-step--3 { background: var(--coral); color: var(--white); }
.run-step--3 p { color: rgba(255,255,255,0.85); }
.run-step__arrow { font-size: 1.5rem; color: var(--coral); font-weight: 700; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.about__logo-big img {
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,188,188,0.25));
}
.about__text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 20px; margin-top: 16px; }
.about__text p { color: var(--mid); margin-bottom: 16px; font-size: 1.05rem; }
.about__certs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.cert {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.cert__icon { font-size: 1.6rem; }
.cert div { display: flex; flex-direction: column; }
.cert strong { font-weight: 700; font-size: 0.95rem; }
.cert span { font-size: 0.85rem; color: var(--mid); }
.about__social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  background: var(--light);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--teal); color: var(--white); }
.social-link--primary { background: var(--teal); color: var(--white); }
.social-link--primary:hover { background: var(--teal-dark); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--dark);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(0,188,188,0.08);
}
.form-group select option { background: var(--dark-alt); color: var(--white); }
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 16px;
}
.form-note a { color: var(--teal); font-weight: 600; }
.form-note a:hover { text-decoration: underline; }
.contact__info { display: flex; flex-direction: column; gap: 32px; }
.contact__info-block h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.contact__info-block a,
.contact__info-block p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  transition: var(--transition);
}
.contact__info-block a:hover { color: var(--teal); }
.contact__monkey img {
  height: 120px;
  width: auto;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0f0f;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.footer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer__nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__nav a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer__nav a:hover { color: var(--teal); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== HERO SPARKS ===== */
.hero__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__sparks span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0;
  animation: spark 6s ease-in-out infinite;
}
.hero__sparks span:nth-child(1)  { left: 12%; top: 20%; animation-delay: 0s;    animation-duration: 7s; width:4px; height:4px; }
.hero__sparks span:nth-child(2)  { left: 80%; top: 15%; animation-delay: 1.2s;  animation-duration: 5s; }
.hero__sparks span:nth-child(3)  { left: 55%; top: 75%; animation-delay: 2.4s;  animation-duration: 8s; width:8px; height:8px; }
.hero__sparks span:nth-child(4)  { left: 28%; top: 60%; animation-delay: 0.6s;  animation-duration: 6s; width:4px; height:4px; }
.hero__sparks span:nth-child(5)  { left: 70%; top: 50%; animation-delay: 3.0s;  animation-duration: 7s; }
.hero__sparks span:nth-child(6)  { left: 90%; top: 70%; animation-delay: 1.8s;  animation-duration: 5s; width:4px; height:4px; }
.hero__sparks span:nth-child(7)  { left: 40%; top: 30%; animation-delay: 4.2s;  animation-duration: 9s; width:10px; height:10px; background: rgba(0,188,188,0.4); }
.hero__sparks span:nth-child(8)  { left: 6%;  top: 80%; animation-delay: 2.0s;  animation-duration: 6s; }
.hero__sparks span:nth-child(9)  { left: 62%; top: 10%; animation-delay: 3.6s;  animation-duration: 8s; width:4px; height:4px; }
.hero__sparks span:nth-child(10) { left: 20%; top: 45%; animation-delay: 5.0s;  animation-duration: 7s; }
@keyframes spark {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.8; transform: translateY(-12px) scale(1); }
  80%  { opacity: 0.4; transform: translateY(-32px) scale(0.6); }
  100% { opacity: 0; transform: translateY(-48px) scale(0); }
}

/* ===== FINDER QUIZ ===== */
.finder {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.finder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,188,188,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.finder__header {
  text-align: center;
  margin-bottom: 48px;
}
.finder__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}
.finder__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.finder__header p { color: rgba(255,255,255,0.55); font-size: 1.05rem; }

.finder__card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 48px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.finder__step {
  display: none;
  flex-direction: column;
  gap: 28px;
  animation: finderIn 0.35s ease;
}
.finder__step.active { display: flex; }
@keyframes finderIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: none; }
}
.finder__step-indicator {
  display: flex;
  gap: 10px;
}
.finder__step-indicator span {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.finder__step-indicator span.active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 0 16px rgba(0,188,188,0.5);
}
.finder__step-indicator span.done {
  background: rgba(0,188,188,0.2);
  color: var(--teal);
  border: 1px solid var(--teal);
}
.finder__step h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.finder__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.finder__opt {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.finder__opt strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 6px;
}
.finder__opt span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 1.4;
}
.finder__opt:hover {
  background: rgba(0,188,188,0.12);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.finder__opt:hover strong { color: var(--teal); }
.finder__opt.selected {
  background: rgba(0,188,188,0.18);
  border-color: var(--teal);
}

/* RESULT */
.finder__result { align-items: center; text-align: center; }
.finder__result-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.finder__result-emoji { font-size: 4rem; animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.finder__result-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.finder__result-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.finder__result-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 480px;
}
.finder__result-cta {
  margin-top: 8px;
}
.finder__reset {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 16px;
  transition: var(--transition);
  padding: 8px;
}
.finder__reset:hover { color: rgba(255,255,255,0.7); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .services__grid--4 { grid-template-columns: 1fr; }
  .feature__inner { grid-template-columns: 1fr; gap: 40px; }
  .feature__inner--reverse .feature__text { order: 0; }
  .feature__inner--reverse .feature__visual { order: 0; }
  .about__inner { grid-template-columns: 1fr; }
  .about__logo-big img { max-width: 220px; }
  .contact__grid { grid-template-columns: 1fr; }
  .feature__card-stack { grid-template-columns: 1fr; }
  .info-card--retreat { grid-column: 1; }
}
@media (max-width: 700px) {
  .finder__card { padding: 28px 20px; }
  .finder__options { grid-template-columns: 1fr; }
  .finder__opt { flex-direction: row; align-items: center; gap: 14px; font-size: 1.2rem; }
  .finder__opt strong { margin-top: 0; }

  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.3rem; }
  .nav__burger { display: flex; z-index: 1001; }
  .hero__logo { height: 120px; }
  .feature, .services, .about, .contact { padding: 72px 0; }
  .section-sub { margin-bottom: 36px; }
  .contact__form { padding: 28px 20px; }
  .pt-highlight { gap: 14px; }
  .footer__inner { flex-direction: column; text-align: center; }
}
