/* ============================================
   BREAST CARE — Design System
   Palette: Pink hangat + Putih + Coklat hangat
   Type: Fraunces (display) + Plus Jakarta Sans (body)
   ============================================ */

:root {
  --pink-deep: #E85D8A;
  --pink-main: #FF8FAB;
  --pink-medium: #FFC2D1;
  --pink-pale: #FFF0F4;
  --pink-pale-2: #FFE5EC;
  --white: #FFFFFF;
  --ink: #3D2C30;
  --ink-soft: #7A6266;
  --green-soft: #4CAF82;
  --shadow-pink: rgba(232, 93, 138, 0.18);

  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0px 8px 24px rgba(232, 93, 138, 0.12);
  z-index: 1000;
  border-radius: var(--radius-sm);
  padding: 10px 0;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: var(--ink) !important;
  padding: 10px 20px !important;
  text-decoration: none;
  display: block !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  text-align: left;
}

.dropdown-content a::after {
  display: none !important;
}

.dropdown-content a:hover {
  background-color: var(--pink-pale);
  color: var(--pink-deep) !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 93, 138, 0.1);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(232, 93, 138, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding-right: 4px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pink-deep);
}

.logo svg {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-deep);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--pink-deep);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--pink-deep);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--shadow-pink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 600;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(180deg, var(--pink-pale) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 600px;
  height: 600px;
  z-index: 0;
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--pink-medium);
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.12;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink-deep);
  position: relative;
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink-deep);
  color: var(--white);
  padding: 17px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 12px 28px var(--shadow-pink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px var(--shadow-pink);
}

.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  border-bottom: 2px solid var(--pink-medium);
  padding-bottom: 4px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-ghost-link:hover {
  color: var(--pink-deep);
  border-color: var(--pink-deep);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
}

.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--pink-deep);
}

.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .blob-shape {
  position: absolute;
  width: 105%;
  height: 105%;
  z-index: 0;
}

.hero-visual img,
.hero-visual svg.illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(61, 44, 48, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floaty 4s ease-in-out infinite;
}

.float-card.card-1 {
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.float-card.card-2 {
  bottom: 10%;
  right: -6%;
  animation-delay: 1.5s;
}

.float-card .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--pink-deep);
}

.float-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
}

.float-card small {
  font-size: 0.74rem;
  color: var(--ink-soft);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============ SECTION HEADER (shared) ============ */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--pink-pale-2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.bg-pale {
  background: var(--pink-pale);
}

/* ============ SECTION ANATOMI ============ */
.anatomi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.anatomi-image img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(61, 44, 48, 0.12);
  display: block;
}

.anatomi-text {
  text-align: left;
}

.anatomi-text .section-eyebrow {
  margin-bottom: 16px;
}

.anatomi-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 18px;
}

.anatomi-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Penyesuaian Responsif untuk Anatomi di layar kecil / mobile */
@media (max-width: 860px) {
  .anatomi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .anatomi-text {
    text-align: center; /* Ubah menjadi rata tengah saat di HP */
  }
}

/* ============ ICON BOX GRID (Section 2) ============ */

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.icon-box {
  background: var(--white);
  border: 1px solid var(--pink-pale-2);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(232, 93, 138, 0.14);
  border-color: transparent;
}

.icon-box .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--pink-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.icon-box:hover .icon-wrap {
  background: var(--pink-deep);
}

.icon-box .icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--pink-deep);
  transition: stroke 0.3s ease;
}

.icon-box:hover .icon-wrap svg {
  stroke: var(--white);
}

.icon-box h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.icon-box p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ============ CHALLENGE CARDS ============ */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.challenge-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 44px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s ease;
}

.challenge-card:hover {
  transform: translateY(-6px);
}

.challenge-card.card-asi {
  background: linear-gradient(150deg, #FF9FB8 0%, #E85D8A 100%);
}

.challenge-card.card-puting {
  background: linear-gradient(150deg, #F2879F 0%, #C84B72 100%);
}

.challenge-card .card-deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  opacity: 0.18;
  z-index: -1;
}

.challenge-card .tag {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}

.challenge-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.challenge-card p.handle-desc {
  font-size: 0.92rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 50px;
  width: fit-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-watch:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.btn-watch svg {
  width: 18px;
  height: 18px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  position: relative;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: var(--container);
  background: linear-gradient(135deg, #FFE0E9 0%, #FFF5F8 100%);
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.cta-deco {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 280px;
  opacity: 0.5;
  z-index: 0;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink);
}

.cta-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 480px;
}

.cta-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #E85D8A;
  color: var(--white);
  padding: 18px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 16px 32px rgba(232, 93, 138, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(232, 93, 138, 0.38);
}

/* ============ TESTIMONIALS ============ */
.testi-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.testi-track-outer {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.testi-slide {
  flex: 0 0 100%;
  padding: 8px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--pink-pale-2);
  border-radius: var(--radius-lg);
  padding: 48px 50px;
  text-align: center;
}

.testi-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars svg {
  width: 18px;
  height: 18px;
  fill: #FFB800;
  stroke: #FFB800;
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
}

.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pink-deep);
}

