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

:root {
  --primary: #7f9f62;
  --primary-dark: #6a8a4e;
  --primary-light: #cbe4b4;
  --primary-lighter: #EFF2EE;
  --primary-glow: rgba(127, 159, 98, 0.15);

  --bg: #fdf3c8;
  --bg-soft: #fef8e0;
  --card: #FFFFFF;

  --text: #574c42;
  --text-secondary: #7a6e62;
  --text-light: #a09585;

  --brown: #816d5b;
  --brown-light: #e2e0db;

  --border: #e2ddd6;
  --border-light: #f0ebe5;

  --warm: #f5e6d3;
  --warm-light: #fef9f2;

  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  --shadow-sm: 0 1px 3px rgba(87,76,66,0.06);
  --shadow: 0 4px 16px rgba(87,76,66,0.08);
  --shadow-lg: 0 12px 40px rgba(87,76,66,0.12);
  --shadow-glow: 0 4px 24px rgba(127,159,98,0.2);

  --radius: 24px;
  --radius-sm: 16px;

  /* Plyr Customization */
  --plyr-color-main: #7f9f62;
  --plyr-video-background: #fdf5e6;
  --plyr-menu-background: #fdf5e6;
  --plyr-menu-color: #4A3E56;
  --radius-xs: 12px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #fdf5e6 0%, #f7ece1 100%);
  pointer-events: none;
}

.solid-shape {
  position: absolute;
  border-radius: 50%;
  animation: floatSolid 30s infinite ease-in-out alternate;
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.4);
}

.solid-shape-1 {
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, #f0f7e6 0%, #d5e4c3 100%);
  top: -300px;
  right: -200px;
  animation-delay: 0s;
}

.solid-shape-2 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #fdf5eb 0%, #e8dcc7 100%);
  bottom: -200px;
  left: -200px;
  animation-delay: -5s;
}

.solid-shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #e4f0d6 0%, #b8d49f 100%);
  top: 60%;
  left: 45%;
  animation-delay: -10s;
  animation-duration: 35s;
  opacity: 0.8;
}

/* NEW RINGS AND DOTS */
.ring-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(127, 159, 98, 0.15);
  animation: rotateRing 40s linear infinite;
}

.ring-1 {
  width: 900px;
  height: 900px;
  top: -350px;
  right: -250px;
}

.ring-2 {
  width: 700px;
  height: 700px;
  bottom: -250px;
  left: -250px;
  animation-direction: reverse;
  border: 1px solid rgba(232, 220, 199, 0.4);
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  background: #d4e8c1;
  animation: floatSolid 15s infinite ease-in-out alternate;
}

.dot-1 { width: 12px; height: 12px; top: 20%; left: 15%; animation-delay: -2s; opacity: 0.6; }
.dot-2 { width: 8px; height: 8px; top: 60%; right: 10%; background: #e8dcc7; animation-delay: -6s; opacity: 0.8; }
.dot-3 { width: 15px; height: 15px; bottom: 15%; left: 40%; background: #fff; opacity: 0.5; animation-delay: -1s; }
.dot-4 { width: 6px; height: 6px; top: 30%; right: 25%; background: #d5e4c3; opacity: 0.7; animation-delay: -8s; }

.floating-baby {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.03);
  border: 6px solid #fff;
  animation: levitateBaby 15s infinite ease-in-out alternate;
  background: #fff;
}

.floating-baby img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baby-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: -2s;
  opacity: 0.95;
}

.baby-2 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 5%;
  animation-delay: -7s;
  opacity: 0.9;
}

.baby-3 {
  width: 110px;
  height: 110px;
  bottom: 20%;
  left: 25%;
  animation-delay: -12s;
  opacity: 0.95;
}

.baby-4 {
  width: 70px;
  height: 70px;
  top: 75%;
  left: 10%;
  animation-delay: -5s;
  opacity: 0.85;
}

.baby-5 {
  width: 90px;
  height: 90px;
  top: 8%;
  right: 25%;
  animation-delay: -18s;
  opacity: 0.8;
}

.floating-logo {
  position: absolute;
  top: 5%;
  right: 12%;
  width: 300px;
  opacity: 0.2;
  mix-blend-mode: multiply;
  animation: floatSolid 35s infinite ease-in-out alternate;
}

.floating-logo img {
  width: 100%;
  height: auto;
}

@keyframes floatSolid {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(25px, -35px) scale(1.02) rotate(6deg); }
  100% { transform: translate(-15px, 25px) scale(0.98) rotate(-4deg); }
}

