:root {
  --bg-1: #060506;
  --bg-2: #100c0f;
  --bg-3: #1b1218;
  --panel: rgba(18, 14, 15, 0.78);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --gold: #d8b56d;
  --gold-light: #f7df9e;
  --gold-deep: #9f7638;
  --ivory: #f6efe1;
  --muted: #cdbf9f;
  --muted-2: #9d927e;
  --line: rgba(216, 181, 109, 0.26);
  --line-soft: rgba(255, 255, 255, 0.12);
  --danger: #ff9b9b;
  --success: #98f1bd;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 181, 109, 0.18), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(120, 73, 40, 0.18), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(216, 181, 109, 0.11), transparent 30%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 48%, var(--bg-3));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
  opacity: 0.4;
}

body::after {
  content: "";
  position: fixed;
  left: 50%;
  bottom: -170px;
  width: 820px;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 50%;
  border-top: 1px solid rgba(247, 223, 158, 0.28);
  box-shadow: 0 -18px 80px rgba(216, 181, 109, 0.12);
  opacity: 0.8;
}

.site-topbar {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto -18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 181, 109, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    rgba(9, 7, 8, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ivory);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.topbar-brand img {
  width: 92px;
  max-height: 40px;
  object-fit: contain;
  border-radius: 999px;
}

.topbar-brand-fallback {
  display: none;
  align-items: center;
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(216, 181, 109, 0.16);
  background: rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.topbar-nav a:hover {
  transform: translateY(-1px);
  color: var(--gold-light);
  border-color: rgba(247, 223, 158, 0.34);
  background: rgba(216, 181, 109, 0.09);
}

.hero-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: min(440px, 100%);
  margin: 24px auto 0;
}

.hero-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-btn-primary {
  color: #160f0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 46%, var(--gold-deep));
  box-shadow: 0 14px 34px rgba(216, 181, 109, 0.20), inset 0 1px 0 rgba(255,255,255,0.55);
}

.hero-btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 40px rgba(216, 181, 109, 0.28), inset 0 1px 0 rgba(255,255,255,0.60);
}

.hero-btn-secondary {
  color: var(--gold-light);
  border: 1px solid rgba(216, 181, 109, 0.32);
  background: rgba(255,255,255,0.055);
}

.hero-btn-secondary:hover {
  background: rgba(216, 181, 109, 0.10);
}

.occasion-pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  max-width: 460px;
}

.occasion-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 181, 109, 0.18);
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.recovery-info {
  margin: 0 0 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(216, 181, 109, 0.22);
  background:
    radial-gradient(circle at top left, rgba(247, 223, 158, 0.14), transparent 45%),
    rgba(0, 0, 0, 0.20);
  color: var(--muted);
  gap: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.recovery-info strong {
  color: var(--gold-light);
  font-size: 14px;
}

.recovery-info a {
  display: inline-flex;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 181, 109, 0.28);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 900;
  background: rgba(216, 181, 109, 0.08);
}

.recovery-info a:hover {
  background: rgba(216, 181, 109, 0.14);
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 42px 0;
}

.brand-panel,
.container {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(9, 7, 8, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.brand-panel::before,
.container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(247, 223, 158, 0.16), transparent 22%, transparent 76%, rgba(216, 181, 109, 0.08)),
    radial-gradient(circle at 50% 0%, rgba(216, 181, 109, 0.14), transparent 42%);
}

.brand-panel {
  min-height: 720px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-glow {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 181, 109, 0.25), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.brand-logo-card {
  position: relative;
  width: min(320px, 88%);
  margin: 0 auto 16px;
  padding: 10px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(216, 181, 109, 0.18);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.45);
}

.brand-logo {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.brand-logo-fallback {
  display: none;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 181, 109, 0.20), transparent 55%),
    linear-gradient(145deg, rgba(255, 244, 214, 0.08), rgba(0, 0, 0, 0.18));
  color: var(--ivory);
  text-align: center;
}

.brand-logo-fallback .fallback-symbol {
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(216, 181, 109, 0.45);
}

