*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg2: #f5f5f5;
  --bg-alt: #fafafa;
  --card: #ffffff;
  --card-border: #e1dfdd;
  --primary: #0078d4;
  --primary-dark: #005a9e;
  --accent: #0078d4;
  --accent2: #50e6ff;
  --gold: #ffb900;
  --text: #242424;
  --muted: #605e5c;
  --online: #107c10;
  --radius: 4px;
  --glass: #ffffff;
  --shadow: 0 1.6px 3.6px 0 rgba(0,0,0,.132), 0 0.3px 0.9px 0 rgba(0,0,0,.108);
  --shadow-lg: 0 6.4px 14.4px 0 rgba(0,0,0,.132), 0 1.2px 3.6px 0 rgba(0,0,0,.108);
  --urgency-h: 36px;
}

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(5,10,18,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14,165,233,0.2);
}

.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: 40px 5% 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(6,182,212,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(14,165,233,0.15) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1400px;
  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;
}

.badge-sample {
  background: rgba(155,43,224,0.15);
  color: var(--accent2);
  border: 1px solid rgba(155,43,224,0.35);
  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(14,165,233,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-badge--sample {
  background: rgba(155,43,224,0.15);
  color: var(--accent2);
  border-color: rgba(155,43,224,0.35);
}

.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-image-wrap { margin-top: 1.5rem; width: 100%; }
  .hero-main-img { width: 100%; max-width: 100%; }
  .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; }
}

/* ── Profile Quiz Modal ── */
.profile-quiz-overlay { z-index: 2100; }
.profile-quiz-box {
  background: linear-gradient(160deg, #180012 0%, #0f000c 100%);
  border: 1px solid rgba(224,51,110,0.35);
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 2rem 1.5rem;
  position: relative;
  transform: translateY(30px);
  transition: transform .35s;
  box-shadow: 0 24px 80px rgba(224,51,110,0.25);
}
.profile-quiz-overlay.active .profile-quiz-box { transform: translateY(0); }

.profile-quiz-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,100,160,0.2);
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.profile-quiz-close:hover { background: rgba(224,51,110,0.2); color: #fff; }

.profile-quiz-header { text-align: center; margin-bottom: 1.6rem; }
.profile-quiz-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(224,51,110,0.12);
  border: 1px solid rgba(224,51,110,0.3);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: .8rem;
}
.profile-quiz-header h2 {
  font-size: 1.55rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .4rem;
}
.profile-quiz-sub { font-size: .88rem; color: var(--muted); margin-bottom: 1.2rem; }

.profile-quiz-progress {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: .5rem;
}
.profile-quiz-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--primary), var(--accent2));
  border-radius: 100px;
  transition: width .4s ease;
}
.profile-quiz-steps-label { font-size: .78rem; color: var(--muted); font-weight: 600; }

.quiz-step { display: none; animation: quizFadeIn .35s ease; }
.quiz-step.active { display: block; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--text);
}
.quiz-step-hint { font-size: .84rem; color: var(--muted); margin-bottom: 1.2rem; }

.quiz-field label { color: var(--text); font-size: .9rem; }
.quiz-field input,
.quiz-field select {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,100,160,0.22);
  border-radius: 12px;
  color: var(--text);
  font-size: .93rem;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.quiz-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b090a0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.quiz-field select option { background: #150010; color: var(--text); }
.quiz-field input:focus,
.quiz-field select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.07);
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .5rem;
}
.quiz-options--2col { grid-template-columns: 1fr 1fr; }

.quiz-option { cursor: pointer; }
.quiz-option input { position: absolute; opacity: 0; pointer-events: none; }

