*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0008;
  --bg2: #100010;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,100,160,0.15);
  --primary: #e0336e;
  --primary-dark: #b01f52;
  --accent: #9b2be0;
  --accent2: #c44bff;
  --gold: #f0a050;
  --text: #f0e0e8;
  --muted: #b090a0;
  --online: #28e07a;
  --radius: 16px;
  --glass: rgba(20, 0, 20, 0.55);
  --urgency-h: 38px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--urgency-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 1rem;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent));
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  animation: urgencyGlow 2.5s ease-in-out infinite;
}

.urgency-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes urgencyGlow {
  0%, 100% { box-shadow: 0 2px 12px rgba(224,51,110,0.3); }
  50% { box-shadow: 0 2px 20px rgba(196,75,255,0.5); }
}

nav {
  position: fixed;
  top: var(--urgency-h);
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(10,0,8,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(224,51,110,0.18);
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.87rem !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

#home {
  min-height: 100vh;
  padding: calc(var(--urgency-h) + 100px) 5% 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(155,43,224,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(224,51,110,0.18) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(224,51,110,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(224,51,110,0.5); }

.btn-pulse {
  animation: btnPulse 1.8s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(224,51,110,0.35); }
  50% { box-shadow: 0 4px 36px rgba(196,75,255,0.65); transform: scale(1.02); }
}

.btn-secondary {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(224,51,110,0.08); }

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  position: relative;
}

.hero-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .3s;
  animation: fadeUp .6s ease both;
}
.hero-card:nth-child(2) { animation-delay: .1s; margin-top: 1.5rem; }
.hero-card:nth-child(3) { animation-delay: .2s; }
.hero-card:nth-child(4) { animation-delay: .3s; margin-top: 1.5rem; }
.hero-card:hover { transform: translateY(-4px); }
.hero-card img { width: 100%; height: 160px; object-fit: cover; }
.hero-card-info { padding: .6rem .8rem; display: flex; justify-content: space-between; align-items: center; }
.hero-card-info span { font-size: .85rem; font-weight: 600; }

.badge-online {
  background: rgba(40,224,122,0.15);
  color: var(--online);
  border: 1px solid rgba(40,224,122,0.3);
  font-size: .72rem;
  padding: .18rem .55rem;
  border-radius: 100px;
  font-weight: 700;
}

.highlight-banner {
  background: linear-gradient(135deg, rgba(224,51,110,0.25) 0%, rgba(155,43,224,0.25) 100%);
  border: 1px solid rgba(224,51,110,0.45);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(224,51,110,0.15);
}

.highlight-banner h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-banner p { color: var(--muted); font-size: 0.95rem; }

.highlight-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.highlight-item {
  background: rgba(224,51,110,0.2);
  border: 1px solid rgba(224,51,110,0.4);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.offer-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  padding: 1.4rem 5%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offer-strip p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.offer-strip a {
  display: inline-block;
  padding: .55rem 1.6rem;
  border-radius: 100px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s;
}
.offer-strip a:hover { transform: scale(1.05); }

section { padding: 80px 5%; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: .8rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: .6rem;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub { color: var(--muted); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1rem; }
.text-center { text-align: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.4rem; }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.2rem; }

#profiles { background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(155,43,224,0.1) 0%, transparent 70%), var(--bg2); }

.profile-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
}
.profile-card.visible { opacity: 1; transform: translateY(0); transition: opacity .5s, transform .5s, box-shadow .3s; }
.profile-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(224,51,110,0.2); }
.profile-img-wrap { position: relative; }
.profile-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; }

.profile-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(40,224,122,0.15);
  color: var(--online);
  border: 1px solid rgba(40,224,122,0.35);
  font-size: .72rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.profile-body { padding: 1rem 1.1rem 1.2rem; }
.profile-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .15rem; }
.profile-meta { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.profile-bio { font-size: .83rem; color: var(--muted); margin-bottom: .9rem; font-style: italic; }

.btn-chat {
  display: block;
  width: 100%;
  padding: .6rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  text-align: center;
}
.btn-chat:hover { opacity: .88; transform: scale(1.02); }

#trust {
  background: linear-gradient(135deg, rgba(224,51,110,0.12) 0%, rgba(155,43,224,0.12) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 60px 5%;
}

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; max-width: 900px; margin: 0 auto; }
.trust-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.trust-label { font-size: .88rem; color: var(--muted); margin-top: .3rem; }

#mature-love {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(224,51,110,0.12) 0%, transparent 70%), var(--bg);
}

.mature-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid rgba(224,51,110,0.35);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(224,51,110,0.12);
}

.mature-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}

.mature-line {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.2rem;
  background: rgba(224,51,110,0.08);
  border: 1px solid rgba(255,100,160,0.2);
  border-radius: 12px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.55;
  transition: border-color .2s, background .2s;
}
.mature-line:hover { border-color: var(--primary); background: rgba(224,51,110,0.14); }

.mature-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.mature-cta { text-align: center; }

#features { background: var(--bg); }