@keyframes levitateBaby {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
  100% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== CORE CONTAINER ===== */
#app {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--card);
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

/* ===== PAGES ===== */
.page {
  display: none;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.page.active {
  display: flex;
  animation: pageSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
#page-intro {
  background: var(--bg);
}

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

/* ===== GRID SYSTEM ===== */
.page-grid {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.page-visual-column {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-light);
}
.page-form-column {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* ===== CENTERED INTRO PAGE TEXT STYLES ===== */
.progress-bar-simple {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}
.progress-step-simple {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-number-simple {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.step-label-simple {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.8px;
}
.logo-centered {
  margin: 4px 0;
}
.title-centered {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 6px;
}
.heart-icon-wrapper {
  margin: 4px 0 8px;
}
.heart-pink {
  color: #ff9494;
  font-size: 18px;
}
.desc-centered {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 6px;
}
.font-semibold {
  font-weight: 600;
}
.hero-image-centered {
  margin: 12px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-image-centered img {
  width: 100% !important;
  max-width: 340px !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  mix-blend-mode: multiply !important;
  -webkit-mask-image: radial-gradient(ellipse 80% 95% at 50% 42%, black 45%, transparent 75%) !important;
  mask-image: radial-gradient(ellipse 80% 95% at 50% 42%, black 45%, transparent 75%) !important;
}
#page-intro .page-visual-column {
  justify-content: flex-start !important;
  gap: 12px;
}
#page-intro .page-content {
  padding: 10px 0 0 0 !important;
}
.form-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 6px 0;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.form-group label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg-soft);
  transition: var(--transition);
}
.form-group input:focus {
  border-color: var(--primary);
  background: var(--card);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.actions-centered {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.safe-notice-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}


/* ===== PROGRESS BAR ===== */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 24px;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: var(--transition);
}
.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brown-light);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}
.progress-step.active .step-number {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.progress-step.completed .step-number {
  background: var(--primary);
  color: white;
}
.progress-step.active { color: var(--primary-dark); }
.progress-step.completed { color: var(--primary); }
.progress-line {
  width: 22px;
  height: 3px;
  background: var(--brown-light);
  margin: 0 4px;
  transition: var(--transition);
  flex-shrink: 0;
  border-radius: 2px;
}
.progress-line.completed { background: var(--primary); }

/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  animation: pupaBreathe 4s infinite ease-in-out;
  filter: drop-shadow(0 6px 12px rgba(127, 159, 98, 0.25));
}

.logo::before, .logo::after {
  content: 'Z';
  position: absolute;
  color: #7F9F62;
  font-family: "Nunito", "Comic Sans MS", cursive, sans-serif;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(127, 159, 98, 0.6);
}

.logo::before {
  top: -5px;
  right: -10px;
  font-size: 20px;
  animation: pupaDream1 3.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0s;
}

.logo::after {
  top: 15px;
  right: -30px;
  font-size: 26px;
  animation: pupaDream2 4.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 1.5s;
}

@keyframes pupaBreathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.04) translateY(-3px); }
}

@keyframes pupaDream1 {
  0% {
    transform: translate(0, 0) scale(0.5) rotate(-15deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translate(10px, -15px) scale(0.8) rotate(5deg);
  }
  50% {
    transform: translate(-5px, -30px) scale(1) rotate(-10deg);
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translate(15px, -50px) scale(1.2) rotate(15deg);
    opacity: 0;
  }
}

@keyframes pupaDream2 {
  0% {
    transform: translate(0, 0) scale(0.6) rotate(10deg);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
    transform: translate(-8px, -20px) scale(0.9) rotate(-5deg);
  }
  50% {
    transform: translate(12px, -40px) scale(1.1) rotate(12deg);
  }
  80% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-10px, -65px) scale(1.4) rotate(-15deg);
    opacity: 0;
  }
}

/* ===== HERO IMAGES ===== */
.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid var(--card);
}

/* ===== TEXT STYLES ===== */
.page-content {
  padding: 24px 0;
  flex: 1;
}
.page-content h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.35;
}
.page-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.page-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-weight: 500;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, #e8f0e0 100%);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-top: 20px;
  border: 1px solid var(--primary-light);
}
.highlight-box .icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ===== OPTION CARDS & ADAPTATION CARDS ===== */
.info-card-step {
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  gap: 16px;
  transition: var(--transition-bounce);
  text-align: left;
}
.info-card-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.info-card-icon {
  font-size: 24px;
  background: var(--card);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.info-card-text {
  flex: 1;
}
.info-card-title {
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
}
.info-card-desc {
  color: var(--text-light);
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.4;
}
.video-card-step {
  cursor: pointer;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #f6ebe1 100%);
  border: 1px solid rgba(221,119,116,0.15);
}
.video-thumbnail-mini {
  width: 80px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.video-thumbnail-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}
.play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding-left: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.option-card {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-bounce);
  font-size: 14px;
  color: var(--text);
  background: var(--card);
  user-select: none;
}
.option-card:hover {
  border-color: var(--primary);
  background: var(--primary-lighter);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.option-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-lighter) 0%, #e5f0da 100%);
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.option-card input[type="radio"] { display: none; }
.option-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-right: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.option-card.selected .option-radio {
  border-color: var(--primary);
  background: var(--primary);
}
.option-card.selected .option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.option-label { flex: 1; font-weight: 500; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--primary-lighter);
  transform: translateY(-1px);
}