.quiz-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem .8rem;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,100,160,0.15);
  border-radius: 14px;
  transition: border-color .2s, background .2s, transform .2s;
  height: 100%;
}
.quiz-option:hover .quiz-option-card {
  border-color: rgba(224,51,110,0.4);
  background: rgba(224,51,110,0.06);
}
.quiz-option input:checked + .quiz-option-card {
  border-color: var(--primary);
  background: rgba(224,51,110,0.14);
  box-shadow: 0 0 20px rgba(224,51,110,0.2);
  transform: scale(1.02);
}
.quiz-option-emoji { font-size: 1.8rem; margin-bottom: .4rem; line-height: 1; }
.quiz-option-label { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.quiz-option-desc { font-size: .75rem; color: var(--muted); line-height: 1.4; }

.profile-quiz-contact {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(224,51,110,0.08);
  border: 1px solid rgba(224,51,110,0.25);
  border-radius: 14px;
  text-align: center;
}
.profile-quiz-contact p { font-size: .86rem; color: var(--muted); margin-bottom: .4rem; }
.profile-quiz-phone {
  font-size: 1.15rem;
  color: var(--text);
  margin: .5rem 0 !important;
}
.profile-quiz-phone strong {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: .5px;
}
.profile-quiz-contact-links {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .6rem !important;
}
.profile-quiz-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem 1rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,100,160,0.25);
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.profile-quiz-contact-links a:hover {
  background: rgba(224,51,110,0.2);
  border-color: var(--primary);
  color: #fff;
}

.profile-quiz-nav {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,100,160,0.1);
}
.btn-quiz-back,
.btn-quiz-next {
  flex: 1;
  padding: .8rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  border: none;
  font-family: inherit;
}
.btn-quiz-back {
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  border: 1px solid rgba(255,100,160,0.2);
  flex: 0 0 auto;
  padding: .8rem 1.4rem;
}
.btn-quiz-back:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.btn-quiz-next {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,51,110,0.3);
}
.btn-quiz-next:hover { transform: translateY(-1px); }
.profile-quiz-submit {
  flex: 1;
  width: 100%;
  text-align: center;
}
.profile-quiz-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none !important;
}

.step-clickable { cursor: pointer; transition: transform .3s, border-color .3s; }
.step-clickable:hover {
  transform: translateY(-4px);
  border-color: rgba(224,51,110,0.45);
}

.profiles-create-btn-wrap { margin-top: 1.5rem; }

/* Profile Success Modal */
.profile-success-overlay { z-index: 2200; }
.profile-success-box {
  background: linear-gradient(160deg, #180012 0%, #0f000c 100%);
  border: 1px solid rgba(40,224,122,0.35);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  transform: translateY(30px) scale(.96);
  transition: transform .35s;
  box-shadow: 0 24px 80px rgba(40,224,122,0.15);
}
.profile-success-overlay.active .profile-success-box { transform: translateY(0) scale(1); }
.profile-success-icon {
  font-size: 3rem;
  margin-bottom: .8rem;
  animation: successPop .5s ease;
}
@keyframes successPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.profile-success-box h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--online);
  margin-bottom: 1rem;
}
.profile-success-box p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .8rem;
}
.profile-success-note { font-size: .84rem !important; color: var(--primary) !important; }
.profile-quiz-contact--success { margin-top: 1.2rem; text-align: center; }

@media (max-width: 520px) {
  .profile-quiz-box { padding: 1.5rem 1.2rem 1.2rem; border-radius: 18px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-options--2col { grid-template-columns: 1fr 1fr; }
  .profile-quiz-nav { flex-wrap: wrap; }
  .btn-quiz-back { flex: 1; }
}

/* ── Trust Strip & Site Notices ── */
.site-trust-strip {
  background: rgba(20, 0, 20, 0.9);
  border-bottom: 1px solid rgba(224,51,110,0.15);
  padding: .65rem 5%;
  margin-top: calc(var(--urgency-h) + 64px);
  position: relative;
  z-index: 999;
}
.site-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.4rem;
  margin-bottom: .4rem;
}
.site-trust-item {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.site-trust-note {
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}
.site-trust-note a { color: var(--primary); }

.site-notice {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  padding: .75rem 1.1rem;
  border-radius: 10px;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--muted);
}
.site-notice--info {
  background: rgba(155,43,224,0.1);
  border: 1px solid rgba(155,43,224,0.25);
}
.site-notice--inline {
  max-width: 540px;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

.trust-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.trust-disclaimer a { color: var(--primary); }

.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.contact-info-item > span { font-size: 1.4rem; line-height: 1; }
.contact-info-item strong {
  display: block;
  font-size: .82rem;
  color: var(--text);
  margin-bottom: .15rem;
}
.contact-info-item a {
  font-size: .84rem;
  color: var(--primary);
  text-decoration: none;
  word-break: break-all;
}
.contact-info-item a:hover { text-decoration: underline; }

.form-privacy-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .8rem;
  text-align: center;
  line-height: 1.5;
}
.form-privacy-note a { color: var(--primary); }

