*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #EBE5D9;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-hover: rgba(255, 255, 255, 0.92);
  --primary: #1C5C3C;
  --primary-mid: #2E7D52;
  --primary-light: #56B07C;
  --primary-glow: rgba(86, 176, 124, 0.14);
  --gold: #B08040;
  --text-dark: #111C16;
  --text-mid: #3A5445;
  --text-light: #7A9588;
  --border: rgba(28, 92, 60, 0.13);
  --border-strong: rgba(28, 92, 60, 0.26);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(12, 28, 20, 0.08);
  --shadow: 0 8px 32px rgba(12, 28, 20, 0.12);
  --shadow-lg: 0 20px 56px rgba(12, 28, 20, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 8% 5%,  rgba(86, 176, 124, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 92% 95%, rgba(28, 92, 60, 0.13) 0%, transparent 50%),
    radial-gradient(ellipse 55% 65% at 55% 40%, rgba(176, 128, 64, 0.06) 0%, transparent 55%);
  min-height: 100vh;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  padding: 20px 16px 100px;
  animation: pageIn 0.35s ease both;
}

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.page-wrapper {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 620px;
  margin: 0 auto;
}

/* ── Botanical floating emojis ── */
.botanical-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.leaf {
  position: absolute;
  opacity: 0;
  animation: leafFloat linear infinite;
  user-select: none;
  filter: blur(0.3px);
}

.leaf.l1 { left: 4%;  font-size: 1.25rem; animation-duration: 24s; animation-delay: 0s;    }
.leaf.l2 { left: 16%; font-size: 1.55rem; animation-duration: 30s; animation-delay: -7s;   }
.leaf.l3 { left: 30%; font-size: 1.0rem;  animation-duration: 21s; animation-delay: -13s;  }
.leaf.l4 { left: 47%; font-size: 1.4rem;  animation-duration: 27s; animation-delay: -4s;   }
.leaf.l5 { left: 62%; font-size: 1.1rem;  animation-duration: 32s; animation-delay: -19s;  }
.leaf.l6 { left: 75%; font-size: 1.6rem;  animation-duration: 25s; animation-delay: -10s;  }
.leaf.l7 { left: 86%; font-size: 1.05rem; animation-duration: 29s; animation-delay: -15s;  }
.leaf.l8 { left: 40%; font-size: 1.3rem;  animation-duration: 36s; animation-delay: -22s;  }

@keyframes leafFloat {
  0%   { transform: translateY(-80px) rotate(-10deg); opacity: 0; }
  6%   { opacity: 0.17; }
  46%  { opacity: 0.17; }
  50%  { transform: translateY(105vh) rotate(10deg); opacity: 0; }
  51%  { transform: translateY(-80px) rotate(-10deg); opacity: 0; }
  57%  { opacity: 0.17; }
  94%  { opacity: 0.17; }
  100% { transform: translateY(105vh) rotate(10deg); opacity: 0; }
}

/* ── Floating children images ── */
.bg-child {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  animation: childFloat linear infinite;
  pointer-events: none;
  user-select: none;
}

.bg-child.c1 { left: 8%;  width: 62px;  height: 62px;  animation-duration: 26s; animation-delay: -5s;  }
.bg-child.c2 { left: 24%; width: 70px;  height: 70px;  animation-duration: 34s; animation-delay: -18s; }
.bg-child.c3 { left: 43%; width: 56px;  height: 56px;  animation-duration: 29s; animation-delay: -11s; }
.bg-child.c4 { left: 58%; width: 66px;  height: 66px;  animation-duration: 22s; animation-delay: -3s;  }
.bg-child.c5 { left: 72%; width: 60px;  height: 60px;  animation-duration: 31s; animation-delay: -22s; }
.bg-child.c6 { left: 84%; width: 52px;  height: 52px;  animation-duration: 25s; animation-delay: -8s;  }
.bg-child.c7 { left: 35%; width: 64px;  height: 64px;  animation-duration: 37s; animation-delay: -28s; }

@keyframes childFloat {
  0%   { transform: translateY(-110px) rotate(-5deg); opacity: 0; }
  7%   { opacity: 0.17; }
  44%  { opacity: 0.17; }
  50%  { transform: translateY(105vh) rotate(5deg); opacity: 0; }
  51%  { transform: translateY(-110px) rotate(-5deg); opacity: 0; }
  58%  { opacity: 0.17; }
  93%  { opacity: 0.17; }
  100% { transform: translateY(105vh) rotate(5deg); opacity: 0; }
}

/* ── Profile Badge ── */
.profile-badge {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  padding: 5px 12px 5px 5px;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255,255,255,0.5) inset;
  gap: 0;
}

.profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.profile-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: contain;
  margin-left: -9px;
  border: 2px solid var(--bg);
  background: #fff;
  flex-shrink: 0;
}

