:root {
  --purple: #552583;
  --purple-dark: #1a0b2e;
  --gold: #fdb927;
  --text: #16121d;
  --muted: #6b6475;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #fff;
  line-height: 1.55;
  background:
    radial-gradient(circle at 15% 20%, rgba(253, 185, 39, .18), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(85, 37, 131, .7), transparent 50%),
    linear-gradient(160deg, #2c1150 0%, var(--purple-dark) 60%, #0c0614 100%);
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.wrap.center { grid-template-columns: 1fr; text-align: center; max-width: 640px; min-height: 100vh; }

.brand {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(253, 185, 39, .4);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 0 20px;
}

h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  line-height: .95;
  letter-spacing: .01em;
  margin: 0 0 20px;
}
h1 span { color: var(--gold); }

.lead { font-size: 1.15rem; color: rgba(255, 255, 255, .8); margin: 0 0 28px; max-width: 480px; }
.center .lead { margin-left: auto; margin-right: auto; }

.points { list-style: none; padding: 0; margin: 0 0 28px; }
.points li { position: relative; padding-left: 32px; margin-bottom: 12px; font-weight: 500; }
.points li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--purple-dark);
  font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.only {
  display: inline-block;
  font-size: .9rem; font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border-left: 3px solid var(--gold);
  padding: 10px 14px; border-radius: 4px;
  margin: 0;
}

.card {
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45), 0 0 0 1px rgba(253, 185, 39, .25);
  border-top: 6px solid var(--gold);
}
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; align-items: start; }
.fields label, .fields .upload { margin: 0; }
.fields textarea { height: 118px; }
.upload .dropzone { height: 118px; flex-direction: column; gap: 6px; margin-top: 6px; }
.check { padding-top: 0; border-top: 0; }
.submit-wrap { align-self: end; }
.submit-wrap button { margin-top: 0; height: 48px; padding: 0 16px; }

.card h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400; font-size: 2.2rem; letter-spacing: .02em;
  color: var(--purple);
  margin: 0 0 20px;
}

label { display: block; font-size: .92rem; font-weight: 600; margin-bottom: 16px; }
input, textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px; font: inherit; font-weight: 400;
  color: var(--text);
  background: #f7f5fa;
  border: 1.5px solid #e6e1ee; border-radius: 10px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
input:focus, textarea:focus {
  outline: none; background: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(85, 37, 131, .12);
}
textarea { resize: vertical; }

button {
  width: 100%; padding: 16px; margin-top: 8px;
  font: inherit; font-size: 1.05rem; font-weight: 700;
  color: var(--purple-dark);
  background: var(--gold);
  border: none; border-radius: 10px; cursor: pointer;
  box-shadow: 0 8px 20px rgba(253, 185, 39, .35);
  transition: transform .1s, box-shadow .15s, background .15s;
}
button:hover { background: #ffc94a; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(253, 185, 39, .45); }

.back {
  display: inline-block;
  color: var(--purple-dark); background: var(--gold);
  font-weight: 700; text-decoration: none;
  padding: 14px 28px; border-radius: 10px;
}

.hp { position: absolute; left: -9999px; }

.brands { max-width: 1080px; margin: 0 auto 64px; padding: 0 20px; text-align: center; }
.brands h2 {
  font-family: "Bebas Neue", Impact, sans-serif; font-weight: 400;
  font-size: 1.1rem; letter-spacing: .2em; color: rgba(255, 255, 255, .6);
  margin: 0 0 18px;
}
.brand-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.brand-list li {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: .06em; line-height: 1;
  color: #fff;
  padding: 18px 30px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(253, 185, 39, .35);
  border-radius: 12px;
  min-width: 150px;
}
.brands-note { color: rgba(255, 255, 255, .6); font-size: .92rem; margin: 18px 0 0; }

.content { max-width: 1080px; margin: 0 auto; padding: 24px 20px 80px; }
.content h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400; font-size: clamp(2.2rem, 4vw, 2.8rem); letter-spacing: .02em;
  margin: 0 0 16px; line-height: 1;
}
.content p { color: rgba(255, 255, 255, .8); }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 72px; }
.panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 32px 28px;
}
.panel h2 { color: var(--gold); }
.panel h3 { font-size: 1rem; margin: 24px 0 12px; }
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { position: relative; padding-left: 22px; margin-bottom: 8px; color: rgba(255, 255, 255, .88); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); }