.brand-logo-fallback strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ivory);
}

.brand-logo-fallback small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.brand-kicker,
.eyebrow {
  margin: 0;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.brand-title {
  margin: 14px auto 14px;
  max-width: 460px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ivory);
  text-shadow: 0 0 28px rgba(216, 181, 109, 0.20);
}

.brand-text {
  margin: 0 auto;
  max-width: 470px;
  text-align: center;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.premium-points {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.premium-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(216, 181, 109, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.premium-point span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  border: 1px solid rgba(216, 181, 109, 0.32);
  background: rgba(216, 181, 109, 0.10);
  box-shadow: inset 0 0 20px rgba(216, 181, 109, 0.08);
}

.premium-point strong {
  display: block;
  color: var(--ivory);
  font-size: 15px;
  margin-bottom: 3px;
}

.premium-point small {
  display: block;
  color: var(--muted-2);
  line-height: 1.45;
}

.brand-footer-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
  justify-content: center;
}

.brand-footer-line span {
  height: 1px;
  width: 86px;
  background: linear-gradient(90deg, transparent, rgba(216, 181, 109, 0.62), transparent);
}

.container {
  width: 100%;
  max-width: 680px;
  padding: 34px;
}

.container > * {
  position: relative;
}

.form-header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(216, 181, 109, 0.18);
}

.form-header h2 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 500;
  color: var(--ivory);
}

.form-header p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 500px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.journey-steps span {
  text-align: center;
  padding: 9px 8px;
  border: 1px solid rgba(216, 181, 109, 0.16);
  background: rgba(216, 181, 109, 0.06);
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.package-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: stretch;
  margin: 0 0 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(216, 181, 109, 0.28);
  background:
    radial-gradient(circle at 86% 12%, rgba(247, 223, 158, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(216, 181, 109, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-label {
  margin: 0 0 6px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 900;
}

.package-card h3 {
  margin: 0 0 12px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 500;
}

.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.42;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.package-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 16px 12px;
  border-radius: 20px;
  border: 1px solid rgba(247, 223, 158, 0.25);
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 223, 158, 0.18), transparent 58%),
    rgba(0, 0, 0, 0.24);
  text-align: center;
}

.package-price-box span {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.package-price-box strong {
  margin: 6px 0 4px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 24px rgba(216, 181, 109, 0.24);
}

.package-price-box small {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.35;
}
.package-video-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  border: 1px solid rgba(247, 223, 158, 0.28);
  background: rgba(216, 181, 109, 0.10);
}

.video-feature-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0 0 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(247, 223, 158, 0.30);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 223, 158, 0.20), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(216, 181, 109, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 44px rgba(0,0,0,0.20);
}

.video-feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #170f08;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  box-shadow: 0 14px 34px rgba(216, 181, 109, 0.22);
}

.video-feature-kicker {
  margin: 0 0 4px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 900;
}

.video-feature-card h3 {
  margin: 0 0 6px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 500;
}

.video-feature-card p:not(.video-feature-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.video-step {
  border-color: rgba(247, 223, 158, 0.26);
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 223, 158, 0.12), transparent 48%),
    rgba(0, 0, 0, 0.20);
}


.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 22px;
}

.trust-strip span {
  padding: 10px 8px;
  border-radius: 999px;
  border: 1px solid rgba(216, 181, 109, 0.16);
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}



.info-sections {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin: 0 0 22px;
}

.info-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(216, 181, 109, 0.22);
  background:
    radial-gradient(circle at 16% 0%, rgba(247, 223, 158, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(247, 223, 158, 0.10), transparent 28%, transparent 74%, rgba(216, 181, 109, 0.06));
}

.info-card > * {
  position: relative;
}

.info-kicker {
  margin: 0 0 7px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 900;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 500;
}

.info-text {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13.8px;
  line-height: 1.58;
}

.process-list {
  display: grid;
  gap: 10px;
}

.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 17px;
  border: 1px solid rgba(216, 181, 109, 0.15);
  background: rgba(0, 0, 0, 0.18);
}

