/* ========================================
   PERIODLY — Pink Theme Website
   ======================================== */

:root {
  /* Pink Palette */
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --pink-900: #831843;

  /* Accent */
  --rose: #e11d48;
  --hot-pink: #ff0080;
  --magenta: #c026d3;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--pink-400), var(--hot-pink), var(--magenta));
  --gradient-soft: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  --gradient-hero: linear-gradient(180deg, var(--pink-50) 0%, var(--white) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(236,72,153,0.12);
  --shadow-lg: 0 10px 40px rgba(236,72,153,0.15);
  --shadow-xl: 0 20px 60px rgba(236,72,153,0.2);
  --shadow-glow: 0 0 40px rgba(236,72,153,0.3);

  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== UTILITY ========== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(236,72,153,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236,72,153,0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--pink-600);
  border: 2px solid var(--pink-200);
}

.btn-secondary:hover {
  border-color: var(--pink-400);
  background: var(--pink-50);
  transform: translateY(-2px);
}

.section {
  padding: 100px 0;
}

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

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(236,72,153,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-svg {
  height: 42px;
  width: auto;
}

.logo-text {
  background: linear-gradient(135deg, #be185d, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.4rem;
}

.footer-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.logo-svg-full {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink-600);
  background: var(--pink-50);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(236,72,153,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 72px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--pink-200);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--pink-300);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--pink-100);
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: var(--magenta);
  opacity: 0.15;
  top: 20%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--white);
  color: var(--pink-600);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  margin-top: 32px;
  animation: slideUp 0.6s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--gray-900);
  animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: slideUp 0.6s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: slideUp 0.6s ease-out 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink-600);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

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

/* Hero Visual — Shipping Box */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: slideUp 0.8s ease-out 0.3s both;
}

.period-box {
  width: 300px;
  position: relative;
  transform: rotate(-5deg);
  filter: drop-shadow(0 30px 40px rgba(236,72,153,0.2));
}

.box-lid {
  width: 100%;
  height: 30px;
  background: var(--pink-500);
  border-radius: 12px 12px 0 0;
  position: relative;
}

.box-lid::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  right: -8px;
  height: 16px;
  background: var(--pink-400);
  border-radius: 4px;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.box-body {
  width: 100%;
  height: 200px;
  background: var(--pink-100);
  border-radius: 0 0 12px 12px;
  border: 3px solid var(--pink-200);
  border-top: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-ad-slot {
  background: var(--white);
  border: 2px dashed var(--pink-300);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.ad-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
  font-weight: 600;
}

.ad-placeholder {
  margin-top: 6px;
  padding: 8px;
  background: var(--pink-50);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--pink-500);
  font-weight: 600;
}

.box-items {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tampon-item {
  width: 20px;
  height: 60px;
  background: var(--white);
  border: 2px solid var(--pink-300);
  border-radius: 10px 10px 6px 6px;
  position: relative;
}

.tampon-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--pink-400);
  border-radius: 50%;
}

.floating-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-label {
  position: absolute;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink-600);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.label-1 { top: 10%; left: 0; animation: float 4s ease-in-out infinite; }
.label-2 { top: 5%; right: 0; animation: float 5s ease-in-out infinite 1s; }
.label-3 { bottom: 15%; right: 5%; animation: float 6s ease-in-out infinite 2s; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--pink-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--pink-300);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== ABOUT ========== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.about-card {
  background: var(--pink-50);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--pink-100);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-200);
}

.about-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.about-icon svg {
  width: 24px;
  height: 24px;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.mission-statement {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.mission-icon {
  font-size: 4rem;
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  top: 20px;
  left: 40px;
}

.mission-statement blockquote {
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 20px;
  font-weight: 300;
}

.mission-statement cite {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: normal;
  font-weight: 600;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--pink-50);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pink-200);
}

.step {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--pink-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink-600);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.step-content p {
  color: var(--gray-600);
  max-width: 450px;
}

.step-visual {
  min-width: 120px;
  display: flex;
  justify-content: center;
}

.step-icon-box {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-500);
}

.step-icon-box svg {
  width: 40px;
  height: 40px;
}

/* ========== SPONSORS ========== */
.sponsors {
  background: var(--white);
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.sponsor-logo {
  background: var(--pink-50);
  border: 1px solid var(--pink-100);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-height: 100px;
}

.sponsor-logo:hover {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.sponsor-placeholder {
  font-weight: 700;
  font-size: 1rem;
  color: var(--pink-400);
  text-align: center;
}

.sponsor-cta {
  text-align: center;
  background: var(--gradient-soft);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 64px;
}

.sponsor-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.sponsor-cta p {
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto 24px;
}

.how-sponsors-work h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--gray-900);
}