.btn-outline-light {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: var(--card);
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}
.btn-outline-light:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-lighter);
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  cursor: pointer;
  padding: 12px;
  transition: var(--transition);
  width: 100%;
  text-align: center;
  font-weight: 500;
}
.btn-text:hover { color: var(--primary-dark); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
}
.btn-whatsapp:hover {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.actions {
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* ===== DESCRIPTIVE visual-desc-panel ===== */
.visual-desc-panel {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--primary-light);
  text-align: center;
}
.desc-panel-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 !important;
}

/* ===== TIMELINE ===== */
.timeline { margin: 10px 0; width: 100%; }
.timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
  text-align: left;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px; top: 40px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), var(--border-light));
}
.timeline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  border: 2px solid var(--primary);
}
.timeline-info { flex: 1; padding-top: 4px; }
.timeline-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2px;
}
.timeline-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ===== BADGE CIRCLE ===== */
.badge-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  margin: 10px auto;
  box-shadow: 0 8px 32px rgba(127, 159, 98, 0.4);
  animation: float 3s ease-in-out infinite;
}
.badge-number { font-size: 42px; font-weight: 700; line-height: 1; }
.badge-plus { font-size: 22px; font-weight: 700; line-height: 1; }
.badge-label { font-size: 11px; font-weight: 500; line-height: 1.2; margin-top: 2px; }

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: linear-gradient(135deg, var(--warm-light) 0%, #fef5e8 100%);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin: 16px 0;
  border-left: 4px solid var(--primary);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 44px;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 4px; left: 12px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 13px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-top: 6px;
}
.testimonial-author { display: flex; align-items: center; gap: 8px; }
.testimonial-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.testimonial-name { font-size: 12.5px; font-weight: 600; color: var(--primary-dark); }
.testimonial-role { font-size: 11px; color: var(--text-light); }

/* ===== INFO CARD ===== */
.info-card {
  background: linear-gradient(135deg, var(--primary-lighter) 0%, #e8f0e0 100%);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 14px 0;
  border: 1px solid var(--primary-light);
}
.info-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 16px 0;
  transition: var(--transition);
  background: var(--card);
  width: 100%;
}
.product-card img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xs);
  object-fit: cover;
}
.product-info { flex: 1; text-align: left; }
.product-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--text); }
.product-info p { font-size: 12px; color: var(--text-secondary); line-height: 1.45; }

/* ===== STATS ROW ===== */
.stats-row { display: flex; gap: 10px; margin: 16px 0; width: 100%; }
.stat-card {
  flex: 1;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-radius: var(--radius-xs);
  padding: 14px 10px;
  text-align: center;
  border: 1px solid rgba(127,159,98,0.15);
}
.stat-number { font-size: 26px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 11px; color: var(--text-secondary); margin-top: 4px; font-weight: 500; }

/* ===== CHECKLIST ===== */
.checklist { margin: 14px 0; width: 100%; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.checklist-text { font-size: 13px; color: var(--text-secondary); line-height: 1.45; }

/* ===== SUCCESS LIST ===== */
.success-list { margin: 14px 0; width: 100%; }
.success-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, #e8f0e0 100%);
  border-radius: var(--radius-xs);
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  border: 1px solid var(--primary-light);
  text-align: left;
}
.success-item .check { color: var(--primary); font-size: 16px; flex-shrink: 0; }

/* ===== SAFE NOTICE ===== */
.safe-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
  padding: 4px 0;
}

/* ===== FOOTER BADGES ===== */
.footer-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.badge-icon { font-size: 22px; }
.badge-item span:last-child {
  font-size: 9px;
  color: var(--text-light);
  line-height: 1.25;
  font-weight: 500;
}

.heart-float { display: inline-block; animation: pulse 2s ease-in-out infinite; }

/* ===== PC LAYOUT BREAKPOINT ===== */
@media (min-width: 992px) {
  body {
    background: var(--bg);
    overflow-y: auto;
  }
  #app {
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0 auto;
    padding: 20px;
  }
  .page {
    height: 100%;
    min-height: auto;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: transparent !important;
  }
  .page.active {
    display: flex;
  }
  .page-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    max-width: 1060px;
    width: 100%;
    min-height: 640px;
    background: var(--card);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin: 40px;
  }
  .page-visual-column {
    border-bottom: none;
    border-right: 1px solid var(--border-light);
    padding: 40px 32px;
    justify-content: space-between;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 100%);
  }
  .page-form-column {
    padding: 40px;
    height: 100%;
    overflow-y: auto;
    justify-content: space-between;
    background: transparent;
  }
  .hero-image img {
    max-width: 320px;
  }
  .page-content {
    padding: 30px 0;
  }
  .page-content h1 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .page-visual-column {
    padding: 36px 20px;
  }
  .progress-step .step-label {
    display: none;
  }
}