.process-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  border: 1px solid rgba(216, 181, 109, 0.32);
  background: rgba(216, 181, 109, 0.10);
  box-shadow: inset 0 0 20px rgba(216, 181, 109, 0.08);
}

.process-step strong,
.included-list strong {
  display: block;
  color: var(--ivory);
  font-size: 14px;
  margin-bottom: 3px;
}

.process-step small,
.included-list small {
  display: block;
  color: var(--muted-2);
  line-height: 1.45;
  font-size: 12.5px;
}

.included-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.included-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 17px;
  border: 1px solid rgba(216, 181, 109, 0.15);
  background: rgba(0, 0, 0, 0.18);
}

.included-list li > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  border: 1px solid rgba(216, 181, 109, 0.30);
  background: rgba(216, 181, 109, 0.10);
}

.confidence-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 17px;
  border: 1px solid rgba(247, 223, 158, 0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 223, 158, 0.13), transparent 54%),
    rgba(216, 181, 109, 0.07);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.confidence-note strong {
  color: var(--gold-light);
}


.brief-card {
  margin: 0 0 20px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(216, 181, 109, 0.22);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 223, 158, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.025));
}

.brief-card .form-group:last-child {
  margin-bottom: 0;
}

.brief-intro {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 181, 109, 0.14);
}

.brief-intro span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  border: 1px solid rgba(216, 181, 109, 0.32);
  background: rgba(216, 181, 109, 0.10);
}

.brief-intro strong {
  display: block;
  color: var(--ivory);
  font-size: 15px;
  margin-bottom: 4px;
}

.brief-intro small {
  display: block;
  color: var(--muted-2);
  line-height: 1.45;
}

.form-group {
  margin-bottom: 18px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-weight: 700;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(216, 181, 109, 0.22);
  border-radius: 14px;
  color: var(--ivory);
  font-size: 16px;
  font-family: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
  resize: vertical;
  min-height: 92px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(205, 191, 159, 0.62);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(247, 223, 158, 0.78);
  background: rgba(0, 0, 0, 0.38);
  box-shadow:
    0 0 0 4px rgba(216, 181, 109, 0.12),
    0 0 32px rgba(216, 181, 109, 0.08);
}

.form-hint {
  margin: 8px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.45;
}

.action-group {
  margin-top: 24px;
}

button,
.final-song-card a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, var(--gold-light), var(--gold) 46%, var(--gold-deep));
  color: #160f0a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 12px 32px rgba(216, 181, 109, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

button:hover,
.final-song-card a:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 16px 38px rgba(216, 181, 109, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

button:active,
.final-song-card a:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 181, 109, 0.32);
  color: var(--gold-light);
  box-shadow: none;
}

.secondary-btn:hover {
  background: rgba(216, 181, 109, 0.10);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.loading-box,
.section-card,
#result-container {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(216, 181, 109, 0.20);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028)),
    rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.loading-box {
  text-align: center;
  color: var(--gold-light);
  font-weight: 800;
}

.loading-box p,
#loading p {
  margin: 0 0 12px;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.10);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border-left-color: var(--gold-light);
  border-top-color: rgba(216, 181, 109, 0.42);
  animation: spin 1s linear infinite;
  margin: 12px auto 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.section-card h3,
.version-selection-info h3,
.success-message h3,
.correction-card h3,
.final-song-card h3 {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.section-subtitle,
.version-selection-info p,
.success-message p,
.correction-card p,
.preview-note {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  text-align: center;
}

.section-subtitle {
  margin: 0 0 16px;
}

#lyricsText,
#changeRequest,
#correctionRequest {
  width: 100%;
}

#lyricsText {
  min-height: 360px;
  line-height: 1.55;
}

.nested-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 181, 109, 0.14);
}

.approved-message {
  margin: 14px 0 0;
  color: var(--success);
  text-align: center;
  font-weight: 800;
}

.payment-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 181, 109, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.18);
}

#paypal-button-container {
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.version-selection-info,
.success-message {
  border: 1px solid rgba(216, 181, 109, 0.25);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.14), rgba(255, 255, 255, 0.035));
}

