:root {
  --bg: #05070c;
  --panel: rgba(14, 18, 28, 0.88);
  --panel-2: rgba(19, 25, 39, 0.95);
  --line: rgba(255,255,255,0.08);
  --text: #f5f7fb;
  --muted: #9ea8ba;
  --accent: #f3b562;
  --accent-2: #8b5cf6;
  --success: #22c55e;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: radial-gradient(circle at top, #111624 0%, var(--bg) 42%, #020305 100%); color: var(--text); font-family: Inter, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
body { min-height: 100vh; position: relative; overflow-x: hidden; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 40px auto; position: relative; z-index: 2; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.hero { padding: 40px; margin-bottom: 24px; }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: 0.16em; font-size: 12px; text-transform: uppercase; margin-bottom: 16px; }
.hero h1, .thankyou-card h1 { margin: 0 0 14px; font-size: clamp(32px, 6vw, 58px); line-height: 1.02; }
.sub { color: #d2d8e4; font-size: 18px; max-width: 850px; line-height: 1.65; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge { padding: 11px 14px; border-radius: 999px; border: 1px solid rgba(243,181,98,.24); background: rgba(243,181,98,.08); color: #f8d6a7; font-size: 13px; font-weight: 700; }
.price-box { margin-top: 30px; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px; border-radius: 20px; background: linear-gradient(90deg, rgba(243,181,98,.12), rgba(139,92,246,.08)); border: 1px solid rgba(255,255,255,.07); }
.label { color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.price { font-size: clamp(34px, 6vw, 56px); font-weight: 800; }
.mini-note { max-width: 350px; color: #dce2ee; line-height: 1.6; }
.grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }
.left-panel, .right-panel, .footer-card, .thankyou-card { padding: 28px; }
h2 { margin: 0 0 10px; font-size: 26px; }
.muted { color: var(--muted); line-height: 1.7; }
.lead-form { display: grid; gap: 14px; margin-top: 20px; }
label { display: grid; gap: 8px; font-weight: 600; color: #eaf0fb; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.08); background: var(--panel-2); color: var(--text);
  border-radius: 14px; padding: 14px 15px; outline: none; font-size: 15px;
}
input::placeholder, textarea::placeholder { color: #7f8aa0; }
input:focus, select:focus, textarea:focus { border-color: rgba(243,181,98,.65); box-shadow: 0 0 0 4px rgba(243,181,98,.08); }
.primary-btn, .action-btn, .secondary-btn {
  border: 0; cursor: pointer; border-radius: 14px; padding: 14px 18px; font-size: 15px; font-weight: 800; transition: .2s ease;
}
.primary-btn, .action-btn { background: linear-gradient(90deg, var(--accent), #ffcf86); color: #141414; }
.primary-btn:hover, .action-btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.secondary-btn { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.1); }
.notice { margin-top: 18px; border-radius: 16px; padding: 16px; background: rgba(139,92,246,.09); border: 1px solid rgba(139,92,246,.18); color: #d7cdf7; line-height: 1.65; }
.pay-method { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 18px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: 18px; margin-top: 14px; }
.pay-method h3, .gift-box h3 { margin: 0 0 6px; font-size: 20px; }
.pay-method p, .gift-box p, .footer-card p { margin: 0; color: #d4d9e4; line-height: 1.7; }
.address-row { margin-top: 12px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
code { display: block; word-break: break-all; background: #090d16; border: 1px dashed rgba(255,255,255,.13); padding: 12px 14px; border-radius: 12px; color: #bfe8c7; }
.gift-box { margin-top: 18px; padding: 22px; border-radius: 18px; background: linear-gradient(135deg, rgba(34,197,94,.13), rgba(243,181,98,.12)); border: 1px solid rgba(255,255,255,.08); }
.footer-card { margin-top: 24px; }
.small-note { margin-top: 14px !important; color: var(--muted) !important; font-size: 14px; }
.bg-orb { position: fixed; filter: blur(70px); opacity: .22; pointer-events: none; }
.orb-1 { width: 260px; height: 260px; background: #8b5cf6; top: 60px; left: -70px; }
.orb-2 { width: 340px; height: 340px; background: #f3b562; bottom: 20px; right: -100px; }
.thankyou-wrap { display: grid; place-items: center; min-height: 100vh; }
.thankyou-card { max-width: 760px; text-align: center; }
.inline-btn { display: inline-block; margin-top: 18px; }
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
  .hero, .left-panel, .right-panel, .footer-card { padding: 22px; }
  .price-box, .pay-method { grid-template-columns: 1fr; }
  .action-btn { width: 100%; text-align: center; }
}


.field-help{display:block;margin-top:8px;color:#9aa3b2;font-size:12px;line-height:1.4;}
input[type="file"]{padding:12px;background:#0f131d;color:#cfd6e4;border:1px dashed rgba(255,255,255,0.18);border-radius:14px;}