/* ===== IMAGE MODAL / LIGHTBOX ===== */
.image-modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  padding-top: 50px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.85); 
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.image-modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: scaleIn 0.3s ease;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes scaleIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* ===== GLOBAL HOME BUTTON ===== */
.btn-back-home {
  position: fixed;
  top: 24px;
  left: 24px;
  background: white;
  border: 2px solid var(--primary-light);
  color: var(--primary-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(127, 159, 98, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-bounce);
  z-index: 1000;
}
.btn-back-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(127, 159, 98, 0.25);
  background: var(--primary-lighter);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .btn-back-home {
    top: 16px;
    left: 16px;
    padding: 10px;
    font-size: 16px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .hide-on-mobile {
    display: none;
  }
}

/* ===== CROSSFADE ANIMATION ===== */
.animated-crossfade-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 370px;
  margin: 12px auto 20px;
}
@media (max-width: 768px) {
  .animated-crossfade-container {
    max-width: 270px;
    height: 300px;
    margin: 20px auto 40px;
  }
}
.animated-crossfade-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: crossfade 6s infinite;
}
.animated-crossfade-container img:nth-child(1) { animation-delay: 0s; }
.animated-crossfade-container img:nth-child(2) { animation-delay: 2s; }
.animated-crossfade-container img:nth-child(3) { animation-delay: 4s; }

@keyframes crossfade {
  0% { opacity: 0; transform: scale(1.15); }
  10% { opacity: 1; transform: scale(1.1); }
  33% { opacity: 1; transform: scale(1.1); }
  43% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* ===== SIZE GUIDE SECTION ===== */
.size-guide-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px dashed #e8dcc8;
}
.size-guide-title {
  font-size: 18px;
  font-weight: 800;
  color: #4a3728;
  margin: 0 0 8px 0;
}

/* Size Table */
.size-table-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #e8dcc8;
  background: white;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.size-table thead {
  background: linear-gradient(135deg, #7f9f62, #6b8a50);
  color: white;
}
.size-table th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.size-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0e8d8;
  color: #4a3728;
  font-weight: 500;
}
.size-table tbody tr:last-child td {
  border-bottom: none;
}
.size-table tbody tr:hover {
  background: #fdf8ef;
}

/* Size Badges */
.size-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  color: white;
}
.size-pp { background: linear-gradient(135deg, #c9a5e0, #b088d0); }
.size-p { background: linear-gradient(135deg, #f5a5b8, #e88fa3); }
.size-m { background: linear-gradient(135deg, #7f9f62, #6b8a50); }
.size-g { background: linear-gradient(135deg, #e8a84c, #d4923a); }

/* Size Tip */
.size-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff9e6, #fff3cc);
  border: 2px solid #f0d880;
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #6b5e3a;
}
.size-tip span:first-child {
  font-size: 20px;
}

/* Model Cards */
.model-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}
.model-card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #e8dcc8;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.model-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.model-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: white;
}
.model-card-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}
.model-emoji {
  font-size: 22px;
}
.model-original { background: linear-gradient(135deg, #7f9f62, #5c7e3e); }
.model-pluma { background: linear-gradient(135deg, #8bafd4, #6b92bf); }
.model-asas { background: linear-gradient(135deg, #e8a84c, #d08030); }

.model-card-body {
  padding: 14px 16px;
}
.model-card-body p {
  margin: 0 0 10px 0;
  font-size: 12.5px;
  color: #5b4e3a;
  line-height: 1.5;
}
.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.model-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f5efe5;
  color: #6b5e4f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ===== ACCORDION ===== */
.sg-accordion {
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #e8dcc8;
  background: white;
}
.sg-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: none;
  background: linear-gradient(135deg, #fdf8ef, #f9f0e0);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  color: #4a3728;
  transition: background 0.2s ease;
}
.sg-accordion-btn:hover {
  background: linear-gradient(135deg, #f9f0e0, #f2e5d0);
}
.sg-accordion-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #9b8a70;
}
.sg-accordion.open .sg-accordion-arrow {
  transform: rotate(180deg);
}
.sg-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 18px;
}
.sg-accordion.open .sg-accordion-content {
  max-height: 800px;
  padding: 16px 18px;
}

/* Remove borders from inner elements when inside accordion */
.sg-accordion-content .size-table-wrapper {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sg-accordion-content .model-card {
  border-color: #f0e8d8;
}