.quiz-privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-top: 1.2rem;
  padding: .9rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,100,160,0.15);
  border-radius: 10px;
  cursor: pointer;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}
.quiz-privacy-consent input { margin-top: .2rem; flex-shrink: 0; accent-color: var(--primary); }
.quiz-privacy-consent a { color: var(--primary); }
.quiz-consent-error { border-color: var(--primary) !important; background: rgba(224,51,110,0.08) !important; }

.footer-disclaimer a { color: var(--primary); }

.page-main { padding-top: calc(var(--urgency-h) + 64px + 80px); }

@media (max-width: 640px) {
  .site-trust-inner { gap: .4rem .8rem; }
  .site-trust-item { font-size: .72rem; }
  #home { padding-top: 30px; }
}

.hero-image-wrap {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.hero-main-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}
.packages-grid { max-width: 1100px; margin: 0 auto; }
.package-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);
  position: relative; display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(14,165,233,0.2); }
.package-card--popular { border-color: var(--primary); box-shadow: 0 0 30px rgba(14,165,233,0.15); }
.package-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: .72rem; font-weight: 700; padding: .25rem .7rem;
  border-radius: 100px; z-index: 2;
}
.package-img-wrap img { width: 100%; height: 180px; object-fit: cover; display: block; }
.package-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.package-name { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.package-price { margin-bottom: .5rem; }
.price-amount { font-size: 2rem; font-weight: 900; color: var(--primary); }
.price-period { font-size: .9rem; color: var(--muted); }
.package-devices { font-size: .85rem; color: var(--accent2); font-weight: 600; margin-bottom: .8rem; }
.package-desc { font-size: .88rem; color: var(--muted); line-height: 1.55; margin-bottom: 1rem; }
.package-features { list-style: none; margin-bottom: 1.4rem; flex: 1; }
.package-features li { font-size: .84rem; color: var(--text); padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.btn-package { width: 100%; text-align: center; padding: .75rem 1rem; font-size: .9rem; }
.chat-avatar--device img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.testi-avatar--icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(14,165,233,0.15); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.quiz-options--packages { grid-template-columns: 1fr; }
.quiz-option--package .quiz-option-card { text-align: center; }
.quiz-option-price { display: block; font-size: 1.1rem; font-weight: 800; color: var(--primary); margin: .3rem 0; }

/* ── Microsoft-style white theme overrides ── */
body { background: var(--bg); color: var(--text); }
::-webkit-scrollbar-track { background: var(--bg2); }

.urgency-bar {
  background: var(--primary);
  animation: none;
  box-shadow: none;
  font-weight: 600;
}

nav {
  background: #fff;
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.nav-logo, .nav-logo-link {
  background: none !important;
  -webkit-text-fill-color: var(--primary) !important;
  color: var(--primary) !important;
  font-weight: 700;
}

.nav-links a:hover { color: var(--primary); }
.nav-cta { border-radius: 2px; background: var(--primary) !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }

#home {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  padding-top: calc(var(--urgency-h) + 64px + 40px);
}

.hero-text h1 {
  background: none !important;
  -webkit-text-fill-color: var(--text) !important;
  color: var(--text) !important;
  font-weight: 600;
}

.section-title {
  background: none !important;
  -webkit-text-fill-color: var(--text) !important;
  color: var(--text) !important;
  font-weight: 600;
}

.highlight-banner {
  background: #f0f6ff;
  border: 1px solid #c7e0f4;
  box-shadow: none;
  text-align: left;
}
.highlight-banner h3 {
  background: none !important;
  -webkit-text-fill-color: var(--text) !important;
  color: var(--text) !important;
}
.highlight-item {
  background: #fff;
  border: 1px solid var(--card-border);
  color: var(--text);
}

.btn-primary {
  border-radius: 2px;
  background: var(--primary);
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow);
}
.btn-pulse { animation: none; }
.btn-secondary {
  border-radius: 2px;
  border-color: var(--card-border);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: #f0f6ff;
}

.hero-main-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

#trust, #features, #testimonials, #contact { background: var(--bg); }
#profiles, #chat-friends, #faq { background: var(--bg2); }
#how { background: var(--bg-alt); }
#mature-love { background: var(--bg); }

.mature-box {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
}
.mature-line {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  color: var(--text);
}
.mature-line:hover { border-color: var(--primary); background: #f0f6ff; }

.feature-card, .step, .testi-card, .chat-card, .faq-item, .content-card, .contact-wrap {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}
.feature-card:hover, .package-card:hover, .testi-card:hover, .chat-card:hover {
  box-shadow: var(--shadow-lg);
}

.feature-icon, .step-num {
  border-radius: var(--radius);
  background: var(--primary);
}

.package-card {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.package-card--popular { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.package-features li { border-bottom-color: var(--card-border); }
.package-img-wrap img { background: #fafafa; object-fit: contain; padding: .5rem; height: 200px; }

.offer-strip { background: var(--primary); }
.offer-strip a { color: var(--primary); border-radius: 2px; }

#cta-banner {
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
}
.cta-banner-btn {
  background: #fff !important;
  color: var(--primary) !important;
  border: none !important;
  border-radius: 2px;
}

footer {
  background: #f5f5f5;
  border-top: 1px solid var(--card-border);
}
.footer-bottom { border-top-color: var(--card-border); }
.trust-badge {
  background: #fff;
  border-color: var(--card-border);
  color: var(--muted);
}
.footer-social a {
  background: #fff;
  border-color: var(--card-border);
}
.footer-social a:hover { background: #f0f6ff; border-color: var(--primary); }

.site-trust-strip {
  background: #fafafa;
  border-bottom: 1px solid var(--card-border);
}

.modal-overlay { background: rgba(0,0,0,0.4); backdrop-filter: none; }
.profile-quiz-box, .profile-success-box, .modal-box {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}
.profile-quiz-close {
  background: var(--bg2);
  border-color: var(--card-border);
  color: var(--muted);
}
.profile-quiz-close:hover { background: #f0f6ff; color: var(--primary); }
.profile-quiz-header h2 {
  background: none !important;
  -webkit-text-fill-color: var(--text) !important;
  color: var(--text) !important;
}
.profile-quiz-badge {
  background: #f0f6ff;
  border-color: #c7e0f4;
  color: var(--primary);
}
.profile-quiz-progress { background: var(--bg2); }
.profile-quiz-progress-bar { background: var(--primary); border-radius: 0; }

.quiz-field input, .quiz-field select,
.form-group input, .form-group textarea {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 2px;
  color: var(--text);
}
.quiz-field select option { background: #fff; color: var(--text); }
.quiz-field input:focus, .quiz-field select:focus,
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 1px var(--primary);
}

.quiz-option-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}
.quiz-option:hover .quiz-option-card { border-color: var(--primary); background: #f0f6ff; }
.quiz-option input:checked + .quiz-option-card {
  border-color: var(--primary);
  background: #f0f6ff;
  box-shadow: 0 0 0 1px var(--primary);
}

.quiz-privacy-consent {
  background: var(--bg-alt);
  border-color: var(--card-border);
}
.quiz-consent-error { border-color: var(--primary) !important; background: #fde7e9 !important; }

.btn-quiz-back {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 2px;
  color: var(--text);
}
.btn-quiz-next { border-radius: 2px; box-shadow: none; }

.profile-success-box h2 { color: var(--online); }
.testi-avatar--icon { background: #f0f6ff; border-color: #c7e0f4; }

.page-cta {
  background: #f0f6ff;
  border: 1px solid #c7e0f4;
}
.page-main--wide { max-width: 1200px; margin: 0 auto; }

.contact-info-bar {
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.site-notice {
  background: #f0f6ff;
  border: 1px solid #c7e0f4;
  color: var(--muted);
}

.success-popup {
  background: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 640px) {
  .nav-links {
    background: #fff;
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
  }
}