/* ── Landing ── */
.landing {
  padding: 44px 0 24px;
}

.landing-hero {
  text-align: center;
  margin-bottom: 52px;
}

.landing-expert {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  padding: 6px 18px 6px 6px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.expert-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.expert-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}

.expert-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.expert-title {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.2;
}

.landing-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.06;
  color: var(--text-dark);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

.landing-title em {
  color: var(--primary);
  font-style: italic;
}

.landing-sub {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 370px;
  margin: 0 auto 26px;
  font-weight: 300;
}

.landing-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 17px 40px;
  border-radius: 99px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(28, 92, 60, 0.38), 0 1px 2px rgba(0,0,0,0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(28, 92, 60, 0.46), 0 2px 4px rgba(0,0,0,0.08);
}

.btn-start svg {
  transition: transform 0.22s ease;
}

.btn-start:hover svg {
  transform: translateX(4px);
}

/* Divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.t-stars {
  color: #D4973A;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.t-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 14px;
  font-style: italic;
  font-weight: 300;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-author-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── Progress ── */
.progress-container {
  margin-bottom: 24px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-pct {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-light);
}

.progress-bar-track {
  background: rgba(28, 92, 60, 0.1);
  border-radius: 99px;
  height: 4px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  height: 100%;
  border-radius: 99px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(86, 176, 124, 0.45);
}

/* ── Question Card ── */
.question-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  animation: cardIn 0.38s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

.question-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 14px;
}

.question-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* ── Options ── */
.options {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease,
              transform 0.18s ease, box-shadow 0.2s ease;
  user-select: none;
  background: rgba(255, 255, 255, 0.45);
}

.option:hover {
  border-color: var(--primary-light);
  background: rgba(86, 176, 124, 0.07);
  transform: translateX(3px);
}

.option input[type='radio'] { display: none; }

.option.selected {
  border-color: var(--primary);
  background: rgba(28, 92, 60, 0.08);
  box-shadow: 0 0 0 3px rgba(86, 176, 124, 0.14);
  transform: translateX(3px);
}

.option.selecting {
  animation: optionPulse 0.4s ease;
}

@keyframes optionPulse {
  0%   { box-shadow: 0 0 0 0 rgba(86, 176, 124, 0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(86, 176, 124, 0); }
  100% { box-shadow: 0 0 0 3px rgba(86, 176, 124, 0.14); }
}

.option-label {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(28, 92, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.option.selected .option-label {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.option-text {
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--text-mid);
  font-weight: 400;
  transition: color 0.2s ease;
}

.option.selected .option-text {
  color: var(--text-dark);
  font-weight: 500;
}

/* ── Nav buttons ── */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 99px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(28, 92, 60, 0.32);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 7px 24px rgba(28, 92, 60, 0.40);
}

.btn-primary:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-light);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border-strong);
  color: var(--text-mid);
}

/* ── Result Card ── */
.result-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px 44px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: cardIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.result-icon {
  font-size: 3.6rem;
  display: block;
  margin-bottom: 22px;
  animation: iconPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@keyframes iconPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.result-text {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 320px;
  margin: 0 auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease,
              transform 0.18s ease, color 0.2s ease;
  text-align: left;
}

.contact-link:hover {
  transform: translateX(5px);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.contact-link.link-wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.07);
  color: #14703A;
}

.contact-link.link-ig:hover {
  border-color: rgba(225, 48, 108, 0.4);
  background: rgba(225, 48, 108, 0.06);
  color: #B0164E;
}

.contact-link.link-tel:hover {
  border-color: var(--primary-light);
  background: var(--primary-glow);
  color: var(--primary);
}

.contact-link.link-yt:hover {
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(255, 0, 0, 0.06);
  color: #CC0000;
}

.link-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.link-emoji {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.link-text {
  font-weight: 500;
}

.btn-home {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-home:hover {
  color: var(--primary);
  border-color: var(--primary-light);
  background: var(--primary-glow);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  body { padding: 16px 12px 90px; }

  .landing-title { font-size: 2.6rem; }
  .landing-sub   { font-size: 0.93rem; }

  .landing-expert {
    padding: 5px 14px 5px 5px;
    gap: 9px;
  }
  .expert-avatar { width: 30px; height: 30px; }
  .expert-title  { display: none; }

  .question-card { padding: 22px 16px; }
  .question-text { font-size: 1.18rem; }

  .result-card { padding: 32px 16px; }
  .result-title { font-size: 1.45rem; }

  .profile-badge { bottom: 14px; right: 14px; }
  .profile-avatar { width: 32px; height: 32px; }
  .profile-logo  { width: 22px; height: 22px; }

  .btn-start { padding: 15px 30px; font-size: 0.9rem; }
  .nav-buttons .btn { padding: 13px 22px; font-size: 0.86rem; }

  .contact-links { max-width: 100%; }
}

@media (min-width: 560px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
  }
}
