/* ============================================================
   UGC GUIDE — LANDING PAGE | MARI MOROZ
   Design System: Mari Moroz Brand (Cream + Black + Pink)
   Fonts: Anton (headings) + Poppins (body) + Caveat (script)
   Mobile-first | 8 Folds
   ============================================================ */

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

/* --- TOKENS --- */
:root {
  --bg-cream: #ede8d1;
  --bg-dark: #000000;
  --bg-dark-card: #111111;
  --bg-white: #FFFFFF;

  --pink: #FF89BF;
  --pink-hover: #FAA4F7;
  --pink-shadow: rgba(255, 137, 191, 0.35);
  --green: #DFF18E;
  --green-soft: #bfecac;
  --blue: #C0F0F7;
  --bordo: #53101F;

  --text-dark: #000000;
  --text-white: #FFFFFF;
  --text-gray: #C0C0C0;
  --text-dark-muted: rgba(0, 0, 0, 0.6);

  --font-heading: 'Anton', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-pink: 0 12px 35px var(--pink-shadow);
  --shadow-card: 0 5px 20px rgba(0, 0, 0, 0.5);
  --shadow-light: 0 15px 40px rgba(0, 0, 0, 0.1);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 800px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- LAYOUT --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 20px; position: relative; }
.section--dark { background: var(--bg-dark); color: var(--text-white); }
.section--white { background: var(--bg-white); }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--shadow-pink); }
  50% { box-shadow: 0 16px 45px rgba(255, 137, 191, 0.5); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* --- TYPOGRAPHY --- */
.heading {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.heading--hero { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 20px; }
.heading--section { font-size: clamp(1.6rem, 4.5vw, 2.8rem); margin-bottom: 16px; }

.heading .pink { color: var(--pink); }

.script {
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

.body-text {
  font-size: 1rem;
  color: var(--text-dark-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.body-text strong { color: var(--text-dark); font-weight: 600; }

.section--dark .body-text { color: var(--text-gray); }
.section--dark .body-text strong { color: var(--text-white); }

/* --- BUTTONS --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--pink);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-pink);
  animation: pulseGlow 3s ease-in-out infinite;
  width: 100%;
  max-width: 460px;
}

.cta-button:hover {
  background: var(--pink-hover);
  transform: translateY(-2px) scale(1.03);
}

.cta-button:active { transform: scale(0.97); }

.cta-button .arrow {
  background: var(--text-dark);
  color: var(--pink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cta-wrapper { text-align: center; margin: 32px 0; }

.cta-micro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

.section--dark .cta-micro { color: var(--text-gray); }

/* --- HERO --- */
.hero {
  padding: 60px 20px 80px;
  text-align: center;
  background: var(--bg-cream);
}

.hero-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.hero-logo .pink { color: var(--pink); }

.hero .subheadline {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 500;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* --- HERO MOCKUP --- */
@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 8px 0 16px;
}

.hero-mockup__img {
  width: 100%;
  max-width: 500px;
  animation: mockupFloat 5s ease-in-out infinite;
}

.hero-mockup__device {
  width: 220px;
  aspect-ratio: 9 / 16;
  background: var(--bg-dark);
  border-radius: 28px;
  padding: 10px;
  border: 5px solid var(--bg-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: mockupFloat 5s ease-in-out infinite;
}

.hero-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-hover) 40%, var(--blue) 100%);
  position: relative;
}

.hero-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mockup__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  padding: 20px;
}

.hero-mockup__icon {
  font-size: 3rem;
  filter: grayscale(1) brightness(0);
}

.hero-mockup__label {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--bg-dark);
  letter-spacing: 0.04em;
}

.hero-mockup__sub {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--bg-dark);
  opacity: 0.7;
  text-align: center;
  line-height: 1.3;
}

.hero-mockup__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-mockup__badge {
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 137, 191, 0.3);
}

@media (min-width: 768px) {
  .hero-mockup__device { width: 260px; }
}

/* --- OPPORTUNITY RANGE --- */
.opp-range {
  display: inline-block;
  background: var(--bg-dark);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 24px 0;
}

.opp-range .amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--pink);
  text-transform: uppercase;
}

.opp-range .label {
  font-size: 0.85rem;
  color: var(--text-gray);
  display: block;
  margin-top: 4px;
}

/* --- LIST (no/yes) --- */
.opp-list { list-style: none; margin: 24px 0; }

.opp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 1rem;
  font-weight: 500;
}

.opp-list li .icon { flex-shrink: 0; font-size: 1rem; margin-top: 3px; }

/* --- AUTHORITY CARD --- */
.authority-card {
  background: var(--bg-dark);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.authority-photo {
  width: 120px;
  height: 140px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--pink);
  overflow: hidden;
  box-shadow: 0 10px 20px var(--pink-shadow);
}

.authority-photo img { width: 100%; height: 100%; object-fit: cover; }

.authority-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.authority-role {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--pink);
}

.authority-quote {
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-gray);
  font-style: italic;
  text-align: center;
  max-width: 500px;
  line-height: 1.5;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 12px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--pink);
  text-transform: uppercase;
}

