/* ===========================================================
   MoreTech Global — Lead Capture
   Premium dark / gold theme
   =========================================================== */
:root {
  --gold:        #f5b021;
  --gold-light:  #ffcf57;
  --gold-deep:   #c8881a;
  --ink:         #0a0b0d;
  --ink-soft:    #121419;
  --panel:       #16181f;
  --panel-2:     #1d2029;
  --line:        rgba(255, 255, 255, 0.09);
  --line-strong: rgba(245, 176, 33, 0.45);
  --white:       #ffffff;
  --text:        #e8e9ec;
  --muted:       #9aa0ab;
  --muted-soft:  #6c7280;
  --container:   720px;
  --radius:      14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

/* ── TOP BAR ── */
.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--gold-light), var(--gold-deep));
  color: #1a1205;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 18px rgba(245, 176, 33, 0.35);
}

.brand-name {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
}

.brand-accent { color: var(--gold); }

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.topbar-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  display: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 13, 0.55) 0%, rgba(10, 11, 13, 0.72) 55%, var(--ink) 100%),
    radial-gradient(120% 80% at 18% 30%, rgba(10, 11, 13, 0.85) 0%, rgba(10, 11, 13, 0) 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 18px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(245, 176, 33, 0.07);
  margin: 40px 0 26px;
}

.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 176, 33, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(15.5px, 2.1vw, 18px);
  color: rgba(232, 233, 236, 0.86);
  max-width: 56ch;
  line-height: 1.7;
}

.hero-sub strong { color: #fff; font-weight: 700; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.stat .num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .label {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── FORM ── */
.form-section {
  padding: 64px 0 24px;
}

.form-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(180deg, var(--panel), var(--ink-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
}

.form-head {
  padding: 30px 32px 22px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 140% at 50% -40%, rgba(245, 176, 33, 0.16), transparent 60%);
}

.form-head h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.form-head p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.form-body { padding: 28px 32px 34px; }

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.field label .req { color: var(--gold); }

.control {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.control:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(245, 176, 33, 0.12);
  background: #20232c;
}

.control svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted-soft);
  transition: color 0.18s ease;
}

.control:focus-within svg { color: var(--gold); }

.control input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: #fff;
  padding: 14px 0;
}

.control input::placeholder { color: var(--muted-soft); }

.btn-submit {
  width: 100%;
  margin-top: 10px;
  padding: 17px;
  border: none;
  border-radius: 11px;
  font: inherit;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #1a1205;
  cursor: pointer;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 12px 30px -8px rgba(245, 176, 33, 0.55);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 38px -8px rgba(245, 176, 33, 0.62);
}

.btn-submit:active { transform: translateY(0); }

.btn-submit svg { width: 18px; height: 18px; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-soft);
  line-height: 1.6;
  text-align: center;
}

.form-foot svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold-deep); }

.form-foot a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* ── HOW IT WORKS ── */
.how {
  padding: 70px 0 20px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.section-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  text-align: center;
  margin: 12px auto 0;
  max-width: 20ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.step {
  background: linear-gradient(180deg, var(--panel), var(--ink-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.step:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.step-num {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--gold-light);
  background: rgba(245, 176, 33, 0.1);
  border: 1px solid var(--line-strong);
  margin-bottom: 16px;
}

.step h3 { font-size: 16.5px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.step p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── FAQ ── */
.faq { padding: 72px 0 40px; }

.faq-list {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

details[open] .faq-q::after { content: '\2212'; }

.faq-a { padding: 0 22px 20px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  text-align: center;
}

.site-footer .brand { justify-content: center; margin-bottom: 12px; }
.site-footer p { font-size: 12.5px; color: var(--muted-soft); line-height: 1.7; }
.site-footer a { color: var(--muted); }

/* ── THANK YOU ── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(130% 90% at 50% -10%, rgba(245, 176, 33, 0.14), transparent 55%),
    var(--ink);
}

.thankyou-card {
  background: linear-gradient(180deg, var(--panel), var(--ink-soft));
  border: 1px solid var(--line);
  padding: 52px 42px;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
}

.thankyou-icon {
  width: 66px; height: 66px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--gold-light), var(--gold-deep));
  color: #1a1205;
  box-shadow: 0 12px 34px -6px rgba(245, 176, 33, 0.55);
}

.thankyou-card h1 { font-size: 27px; font-weight: 800; color: #fff; margin-bottom: 13px; letter-spacing: -0.02em; }
.thankyou-card p  { font-size: 15px; color: var(--muted); margin-bottom: 30px; line-height: 1.75; }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: rgba(245, 176, 33, 0.1);
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.btn-back:hover { background: rgba(245, 176, 33, 0.18); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .form-body { padding: 24px 20px 30px; }
  .form-head { padding: 26px 20px 20px; }
  .hero-stats { gap: 22px; }
}

@media (min-width: 560px) {
  .topbar-cta { display: block; }
}
