/* orgassmee.com */
:root {
  --primary: #d3165b;
  --primary-deep: #a81048;
  --bg: #09090d;
  --surface: #12121a;
  --text: #f5f5f7;
  --text-muted: #b4b4bf;
  --border: #2b2b39;
  --radius: 16px;
  --max: 1100px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; min-height: 100vh;
  font-family: Verdana, system-ui, sans-serif;
  background: radial-gradient(circle at top, #1a1a29 0%, var(--bg) 45%);
  color: var(--text); line-height: 1.6;
}
a { color: #f83f82; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,15,0.92); backdrop-filter: blur(8px);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; flex-wrap: wrap; }
.logo { font-weight: 700; font-size: 1.5rem; text-decoration: none; color: var(--primary); letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.geo-badge {
  background: rgba(89,217,142,0.12); color: #59d98e;
  border: 1px solid rgba(89,217,142,0.35); border-radius: 999px;
  padding: 6px 12px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; font-weight: 700; font-size: 0.95rem;
  color: #fff; text-decoration: none; border-radius: 999px;
  background: var(--primary); border: none; transition: 0.2s;
}
.btn:hover { background: #f83f82; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.hero { padding: 70px 0 50px; }
.hero-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero h1 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; }
.hero-lead { margin: 0 0 24px; color: var(--text-muted); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.hero-note { font-size: 0.85rem; color: var(--text-muted); }
.hero-card {
  background: linear-gradient(145deg, #181825, #101018);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 18px;
}
.hero-card img { width: 100%; border-radius: 12px; display: block; margin-bottom: 14px; }
section.block { padding: 42px 0; }
section.block.alt { background: #11111b; }
.section-head { margin-bottom: 22px; }
.section-head h2 { margin: 0 0 10px; font-size: 1.55rem; }
.section-head p { margin: 0; color: var(--text-muted); max-width: 70ch; }
.panel-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .panel-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .panel-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.panel h3 { margin: 0 0 8px; font-size: 1.05rem; }
.panel p { margin: 0; color: var(--text-muted); font-size: 0.93rem; }
.prose-block { max-width: 720px; margin: 0 auto; color: var(--text-muted); }
.prose-block p, .prose-block li { font-size: 0.96rem; }
.steps { display: grid; gap: 14px; }
@media (min-width: 920px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 46px 20px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num {
  position: absolute; top: 16px; left: 16px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.us-block { border: 1px dashed #3c3c51; border-radius: var(--radius); padding: 18px 20px; }
.us-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.us-chip { border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; color: var(--text-muted); font-size: 0.85rem; }
.guide-cards { display: grid; gap: 14px; }
@media (min-width: 640px) { .guide-cards { grid-template-columns: repeat(2, 1fr); } }
.guide-card {
  display: block; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; background: var(--surface);
}
.guide-card h3 { margin: 0 0 8px; color: var(--text); }
.guide-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
details.faq-item { margin-bottom: 12px; background: #0f0f17; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
details.faq-item summary { cursor: pointer; font-weight: 600; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item p { margin: 10px 0 0; color: var(--text-muted); font-size: 0.9rem; }
.cta-band { text-align: center; background: linear-gradient(180deg, #161623, #101018); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 20px; }
.page-hero { padding: 48px 0 24px; }
.page-hero h1 { margin: 0 0 8px; font-size: clamp(1.8rem, 4vw, 2.3rem); }
.page-hero .lead { color: var(--text-muted); margin: 0; }
.prose { max-width: 720px; margin: 0 auto; padding: 24px 0 48px; color: var(--text-muted); }
.prose h2 { color: var(--text); margin-top: 1.5rem; }
.prose-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.5rem 0; }
.site-footer { border-top: 1px solid var(--border); margin-top: 46px; padding: 22px 0 30px; color: #9192a7; font-size: 0.8rem; }
.footer-row { display: flex; gap: 12px; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-links a { color: #c4c4d5; text-decoration: none; }
.badge-18 { font-weight: 700; color: var(--primary); }
@media (max-width: 640px) { .nav-links { gap: 10px; } }

.lang-switch { position: relative; flex-shrink: 0; }
.lang-switch summary {
  list-style: none; cursor: pointer; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; line-height: 1; padding: 8px 11px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--surface); color: var(--text-muted); user-select: none;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::after {
  content: ""; display: inline-block; width: 0; height: 0; margin-left: 7px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; vertical-align: 1px; opacity: 0.55;
}
.lang-switch[open] summary, .lang-switch summary:hover {
  border-color: rgba(211, 22, 91, 0.35); color: var(--text);
}
.lang-switch[open] summary { color: var(--primary); }
.lang-switch-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 152px;
  margin: 0; padding: 6px; list-style: none; background: #16161f;
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55); z-index: 120;
}
.lang-switch-menu li { margin: 0; }
.lang-switch-menu a, .lang-switch-menu .lang-switch-current {
  display: block; padding: 9px 12px; font-size: 0.88rem; font-weight: 500;
  border-radius: 8px; text-decoration: none; color: var(--text-muted);
}
.lang-switch-menu a:hover { background: rgba(211,22,91,0.12); color: var(--primary); }
.lang-switch-current { color: var(--primary); font-weight: 600; }
@media (max-width: 720px) { .lang-switch-menu { right: auto; left: 0; } }