.version-selection-info p,
.success-message p {
  margin: 0;
}

.version-card {
  position: relative;
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(216, 181, 109, 0.20);
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 181, 109, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.045);
}

.version-card::before {
  content: "♪";
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(216, 181, 109, 0.55);
  font-size: 20px;
}

.version-card h4 {
  margin: 0 0 8px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.preview-note {
  margin: 0 0 12px;
  text-align: left;
}

.version-card audio,
.final-song-card audio {
  width: 100%;
  margin: 10px 0 14px;
  filter: sepia(0.18) saturate(0.9);
}

.select-version-btn {
  margin-top: 4px;
}

.final-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 181, 109, 0.14), transparent 42%),
    rgba(0, 0, 0, 0.20);
}

.final-song-card {
  text-align: center;
}

.final-song-card h3 {
  margin-top: 0;
}

.order-reference {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(216, 181, 109, 0.18);
  background: rgba(216, 181, 109, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.correction-card {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(216, 181, 109, 0.20);
  background: rgba(255, 255, 255, 0.045);
}

.correction-card textarea {
  min-height: 120px;
}

.correction-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  font-weight: 700;
}

.correction-status.success {
  color: var(--success);
}

.correction-status.error {
  color: var(--danger);
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 28px));
    padding: 26px 0;
  }

  .brand-panel {
    min-height: auto;
  }

  .brand-logo-card {
    width: min(260px, 82%);
  }

  .info-sections {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 18px, 720px);
    padding: 12px 0;
    gap: 14px;
  }

  .brand-panel,
  .container {
    border-radius: 22px;
    padding: 22px;
  }

  .brand-panel {
    padding-top: 24px;
  }

  .brand-logo-card {
    width: min(210px, 86%);
    border-radius: 22px;
  }

  .brand-logo {
    border-radius: 18px;
  }

  .brand-logo-fallback {
    min-height: 72px;
    border-radius: 18px;
  }

  .brand-logo-fallback strong {
    font-size: 25px;
  }

  .brand-title {
    font-size: 34px;
  }

  .brand-text {
    font-size: 14.5px;
  }

  .premium-points {
    margin-top: 20px;
  }

  .two-columns,
  .journey-steps,
  .package-card,
  .trust-strip,
  .video-feature-card,
  .info-sections {
    grid-template-columns: 1fr;
  }

  .video-feature-icon {
    margin: 0 auto;
  }

  .video-feature-card {
    text-align: center;
  }

  .package-price-box {
    min-height: auto;
  }

  .journey-steps {
    gap: 6px;
  }

  .form-header h2 {
    font-size: 32px;
  }

  .section-card,
  #result-container,
  .loading-box {
    padding: 18px;
    border-radius: 18px;
  }

  #lyricsText {
    min-height: 300px;
  }
}


/* Delivery, trust and payment terms upgrade */
.policy-sections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 30px;
}

.policy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 106, 0.18);
  background:
    radial-gradient(circle at top left, rgba(212, 176, 106, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.policy-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 176, 106, 0.45), transparent);
}

.policy-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f5efe6;
  background: linear-gradient(135deg, rgba(212, 176, 106, 0.95), rgba(142, 106, 168, 0.72));
  box-shadow: 0 10px 24px rgba(212, 176, 106, 0.16);
  margin-bottom: 12px;
  font-size: 15px;
}

.policy-card h3 {
  margin: 0 0 8px;
  color: #f5efe6;
  font-size: 16px;
}

.policy-card p {
  margin: 0;
  color: #cfc4b6;
  font-size: 13px;
  line-height: 1.55;
}

.payment-terms-box {
  margin: 18px 0 18px;
  padding: 16px;
  border: 1px solid rgba(212, 176, 106, 0.22);
  border-radius: 16px;
  background: rgba(15, 11, 20, 0.48);
}

.terms-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  color: #f5efe6;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #d4b06a;
  cursor: pointer;
}

