:root {
  --bg: #FFF7FB;
  --block: rgba(255, 255, 255, 0.65);
  --primary: #FF4FA3;
  --secondary: #8B5CF6;
  --accent: #FFD166;
  --button: #FF2E88;
  --text: #2D1B4E;
  --muted: #6E5A8A;
  --line: rgba(243, 215, 234, 0.8);
  --soft: rgba(255, 228, 242, 0.8);
  --shadow: 0 14px 40px rgba(139, 92, 246, 0.15);
  --neon: 0 0 15px rgba(255, 79, 163, 0.5), 0 0 30px rgba(139, 92, 246, 0.3);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0, rgba(255, 225, 242, 0.6) 0, transparent 34%),
              radial-gradient(circle at 90% 10%, rgba(238, 230, 255, 0.6) 0, transparent 30%),
              var(--bg);
  line-height: 1.65;
}
a { color: var(--secondary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--button); }
img { max-width: 100%; height: auto; }
.container { width: min(1140px, 92%); margin: auto; }
.topbar { background: rgba(255, 255, 255, 0.6); border-bottom: 1px solid var(--line); font-size: 13px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.topbar .container { display: flex; justify-content: center; padding: 8px 0; color: var(--muted); text-align: center; }
header { position: sticky; top: 0; background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 20; border-bottom: 1px solid var(--line); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand img { height: 46px; transition: transform 0.3s; }
.brand:hover img { transform: scale(1.05); }
.menu { display: flex; gap: 18px; align-items: center; }
.menu a { font-weight: 700; color: var(--text); font-size: 15px; padding: 8px 12px; border-radius: 12px; transition: background 0.3s, color 0.3s; }
.menu a:hover { background: var(--soft); color: var(--button); }
.hamb { display: none; background: var(--soft); border: 0; border-radius: 12px; padding: 10px 12px; color: var(--text); font-weight: 900; cursor: pointer; transition: background 0.3s; }
.hamb:hover { background: #ffd1e8; }
.btn, .btn2 { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 12px 24px; font-weight: 900; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s, background 0.3s; cursor: pointer; font-size: 16px; border: none; }
.btn { background: linear-gradient(135deg, var(--button), var(--secondary)); color: white; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--neon); }
.btn2 { background: rgba(255, 255, 255, 0.8); color: var(--button); border: 1px solid var(--line); backdrop-filter: blur(10px); }
.btn2:hover { background: white; transform: translateY(-2px); border-color: var(--button); }
.hero { padding: 64px 0 42px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 42px; align-items: center; }
.badge { display: inline-flex; background: rgba(255, 255, 255, 0.8); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; color: var(--secondary); font-weight: 800; font-size: 14px; backdrop-filter: blur(8px); box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08); }
h1 { font-size: clamp(34px, 6vw, 62px); line-height: 1.1; margin: 16px 0; color: var(--text); }
h1 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: clamp(26px, 4vw, 38px); line-height: 1.2; margin: 0 0 16px; color: var(--text); }
h3 { font-size: 22px; margin: 0 0 10px; }
p { margin: 0 0 16px; }
.lead { font-size: 19px; color: var(--muted); }
.hero-card, .card { background: var(--block); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: transform 0.3s, box-shadow 0.3s; }
.hero-card { padding: 22px; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-4px); box-shadow: var(--neon); }
.hero-card:before { content: ""; position: absolute; inset: auto -30px -50px auto; width: 210px; height: 210px; background: #FFD16677; border-radius: 50%; filter: blur(30px); }
.hero-card:after { content: ""; position: absolute; inset: -40px auto auto -30px; width: 180px; height: 180px; background: rgba(255, 79, 163, 0.3); border-radius: 50%; filter: blur(30px); z-index: -1; }
.candy-img { border-radius: 22px; background: linear-gradient(135deg, rgba(255,79,163,0.1), rgba(139,92,246,0.1)); padding: 8px; position: relative; z-index: 1; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.section { padding: 54px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 > *, .grid-2 > *, .footer-grid > * { min-width: 0; }
.card { padding: 32px 24px; }
.icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--soft), #EEE6FF); font-size: 28px; margin-bottom: 16px; box-shadow: 0 8px 24px rgba(139,92,246,0.15); }
.table-wrap { overflow-x: auto; background: var(--block); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
table { width: 100%; border-collapse: collapse; min-width: max-content; }
th, td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
th { background: rgba(255, 240, 248, 0.7); color: var(--text); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: rgba(255, 255, 255, 0.4); }
.rank { font-weight: 900; color: var(--button); font-size: 20px; }
.pill { display: inline-block; background: rgba(255, 240, 248, 0.9); color: var(--button); padding: 6px 12px; border-radius: 999px; font-weight: 800; font-size: 13px; border: 1px solid var(--line); margin-top: 6px; }
.steps { counter-reset: s; display: grid; gap: 18px; }
.step { background: var(--block); border: 1px solid var(--line); border-radius: 20px; padding: 22px 22px 22px 74px; position: relative; backdrop-filter: blur(12px); transition: transform 0.3s; box-shadow: var(--shadow); }
.step:hover { transform: translateX(8px); border-color: var(--primary); }
.step:before { counter-increment: s; content: counter(s); position: absolute; left: 20px; top: 22px; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--button), var(--secondary)); color: white; display: grid; place-items: center; font-weight: 900; font-size: 18px; box-shadow: 0 6px 16px rgba(255, 46, 136, 0.3); }
.note { background: rgba(255, 249, 232, 0.8); border: 1px solid #FFE2A1; border-radius: 18px; padding: 20px; color: #5b4215; backdrop-filter: blur(8px); box-shadow: 0 8px 24px rgba(255, 209, 102, 0.15); }
.faq details { background: var(--block); border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px; margin: 12px 0; backdrop-filter: blur(12px); transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.faq details[open] { border-color: var(--primary); box-shadow: var(--shadow); padding-bottom: 24px; }
.faq summary { font-weight: 900; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "+"; color: var(--button); font-size: 24px; font-weight: 400; transition: transform 0.3s; }
.faq details[open] summary:after { transform: rotate(45deg); }
.faq details p { margin: 16px 0 0 0; color: var(--muted); padding-top: 16px; border-top: 1px solid var(--line); }
.footer { background: #1C1132; color: #fff; margin-top: 64px; position: relative; overflow: hidden; }
.footer:before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)); }
.footer a { color: #EADFFF; transition: color 0.3s; }
.footer a:hover { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 32px; padding: 54px 0 42px; }
.footer h3 { color: white; font-size: 18px; margin-bottom: 20px; }
.footer p { margin-bottom: 10px; font-size: 15px; color: #BDB2D1; }
.copy { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; color: #9A8EAE; font-size: 14px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cookie-banner { position: fixed; left: 24px; right: 24px; bottom: 24px; background: rgba(255, 255, 255, 0.95); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 24px; padding: 24px; z-index: 50; display: none; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.cookie-banner.show { display: block; animation: slideUp 0.4s ease-out; }
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.modal { position: fixed; inset: 0; background: rgba(45, 27, 78, 0.7); display: none; place-items: center; z-index: 60; padding: 20px; backdrop-filter: blur(6px); }
.modal.show { display: grid; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card { background: white; border-radius: 28px; max-width: 650px; width: 100%; padding: 32px; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.switch { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: 16px; padding: 16px; margin: 12px 0; background: #faf8fc; }
.switch input { width: 24px; height: 24px; accent-color: var(--button); cursor: pointer; }
.hero-mini { padding: 54px 0; background: linear-gradient(135deg, rgba(255,228,242,0.8), rgba(238,230,255,0.8)); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 16px; display: inline-block; background: rgba(255,255,255,0.6); padding: 6px 14px; border-radius: 999px; }
.breadcrumbs a { color: var(--primary); font-weight: 600; }
.form { display: grid; gap: 16px; background: var(--block); padding: 32px; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--line); backdrop-filter: blur(12px); }
.form label { font-weight: 700; color: var(--text); font-size: 14px; /*margin-bottom: -8px;*/ display: block; }
.form input, .form textarea, .form select { width: 100%; padding: 14px 18px; border: 2px solid var(--line); border-radius: 14px; font: inherit; background: rgba(255, 255, 255, 0.8); transition: border-color 0.3s, box-shadow 0.3s; outline: none; }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.15); background: white; }
.form textarea { min-height: 120px; resize: vertical; }
.form button { width: 100%; justify-content: center; }
.screen { background: var(--block); border: 1px solid var(--line); border-radius: 22px; padding: 14px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.appbar { height: 32px; border-radius: 12px; background: linear-gradient(90deg, var(--button), var(--secondary)); margin-bottom: 14px; position: relative; overflow: hidden; }
.appbar:after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); animation: shimmer 2s infinite; }
@keyframes shimmer { 100% { transform: translateX(100%); } }
.mockline { height: 14px; border-radius: 12px; background: #f2dcec; margin: 10px 0; }
.mockline.w { width: 65%; }
.legal h2 { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal h3 { margin-top: 24px; color: var(--primary); }
.legal ul { margin-bottom: 24px; padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.toc { background: var(--block); border: 1px solid var(--line); border-radius: 20px; padding: 24px; backdrop-filter: blur(12px); position: sticky; top: 90px; }
.toc h3 { margin-bottom: 16px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.toc a { display: block; margin: 10px 0; font-weight: 600; transition: color 0.2s; }
.toc a:hover { color: var(--primary); padding-left: 4px; }
@media(max-width: 860px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu { display: none; position: absolute; left: 0; right: 0; top: 71px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 24px; flex-direction: column; align-items: flex-start; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 12px; }
  .menu a { width: 100%; font-size: 18px; padding: 12px 16px; border-radius: 12px; }
  .menu .btn { width: 100%; margin-top: 12px; }
  .menu.open { display: flex; }
  .hamb { display: block; }
  .cookie-row { display: block; }
  .cookie-row .actions { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
  .cookie-row .actions button { width: 100%; }
  .hero { padding-top: 32px; text-align: center; }
  .hero .actions { justify-content: center; }
  .table-wrap { margin: 0; border-radius: 16px; padding: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
}