.sponsor-model {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.model-item {
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  max-width: 250px;
  flex: 1;
  transition: var(--transition);
}

.model-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--pink-200);
}

.model-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}

.model-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.model-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.model-arrow {
  color: var(--pink-400);
  min-width: 40px;
}

.model-arrow svg {
  width: 32px;
  height: 32px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--pink-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition);
  border: 1px solid var(--pink-100);
}

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

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-300);
}

/* ========== FAQ ========== */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--pink-50);
  border-radius: 16px;
  border: 1px solid var(--pink-100);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--pink-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--pink-500);
  transition: var(--transition);
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--pink-50);
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.cta-box > p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  position: relative;
}

.cta-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.cta-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.cta-form input:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.25);
}

.cta-form .btn-primary {
  background: var(--white);
  color: var(--pink-600);
  box-shadow: none;
  white-space: nowrap;
}

.cta-form .btn-primary:hover {
  background: var(--pink-50);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.8rem;
  opacity: 0.7;
  position: relative;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 64px 0 0;
}

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

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-brand .logo-text {
  background: linear-gradient(135deg, #f9a8d4, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-300);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--pink-400);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* ========== MOCK BOX VISUAL ========== */
.mockbox-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mockbox-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-100);
}

.mockbox-photo {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.mockbox-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.mockbox-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--pink-50);
  border: 2px dashed var(--pink-300);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--pink-400);
  text-align: center;
  padding: 24px;
}

.mockbox-placeholder svg {
  width: 48px;
  height: 48px;
}

.mockbox-placeholder span {
  font-size: 0.9rem;
  line-height: 1.5;
}

.mockbox-placeholder small {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.mockbox-placements {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockbox-placement-item {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--pink-100);
  transition: var(--transition);
}

.mockbox-placement-item:hover {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.mockbox-placement-item.featured {
  border-color: var(--pink-400);
  background: var(--pink-50);
}

.mockbox-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.mockbox-placement-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.mockbox-placement-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--pink-600);
  font-weight: 600;
  margin-bottom: 4px;
}

.mockbox-placement-item p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }

  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-logos { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-model { flex-wrap: wrap; }
  .model-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 20px 20px;
  }

  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
  .hero-container { gap: 20px; }

  .about-grid { grid-template-columns: 1fr; }
  .sponsor-logos { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .steps::before { left: 40px; }
  .step { flex-direction: column; text-align: center; gap: 16px; }
  .step-visual { min-width: unset; }
  .step-content p { margin: 0 auto; }

  .cta-form { flex-direction: column; }
  .cta-box { padding: 40px 24px; }
  .mission-statement { padding: 32px; }
  .mission-statement blockquote { font-size: 1.05rem; }

  .waitlist-form { flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-process { flex-direction: column; align-items: center; }

  /* Waitlist form mobile */
  .waitlist-box { padding: 40px 20px; }
  .waitlist-content h2 { font-size: 1.8rem; }
  .waitlist-count { font-size: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }
  .radio-label { width: 100%; justify-content: center; }
  .form-buttons { flex-direction: column; }

  /* Sponsor page mobile */
  .sponsor-hero-content .hero-title { font-size: 2.2rem; }
  .placement-cards { grid-template-columns: 1fr; }
  .box-visual-grid { grid-template-columns: 1fr; }
  .insert-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .sponsor-model { flex-direction: column; align-items: center; }
  .mockbox-layout { grid-template-columns: 1fr; }

  /* Shop mobile */
  .product-grid { grid-template-columns: 1fr; }
  .charity-notice { flex-direction: column; text-align: center; }

  /* General mobile */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat { align-items: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .waitlist-content h2 { font-size: 1.5rem; }
  .waitlist-open-btn { width: 100%; }
  .cta-box { padding: 32px 16px; }
  .cta-box h2 { font-size: 1.5rem; }
  .mission-statement blockquote { font-size: 0.95rem; }
  .about-card { padding: 24px 16px; }
}

/* ========== WAITLIST ========== */
.sponsor-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.sponsor-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.waitlist-section {
  background: var(--white);
}

.waitlist-box {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.waitlist-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.waitlist-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.waitlist-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.waitlist-content > p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 32px;
}

.waitlist-counter {
  margin-bottom: 32px;
}

.waitlist-count {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease;
}

.waitlist-count-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.waitlist-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.waitlist-form input:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.25);
}

.waitlist-form .btn-primary {
  background: var(--white);
  color: var(--pink-600);
  box-shadow: none;
  white-space: nowrap;
}