.testi-person .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.testi-person .role {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--pink-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease;
}

.testi-arrow:hover {
  background: var(--pink-deep);
  transform: scale(1.06);
}

.testi-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--pink-deep);
  transition: stroke 0.25s ease;
}

.testi-arrow:hover svg {
  stroke: var(--white);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-medium);
  transition: all 0.3s ease;
}

.testi-dot.active {
  background: var(--pink-deep);
  width: 24px;
  border-radius: 50px;
}

/* ============ FAQ ============ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--pink-pale-2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-question .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: '';
  position: absolute;
  background: var(--pink-deep);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-question .plus::before {
  width: 12px;
  height: 2px;
}

.faq-question .plus::after {
  width: 2px;
  height: 12px;
}

.faq-item.open .faq-question .plus {
  background: var(--pink-deep);
  transform: rotate(180deg);
}

.faq-item.open .faq-question .plus::before,
.faq-item.open .faq-question .plus::after {
  background: var(--white);
}

.faq-item.open .faq-question .plus::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 4px 26px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  max-width: 660px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.footer-social a:hover {
  background: var(--pink-deep);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  stroke: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer ul li {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer ul li a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer ul li a:hover {
  color: var(--pink-main);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  stroke: var(--pink-main);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============ POPUP MODAL ============ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 44, 48, 0.5);
  backdrop-filter: blur(4px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 70px rgba(61, 44, 48, 0.25);
}

.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.popup-close:hover {
  background: var(--pink-medium);
}

.popup-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
}

.popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.popup-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--pink-deep);
}

.popup-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.popup-box .popup-sub {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.popup-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.popup-option {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--pink-pale-2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.popup-option input {
  accent-color: var(--pink-deep);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.popup-option span {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
}

.popup-option:hover {
  border-color: var(--pink-medium);
  background: var(--pink-pale);
}

.popup-option.selected {
  border-color: var(--pink-deep);
  background: var(--pink-pale);
}

.btn-submit-popup {
  width: 100%;
  background: var(--pink-deep);
  color: var(--white);
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-submit-popup:hover {
  transform: translateY(-2px);
}

.btn-submit-popup:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.popup-error {
  color: var(--pink-deep);
  font-size: 0.85rem;
  margin-top: 10px;
  min-height: 18px;
}

/* ============ DETAIL PAGE ============ */
.detail-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--pink-pale) 0%, var(--white) 35%);
  padding: 36px 0 80px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  padding: 12px 22px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(61, 44, 48, 0.08);
  margin-bottom: 44px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
}

.back-link:hover {
  transform: translateX(-4px);
  box-shadow: 0 10px 28px rgba(61, 44, 48, 0.12);
}

.back-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--pink-deep);
}

.detail-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.detail-header .section-eyebrow {
  margin-bottom: 16px;
}

.detail-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink);
}

.detail-header p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.video-frame {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(61, 44, 48, 0.15);
  background: #000;
}

.video-frame .video-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.detail-tips {
  max-width: 860px;
  margin: 50px auto 0;
  background: var(--white);
  border: 1px solid var(--pink-pale-2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.detail-tips h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--ink);
}

.detail-tips ul {
  display: grid;
  gap: 14px;
}

.detail-tips li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.detail-tips li svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-soft);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-cta {
  max-width: 860px;
  margin: 36px auto 0;
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .challenge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 36px;
  }
  .cta-action {
    justify-content: center;
  }
  .cta-text p {
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px 36px;
    gap: 22px;
    box-shadow: 0 16px 32px rgba(61, 44, 48, 0.1);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  
  .dropdown {
    width: 100%;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    display: block;
    background: transparent;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 22px;
  }
  .hero {
    padding: 130px 0 70px;
  }
  .hero-stats {
    gap: 26px;
  }
  .icon-grid {
    grid-template-columns: 1fr;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 0;
  }
  .testi-card {
    padding: 36px 26px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .challenge-card {
    padding: 32px 26px;
    min-height: 300px;
  }
  .detail-tips {
    padding: 28px 24px;
  }
  .cta-section {
    padding: 40px 24px;
  }
}