.stat-label { font-size: 0.75rem; color: var(--text-gray); margin-top: 4px; }

/* --- BELIEF CARDS --- */
.belief-cards { display: flex; flex-direction: column; gap: 16px; }

.belief-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color 0.3s;
}

.belief-card:hover { border-color: var(--pink); }

.belief-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.belief-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dark);
  flex-shrink: 0;
}

.belief-card__title {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--text-white);
}

.belief-card__text {
  font-size: 0.92rem;
  color: var(--pink);
  font-weight: 600;
  line-height: 1.6;
}

/* --- MODULE ITEMS --- */
.module-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.module-item {
  display: flex;
  gap: 16px;
  background: var(--bg-cream);
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s;
}

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

.module-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.module-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.module-content p { font-size: 0.88rem; color: var(--text-dark-muted); line-height: 1.6; }

/* --- BONUS --- */
.bonus-title {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--bordo);
  margin-bottom: 16px;
  text-align: center;
}

.bonus-list { display: flex; flex-direction: column; gap: 10px; }

.bonus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-white);
}

.bonus-item__icon { font-size: 1.2rem; flex-shrink: 0; }

.bonus-item__text { font-size: 0.88rem; }
.bonus-item__text strong { color: var(--pink); display: block; margin-bottom: 2px; font-weight: 600; }

/* --- TESTIMONIALS --- */
.testimonials { display: flex; flex-direction: column; gap: 16px; }

.testimonial {
  background: var(--bg-dark-card);
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.3s;
}

.testimonial:hover { border-color: var(--pink); }

.testimonial__text {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.testimonial__name { font-size: 0.85rem; font-weight: 600; color: var(--text-white); }
.testimonial__role { font-size: 0.75rem; color: var(--text-gray); }

/* --- FOR WHO --- */
.for-who { display: grid; gap: 16px; margin-top: 32px; }

.for-who__yes, .for-who__no {
  border-radius: var(--radius-md);
  padding: 24px;
}

.for-who__yes { background: var(--bg-dark); color: var(--text-white); border: 1px solid rgba(192, 192, 192, 0.1); }
.for-who__no { background: var(--bg-dark-card); color: var(--text-gray); border: 1px solid rgba(192, 192, 192, 0.05); }

.for-who h4 { font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase; margin-bottom: 14px; letter-spacing: 0.04em; }
.for-who__yes h4 { color: var(--green); }
.for-who__no h4 { color: var(--text-gray); }

.for-who ul { list-style: none; }
.for-who li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: 0.9rem; line-height: 1.5; }
.for-who li .icon { flex-shrink: 0; margin-top: 2px; }

/* --- OFFER BOX --- */
.offer-box {
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid rgba(192, 192, 192, 0.3);
  box-shadow: var(--shadow-light);
}

.offer-anchor { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.offer-anchor__item { font-size: 0.88rem; color: var(--text-dark-muted); text-decoration: line-through; }

.offer-from {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer-price {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 5.5rem);
  color: var(--text-dark);
  line-height: 1;
  margin: 8px 0;
}

.offer-badge {
  display: inline-block;
  background: var(--green);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-dark);
  color: var(--text-white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  margin: 24px 0 0;
}

.guarantee-box__icon { font-size: 1.8rem; flex-shrink: 0; }

.guarantee-box__text { font-size: 0.85rem; color: var(--text-gray); line-height: 1.6; }
.guarantee-box__text strong { color: var(--text-white); display: block; margin-bottom: 4px; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-dark-card);
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-script);
  font-size: 1.2rem;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--pink);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--pink); font-weight: 600; line-height: 1.6; }

/* --- CLOSING --- */
.closing-text { text-align: center; max-width: 520px; margin: 0 auto 32px; }

.closing-text .option { margin-bottom: 16px; }
.closing-text .option strong { color: var(--text-dark); }
.closing-text .option--highlight strong { color: var(--pink); }

.section--dark .closing-text .option strong { color: var(--text-white); }
.section--dark .closing-text .option--highlight strong { color: var(--pink); }

/* --- SEPARATOR ARROW --- */
.section-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -24px auto 40px;
  position: relative;
  z-index: 10;
  border: 4px solid var(--bg-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
  color: var(--text-dark);
}

/* --- DIVIDER --- */
.pink-pill {
  display: inline-block;
  background: var(--pink);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px var(--pink-shadow);
  letter-spacing: 0.03em;
}

/* --- FOOTER --- */
.footer {
  padding: 40px 20px;
  text-align: center;
  background: var(--bg-dark);
  color: var(--text-gray);
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-logo .pink { color: var(--pink); }
.footer p { font-size: 0.75rem; line-height: 1.6; }

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
  .section { padding: 100px 20px; }
  .hero { padding: 80px 20px 100px; }
  .belief-cards { flex-direction: row; gap: 16px; }
  .belief-card { flex: 1; }
  .authority-stats { grid-template-columns: repeat(4, 1fr); }
  .for-who { grid-template-columns: 1fr 1fr; }
  .offer-box { padding: 56px 48px; }
  .authority-card { flex-direction: row; gap: 32px; text-align: left; padding: 40px 36px; }
  .authority-quote { text-align: left; }
}