.feature-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(155,43,224,0.2); }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.6rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.feature-card p { font-size: .88rem; color: var(--muted); }

#how { background: var(--bg2); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }

.step {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform .3s;
}
.step:hover { transform: translateY(-4px); }

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-weight: 700; margin-bottom: .4rem; }
.step p { font-size: .86rem; color: var(--muted); }

#testimonials { background: var(--bg); }

.testi-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  backdrop-filter: blur(10px);
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.testi-text { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; border: 2px solid var(--primary); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-since { font-size: .78rem; color: var(--muted); }

#chat-friends { background: var(--bg2); }

.chat-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: transform .3s, box-shadow .3s;
}
.chat-card:hover { transform: translateX(4px); box-shadow: 0 6px 24px rgba(224,51,110,0.15); }
.chat-avatar { position: relative; flex-shrink: 0; }
.chat-avatar img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }

.dot-online {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 12px; height: 12px;
  background: var(--online);
  border-radius: 50%;
  border: 2px solid var(--bg2);
}

.chat-info { flex: 1; min-width: 0; }
.chat-name { font-weight: 700; font-size: .95rem; }
.chat-meta { font-size: .78rem; color: var(--muted); }

.btn-sm {
  padding: .45rem 1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-sm:hover { opacity: .85; }

#contact { background: var(--bg); }

.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--muted); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,100,160,0.2);
  border-radius: 10px;
  color: var(--text);
  font-size: .93rem;
  transition: border-color .2s;
  font-family: inherit;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.07);
}
.form-group textarea { min-height: 120px; }

#cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  padding: 80px 5%;
  text-align: center;
}
#cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .8rem;
}
#cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

#faq { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q svg { flex-shrink: 0; transition: transform .3s; }
.faq-q.open svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem;
  color: var(--muted);
  padding: 0 1.4rem;
}
.faq-a.open { max-height: 200px; padding: 0 1.4rem 1.1rem; }

footer {
  background: #060006;
  border-top: 1px solid rgba(255,100,160,0.1);
  padding: 50px 5% 30px;
}
.nav-logo-link {
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.urgency-disclosure {
  font-size: .72rem;
  font-weight: 500;
  opacity: .85;
  margin-left: .4rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit-btn { width: 100%; text-align: center; }
.cta-banner-btn { display: inline-block; color: #fff; border-color: rgba(255,255,255,0.5); font-size: 1.05rem; padding: .9rem 2.2rem; }

.footer-top-bar {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
}
.footer-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-badge {
  font-size: .78rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,100,160,0.12);
  padding: .4rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,100,160,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover {
  background: rgba(224,51,110,0.15);
  color: var(--primary);
  border-color: var(--primary);
}
.footer-contact { font-size: .84rem; color: var(--muted); margin-top: .8rem; }
.footer-disclaimer { max-width: 420px; text-align: right; }
.footer-brand p { font-size: .88rem; color: var(--muted); margin-top: .7rem; max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-size: .9rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.footer-col a { display: block; font-size: .87rem; color: var(--muted); text-decoration: none; margin-bottom: .55rem; transition: color .2s; cursor: pointer; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-bottom p { font-size: .82rem; color: var(--muted); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: #150010;
  border: 1px solid rgba(224,51,110,0.25);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  transform: translateY(30px);
  transition: transform .3s;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-box h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--primary); }
.modal-box p, .modal-box li { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: .7rem; }
.modal-box ul { padding-left: 1.2rem; }
.modal-close {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: .7rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
}

.success-popup {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 3000;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 14px;
  padding: 1.2rem 1.8rem;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 8px 32px rgba(224,51,110,0.4);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .4s, opacity .4s;
}
.success-popup.show { transform: translateY(0); opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s, transform .55s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.page-main {
  padding: calc(var(--urgency-h) + 100px) 5% 60px;
  max-width: 860px;
  margin: 0 auto;
}
.page-main--legal { max-width: 820px; }
.page-hero { text-align: center; margin-bottom: 2rem; }
.page-content--full { width: 100%; }
.content-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
}
.content-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: .7rem; }
.content-card p, .content-card li { font-size: .92rem; color: var(--muted); line-height: 1.75; margin-bottom: .5rem; }
.content-card ul { padding-left: 1.2rem; margin-top: .5rem; }
.legal-text h2 { font-size: 1rem; color: var(--primary); margin-top: 1.2rem; margin-bottom: .5rem; }
.legal-text a { color: var(--primary); }
.page-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(224,51,110,0.12), rgba(155,43,224,0.12));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-top: 1rem;
}
.page-cta h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.page-cta p { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
}

@media (max-width: 640px) {
  .urgency-bar { font-size: .72rem; padding: 0 .6rem; }
  nav { padding: 0 4%; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(10,0,8,0.97);
    padding: 1.2rem 5%;
    gap: 1rem;
    border-bottom: 1px solid rgba(224,51,110,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .hero-card img { height: 110px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .contact-wrap { padding: 1.5rem; }
  .mature-box { padding: 1.5rem 1.2rem; }
  .mature-line { font-size: .88rem; }
}