.payment-terms-box p {
  margin: 10px 0 0 32px;
  color: #b9ad9f;
  font-size: 12.5px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .policy-sections {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .payment-terms-box {
    padding: 14px;
  }

  .payment-terms-box p {
    margin-left: 0;
  }
}


@media (max-width: 720px) {
  .site-topbar {
    width: min(100% - 18px, 720px);
    margin: 12px auto 0;
    border-radius: 22px;
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
  }

  .topbar-brand {
    justify-content: center;
  }

  .topbar-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .topbar-nav a {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .occasion-pills {
    gap: 6px;
  }

  .occasion-pills span {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}

/* Premium dynamic MP4 lyric video / cover asset upgrade */
.video-assets {
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(216, 181, 109, 0.20);
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 223, 158, 0.16), transparent 44%),
    linear-gradient(145deg, rgba(216, 181, 109, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  text-align: center;
}

.video-assets h3 {
  margin-top: 0;
}

.video-assets p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.cover-preview {
  width: min(100%, 360px);
  display: block;
  margin: 10px auto 16px;
  border-radius: 20px;
  border: 1px solid rgba(216, 181, 109, 0.28);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
}

#lyric-video-player,
.recovered-video-block video {
  width: 100%;
  max-height: 720px;
  margin: 12px 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(216, 181, 109, 0.22);
  background: #050407;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30);
}

.video-download-actions,
.recovered-actions {
  display: grid;
  gap: 10px;
}

.video-download-actions a {
  width: 100%;
}

.recovered-video-block {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(216, 181, 109, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.recovered-video-block h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}


/* MeloDoro share-ready video upgrade */
.share-video-note {
  display: grid;
  gap: 5px;
  margin: 14px 0 16px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(247, 223, 158, 0.24);
  background:
    radial-gradient(circle at top left, rgba(247, 223, 158, 0.16), transparent 46%),
    rgba(0, 0, 0, 0.22);
  color: var(--muted);
  line-height: 1.5;
}

.share-video-note strong {
  color: var(--gold-light);
  font-size: 15px;
}

.share-video-note span {
  font-size: 13.5px;
}

#lyric-video-player,
.recovered-video-block video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(216, 181, 109, 0.10), transparent 54%),
    #050407;
}

.video-assets {
  border-color: rgba(247, 223, 158, 0.30);
}

.video-download-actions a:first-child {
  background:
    linear-gradient(135deg, #fff0b8, var(--gold) 44%, var(--gold-deep));
  color: #160f0a;
}

@media (max-width: 560px) {
  #lyric-video-player,
  .recovered-video-block video {
    max-height: 560px;
  }
}


/* Legal / Privacy / Contact pages */
.site-footer {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 32px));
  margin: -12px auto 28px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(216, 181, 109, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 7, 8, 0.64);
  color: var(--muted);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-footer.compact-footer {
  margin-top: 24px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.site-footer span {
  font-size: 13px;
  line-height: 1.4;
}

.site-footer nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a,
.legal-content a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 800;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 181, 109, 0.18);
  background: rgba(0, 0, 0, 0.16);
  font-size: 12.5px;
}

.site-footer a:hover,
.legal-content a:hover {
  text-decoration: underline;
}

.legal-topbar {
  margin-bottom: 20px;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 220px);
  display: grid;
  align-items: start;
  padding: 34px 0 22px;
}

.legal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(9, 7, 8, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 181, 109, 0.16), transparent 38%),
    linear-gradient(120deg, rgba(247, 223, 158, 0.10), transparent 24%, transparent 74%, rgba(216, 181, 109, 0.06));
}

.legal-card > * {
  position: relative;
}

.legal-card h1 {
  margin: 10px 0 12px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.035em;
}

.legal-lead {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  margin: 10px 0 -6px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content ul {
  padding-left: 22px;
  display: grid;
  gap: 8px;
}


@media (max-width: 720px) {
  .site-footer {
    width: min(100% - 18px, 720px);
    margin: 12px auto 18px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .legal-page {
    width: min(100% - 18px, 900px);
    padding-top: 14px;
  }

  .legal-card {
    border-radius: 22px;
  }
}
