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

:root {
  --brand: #7C3AED;
  --brand-light: #EDE9FE;
  --brand-dark: #5B21B6;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --text: #111827;
  --text-2: #4B5563;
  --text-3: #9CA3AF;
  --border: #E5E7EB;
  --bg: #FAFAFA;
  --bg-2: #F3F4F6;
  --white: #FFFFFF;
  --success: #10B981;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================
   UTILITY
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section__head { text-align: center; margin-bottom: 64px; }
.section__tag { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; }
.section__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section__desc { font-size: 17px; color: var(--text-2); max-width: 600px; margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; cursor: pointer; border: none;
  border-radius: var(--radius-sm); transition: all .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.35); }
.btn--outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--sm { font-size: 14px; padding: 10px 20px; }
.btn--lg { font-size: 16px; padding: 16px 32px; }
.btn--full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 40px; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { font-size: 28px; }
.logo__text { font-size: 18px; font-weight: 800; color: var(--text); }
.logo__dot { color: var(--brand); }
.nav { display: flex; gap: 8px; margin-left: auto; }
.nav__link { font-size: 14px; font-weight: 500; color: var(--text-2); padding: 8px 14px; border-radius: 8px; transition: all .2s; }
.nav__link:hover { color: var(--brand); background: var(--brand-light); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(135deg, #FAF5FF 0%, #EDE9FE 50%, #FEF3C7 100%);
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  padding: 8px 16px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.hero__title { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero__accent { color: var(--brand); }
.hero__desc { font-size: 17px; color: var(--text-2); line-height: 1.7; margin-bottom: 36px; }
.hero__stats { display: flex; gap: 32px; margin-bottom: 36px; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num { font-size: 28px; font-weight: 800; color: var(--brand); }
.hero__stat-label { font-size: 13px; color: var(--text-3); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero floating cards */
.hero__visual { position: relative; height: 420px; }
.hero__cards { position: relative; width: 100%; height: 100%; }
.card-float {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 4px;
  animation: float 4s ease-in-out infinite;
}
.card-float__emoji { font-size: 32px; }
.card-float__text { font-size: 14px; font-weight: 700; color: var(--text); }
.card-float__count { font-size: 12px; color: var(--brand); font-weight: 600; }
.card-float--1 { top: 20px; left: 10px; animation-delay: 0s; }
.card-float--2 { top: 10px; right: 10px; animation-delay: 1s; }
.card-float--3 { bottom: 80px; left: 30px; animation-delay: 2s; }
.card-float--4 { bottom: 30px; right: 20px; animation-delay: .5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--text); padding: 20px 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-bar__item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500; padding: 8px 24px; }
.trust-bar__icon { font-size: 18px; }
.trust-bar__sep { width: 1px; height: 20px; background: rgba(255,255,255,.2); }

/* ============================================
   CATEGORIES
   ============================================ */
.categories { background: var(--bg); }
.categories__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: all .25s ease; cursor: pointer; position: relative; overflow: hidden;
}
.cat-card:hover { border-color: var(--brand); box-shadow: 0 8px 32px rgba(124,58,237,.15); transform: translateY(-2px); }
.cat-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: #FEF2F2; color: #EF4444; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; letter-spacing: .03em;
}
.cat-card--hot { border-color: #FCA5A5; background: linear-gradient(135deg, #FFF5F5, #FFF); }
.cat-card--accent { border-color: #FDA4AF; background: linear-gradient(135deg, #FFF1F2, #FFF); }
.cat-card__emoji { font-size: 36px; }
.cat-card__title { font-size: 17px; font-weight: 700; }
.cat-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; }
.cat-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.cat-card__count { font-size: 12px; font-weight: 600; color: var(--brand); }
.cat-card__arrow { font-size: 16px; color: var(--text-3); transition: transform .2s; }
.cat-card:hover .cat-card__arrow { transform: translateX(4px); color: var(--brand); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how__steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.step { display: flex; gap: 24px; align-items: flex-start; padding: 32px; background: var(--bg); border-radius: var(--radius); }
.step__num { font-size: 48px; font-weight: 900; color: var(--brand-light); line-height: 1; flex-shrink: 0; }
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step__desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ============================================
   WHY US
   ============================================ */
.why { background: var(--bg); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.why-card__icon { font-size: 36px; margin-bottom: 16px; }
.why-card__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ============================================
   PRICING
   ============================================ */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; position: relative; background: var(--white);
}
.pricing-card--featured { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(124,58,237,.1); }
.pricing-card--premium { background: linear-gradient(135deg, #1E1B4B, #312E81); color: var(--white); border-color: #4338CA; }
.pricing-card--premium .pricing-card__features li { color: rgba(255,255,255,.8); }
.pricing-card--premium .btn { color: var(--white); border-color: rgba(255,255,255,.4); }
.pricing-card--premium .btn:hover { background: rgba(255,255,255,.1); }
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-card__name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 8px; }
.pricing-card--premium .pricing-card__name { color: rgba(255,255,255,.5); }
.pricing-card__price { font-size: 40px; font-weight: 900; margin-bottom: 28px; }
.pricing-card__price span { font-size: 16px; font-weight: 500; color: var(--text-2); }
.pricing-card--premium .pricing-card__price span { color: rgba(255,255,255,.6); }
.pricing-card__features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-card__features li { font-size: 14px; color: var(--text-2); }
.pricing__note { text-align: center; margin-top: 40px; font-size: 15px; color: var(--text-2); }

/* ============================================
   ARTICLES
   ============================================ */
.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card--featured { grid-column: span 2; }
.article-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all .25s; background: var(--white);
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.article-card--featured { flex-direction: row; }
.article-card__img {
  height: 200px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
}
.article-card--featured .article-card__img { width: 280px; height: auto; }
.article-card__img--massage { background: linear-gradient(135deg, #FEE2E2, #FECACA); }
.article-card__img--gift { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.article-card__img--mom { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.article-card__img--spa { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); }
.article-card__img--extreme { background: linear-gradient(135deg, #FEE2E2, #FECACA); }
.article-card__img--romantic { background: linear-gradient(135deg, #FCE7F3, #FBCFE8); }
.article-card__img--men { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.article-card__img--digital { background: linear-gradient(135deg, #F3F4F6, #E5E7EB); }
.article-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card__cat { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; }
.article-card__title { font-size: 16px; font-weight: 700; line-height: 1.4; }
.article-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; }
.article-card__meta { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-3); }
.article-card__read { color: var(--brand); font-weight: 600; }
.articles__more { text-align: center; margin-top: 48px; }

/* ============================================
   SEMANTIC MAP
   ============================================ */
.semantic { background: var(--bg); }
.semantic__map { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.sem-center {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white); border: 3px solid var(--brand); border-radius: 20px;
  padding: 24px 48px; box-shadow: 0 0 0 8px var(--brand-light);
}
.sem-center span { font-size: 32px; }
.sem-center strong { font-size: 18px; font-weight: 800; }
.sem-center small { font-size: 13px; color: var(--brand); font-weight: 600; }
.sem-clusters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.sem-cluster { display: flex; flex-direction: column; gap: 12px; }
.sem-node--cat {
  background: var(--white); border: 2px solid var(--brand); border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 14px; font-weight: 700; text-align: center;
}
.sem-subnodes { display: flex; flex-direction: column; gap: 6px; padding-left: 12px; }
.sem-subnodes span {
  background: var(--brand-light); color: var(--brand-dark);
  font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 6px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: linear-gradient(135deg, #FAF5FF, #EDE9FE); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin: 16px 0; }
.contact__desc { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
.contact__benefits { display: flex; flex-direction: column; gap: 10px; }
.contact__benefit { font-size: 14px; font-weight: 500; color: var(--text-2); }
.contact__benefit::before { color: var(--success); }
.contact__form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-input {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; font-size: 15px; font-family: inherit; color: var(--text);
  transition: border-color .2s; outline: none; width: 100%;
}
.form-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(124,58,237,.1); }
.form-select { appearance: none; cursor: pointer; }
.form-note { font-size: 12px; color: var(--text-3); text-align: center; }
.form-note a { color: var(--brand); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--text); color: rgba(255,255,255,.8); padding: 64px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 260px 1fr; gap: 64px; margin-bottom: 48px; }
.footer .logo__text, .footer .logo__dot { color: rgba(255,255,255,.9); }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 12px; line-height: 1.6; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__col a:hover { color: rgba(255,255,255,.95); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.3); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { height: 280px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .hero { padding: 48px 0 64px; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .hero__actions { flex-direction: column; }
  .how__steps { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .articles__grid { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: span 1; flex-direction: column; }
  .article-card--featured .article-card__img { width: 100%; height: 200px; }
  .sem-clusters { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .categories__grid { grid-template-columns: 1fr; }
  .sem-clusters { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .trust-bar__sep { display: none; }
}