.steps-wrap { text-align: center; margin-bottom: 72px; }
.steps { list-style: none; padding: 0; margin: 8px 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.steps li { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; padding: 24px; }
.steps span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--purple-dark); font-weight: 700;
}
.steps h3 { margin: 14px 0 6px; font-size: 1.1rem; }
.steps p { margin: 0; }
.cta {
  display: inline-block; padding: 16px 36px; border-radius: 10px;
  background: var(--gold); color: var(--purple-dark); font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 20px rgba(253, 185, 39, .35);
}
.cta:hover { background: #ffc94a; }

.faq { max-width: 760px; margin: 0 auto; }
.faq h2 { text-align: center; margin-bottom: 24px; }
.faq details {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px; margin-bottom: 12px; padding: 0 20px;
}
.faq summary { cursor: pointer; font-weight: 600; padding: 18px 0; list-style: none; position: relative; padding-right: 28px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 1.4rem; color: var(--gold); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 18px; }

footer { text-align: center; padding: 32px 20px 40px; border-top: 1px solid rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .75); }
footer p { margin: 0 0 6px; }
footer .small { font-size: .8rem; color: rgba(255, 255, 255, .5); }

@media (max-width: 860px) {
  .grid2, .steps { grid-template-columns: 1fr; }
  .panel { padding: 24px 20px; }
  .wrap { grid-template-columns: 1fr; gap: 36px; padding: 48px 16px; min-height: 0; }
  .card { padding: 28px 20px; }
  .fields { grid-template-columns: 1fr; }
  .brand-list { gap: 10px; }
  .brand-list li { min-width: 0; flex: 1 1 40%; padding: 14px 12px; }
  .upload .dropzone { height: auto; flex-direction: row; padding: 18px; }
}

.check span#q { color: var(--purple); font-weight: 700; }
.error { display: block; color: #c0263d; font-size: .85rem; font-weight: 500; margin-top: 6px; }

.upload { margin-bottom: 16px; }
.upload-label { display: block; font-size: .92rem; font-weight: 600; margin-bottom: 6px; }
.upload-label em { font-style: normal; font-weight: 400; color: var(--muted); }
.dropzone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0; padding: 18px;
  border: 1.5px dashed #cfc6dc; border-radius: 10px;
  background: #f7f5fa; color: var(--purple);
  font-weight: 600; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.dropzone:hover { border-color: var(--purple); background: #f1ecf7; }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dropzone:focus-within { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(85, 37, 131, .12); }
.dz-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--purple); color: #fff; font-size: 1.1rem; line-height: 1;
}
.thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.thumbs:not(:empty) { margin-top: 10px; }
.thumb { position: relative; width: 76px; height: 76px; border-radius: 8px; overflow: hidden; background: #eee8f3; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.noimg { display: flex; align-items: center; justify-content: center; font-size: .65rem; padding: 4px; text-align: center; word-break: break-all; }
.thumb button {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; padding: 0; margin: 0;
  border-radius: 50%; background: rgba(0, 0, 0, .65); color: #fff;
  font-size: .9rem; line-height: 1; box-shadow: none;
}
.thumb button:hover { background: #000; transform: none; box-shadow: none; }
button:disabled { opacity: .7; cursor: wait; }

.consent { font-size: .78rem; color: var(--muted); margin: 8px 0 0; text-align: center; }
.consent a { color: var(--purple); }
footer a { color: rgba(255, 255, 255, .75); }

.legal { max-width: 800px; margin: 0 auto; padding: 48px 20px 64px; }
.legal-back { display: inline-block; color: var(--gold); font-weight: 600; text-decoration: none; margin-bottom: 20px; }
.legal-card { padding: 44px 48px; line-height: 1.7; }
.legal-card h1 {
  font-family: "Bebas Neue", Impact, sans-serif; font-weight: 400;
  font-size: 3rem; line-height: 1; color: var(--purple); margin: 0 0 6px;
}
.legal-card h2 { font-size: 1.15rem; margin: 32px 0 8px; color: var(--text); }
.legal-card p, .legal-card li { color: #3b3445; }
.legal-card ul { padding-left: 22px; }
.legal-card li { margin-bottom: 6px; }
.legal-card a { color: var(--purple); }
.updated { color: var(--muted) !important; margin: 0 0 24px; }
@media (max-width: 600px) { .legal-card { padding: 28px 20px; } .legal-card h1 { font-size: 2.4rem; } }