.waitlist-form .btn-primary:hover {
  background: var(--pink-50);
  transform: translateY(-2px);
}

.waitlist-note {
  font-size: 0.8rem;
  opacity: 0.6;
}

.waitlist-open-btn {
  font-size: 1.1rem;
  padding: 16px 40px;
  margin: 0 auto 20px;
  display: block;
}

/* Multi-Step Form */
.waitlist-form-full {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: slideUp 0.3s ease-out;
}

.form-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.2);
}

.form-group select option {
  background: var(--pink-700);
  color: var(--white);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: var(--transition);
}

.radio-label:hover {
  background: rgba(255,255,255,0.18);
}

.radio-label input[type="radio"] {
  accent-color: var(--white);
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.8) !important;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--white);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.form-next,
.form-back {
  flex: 1;
}

.form-back {
  background: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  box-shadow: none !important;
}

.form-back:hover {
  background: rgba(255,255,255,0.25) !important;
}

/* ========== SHOP ========== */
.shop-process {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.shop-process-step {
  text-align: center;
  max-width: 280px;
  padding: 24px;
}

.shop-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.shop-process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.shop-process-step p {
  font-size: 0.92rem;
  color: var(--gray-600);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--pink-100);
  transition: var(--transition);
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-200);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--pink-50);
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--pink-300);
}

.product-placeholder svg {
  width: 48px;
  height: 48px;
}

.product-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pink-600);
}

.product-donation {
  font-size: 0.75rem;
  background: var(--pink-100);
  color: var(--pink-700);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.charity-notice {
  display: flex;
  gap: 20px;
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 16px;
  padding: 28px;
  align-items: flex-start;
}

.charity-icon {
  min-width: 40px;
  color: var(--pink-500);
}

.charity-icon svg {
  width: 28px;
  height: 28px;
}

.charity-notice h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.charity-notice p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== SPONSOR FORM ========== */
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236,72,153,0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px 8px rgba(236,72,153,0.3); }
}

.sponsor-hero-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
}

.sponsor-hero-btn:hover {
  animation: none;
  transform: scale(1.08);
}

.sponsor-form {
  max-width: 740px;
  margin: 0 auto;
}

.form-section {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-100);
}

.sponsor-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sponsor-form .form-group {
  margin-bottom: 16px;
}

.sponsor-form .form-group:last-child {
  margin-bottom: 0;
}

.sponsor-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.sponsor-form .optional {
  font-weight: 400;
  color: var(--gray-400);
}

.sponsor-form .form-group:last-child {
  margin-bottom: 0;
}

.sponsor-form input[type="text"],
.sponsor-form input[type="email"],
.sponsor-form input[type="tel"],
.sponsor-form input[type="url"],
.sponsor-form select,
.sponsor-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  box-sizing: border-box;
}

.sponsor-form input:focus,
.sponsor-form select:focus,
.sponsor-form textarea:focus {
  outline: none;
  border-color: var(--pink-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.1);
}

.sponsor-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.sponsor-form select option {
  background: var(--white);
  color: var(--gray-900);
}

.sponsor-form textarea {
  resize: vertical;
  min-height: 100px;
}

.sponsor-form .checkbox-group,
.sponsor-form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.sponsor-form .checkbox-label,
.sponsor-form .radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700) !important;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.sponsor-form .checkbox-label:hover,
.sponsor-form .radio-label:hover {
  border-color: var(--pink-300);
  background: var(--pink-50);
  color: var(--pink-700) !important;
}

.sponsor-form .checkbox-label input[type="checkbox"],
.sponsor-form .radio-label input[type="radio"] {
  accent-color: var(--pink-500);
  width: 14px;
  height: 14px;
}

.sponsor-form .checkbox-label:has(input:checked),
.sponsor-form .radio-label:has(input:checked) {
  border-color: var(--pink-400);
  background: var(--pink-100);
  color: var(--pink-700) !important;
  font-weight: 600;
}

.sponsor-form .consent-label {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-700) !important;
}

.sponsor-form .consent-label:has(input:checked) {
  border-color: var(--pink-400);
  background: var(--pink-50);
}

.sponsor-submit-btn {
  display: block;
  width: 100%;
  max-width: 740px;
  margin: 8px auto 12px;
  padding: 16px 32px;
  font-size: 1rem;
}

.sponsor-form .cta-note {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  max-width: 740px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sponsor-form .form-row { grid-template-columns: 1fr; }
  .form-section { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .sponsor-form .checkbox-group,
  .sponsor-form .radio-group { flex-direction: column; }
  .sponsor-form .checkbox-label,
  .sponsor-form .radio-label { width: 100%; }
}
