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

:root {
  --primary: #FF2D78;
  --primary-dark: #E0105C;
  --primary-light: #FF7EB3;
  --purple: #A855F7;
  --teal: #00D4AA;
  --blue: #3B82F6;
  --bg: #FFFBF9;
  --bg-pink: #FFF5F8;
  --bg-lavender: #FBF5FF;
  --text-dark: #1A0A12;
  --text-body: #5C4352;
  --text-muted: #9A8490;
  --card-border: #FFE0EB;
  --card-bg: #FFFFFF;
  --gradient: linear-gradient(135deg, #FF2D78, #A855F7);
  --gradient-soft: linear-gradient(180deg, #FFFBF9, #FFF5F8);
  --gradient-lavender: linear-gradient(180deg, #FFF5F8, #FBF5FF);
  --gradient-back: linear-gradient(180deg, #FBF5FF, #FFFBF9);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 800px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 251, 249, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 224, 235, 0.5);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { width: 36px; height: 36px; border-radius: 10px; }
.nav-brand span { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none; color: var(--text-body); font-weight: 600; font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; color: #fff; background: var(--gradient);
  box-shadow: 0 4px 16px rgba(255, 45, 120, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255, 45, 120, 0.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; color: var(--primary); background: transparent;
  border: 2px solid var(--primary);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ===== GRADIENT BLOBS ===== */
.blob {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.blob-pink { background: var(--primary); opacity: 0.10; }
.blob-purple { background: var(--purple); opacity: 0.10; }
.blob-teal { background: var(--teal); opacity: 0.08; }
.blob-blue { background: var(--blue); opacity: 0.08; }

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--primary); margin-bottom: 12px;
}
.section-title {
  font-size: 2.2rem; font-weight: 900; color: var(--text-dark);
  line-height: 1.25; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-body); max-width: 600px;
  line-height: 1.7; margin-bottom: 48px;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; }

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  padding: 140px 0 40px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.4rem; font-weight: 900; color: var(--text-dark);
}
.page-header p {
  margin-top: 12px; color: var(--text-muted); font-size: 0.95rem;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ===== LEGAL CONTENT (privacy, terms) ===== */
.legal-content {
  padding: 40px 0 100px;
}
.legal-content h2 {
  font-size: 1.3rem; font-weight: 800; color: var(--text-dark);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.95rem; line-height: 1.75; color: var(--text-body); margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px; margin-bottom: 12px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--primary); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ===== SUPPORT FORM ===== */
.support-content {
  padding: 40px 0 100px;
  max-width: 560px;
  margin: 0 auto;
}
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(255, 45, 120, 0.06);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-group 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 12 12'%3E%3Cpath fill='%239A8490' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(255, 45, 120, 0.25);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 45, 120, 0.3);
}
.btn-submit:active {
  transform: translateY(0);
}
.success-message {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 45, 120, 0.06);
}
.success-message .check-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #00D4AA, #00B894);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.success-message .check-icon svg { width: 32px; height: 32px; }
.success-message h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px;
}
.success-message p {
  color: var(--text-body); font-size: 0.95rem;
}

/* ===== FAQ ===== */
.faq-section {
  margin-top: 60px;
}
.faq-section h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--text-dark);
  text-align: center; margin-bottom: 24px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px;
}
.faq-item p {
  font-size: 0.9rem; color: var(--text-body); line-height: 1.65;
}
.faq-item a { color: var(--primary); text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  padding: 48px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--card-border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 8px; }
.footer-brand span { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  text-decoration: none; color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy { text-align: center; margin-top: 32px; font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .page-header h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .contact-form { padding: 28px 20px; }
}
