/* ═══════════════════════════════════════════════════════════
   ONSITE SUPPORT — FREE RETURNS AUDIT LANDING PAGE
   Dark theme matching onsitesupport.io brand identity
   ═══════════════════════════════════════════════════════════ */

:root {
  --accent: #4141F2;
  --accent-2: #6868f5;
  --accent-glow: rgba(65,65,242,0.35);
  --red: #FF4444;
  --green: #00C48C;
  --bg: #0a0a0f;
  --bg-card: rgba(255,255,255,0.04);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Archivo', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
}

@media screen and (max-width: 768px) {
  img { width: 100%; }
}

.main {
  width: 100%;
  max-width: 1727px;
  margin: auto;
}

.container {
  width: 100%;
  max-width: 1224px;
  margin: auto;
}

/* ── Hero Section ── */

.hero-section-container {
  min-height: 900px;
  width: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(65,65,242,0.15) 0%, transparent 60%), var(--bg);
}

.hero-section-wrapper {
  height: 100%;
  width: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hero-section-container { min-height: auto; }
  .hero-section-header {
    flex-direction: column;
    gap: 30px;
  }
}

.hero-section-header__products {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.hero-section-header__products > .divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}

/* Hero content grid */
.hero-section-content {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.hero-section-content.hero-section-content-grid {
  display: flex;
  justify-content: space-between;
  max-width: unset;
  flex-wrap: wrap;
}

.hero-section-content.hero-section-content-grid > div {
  flex: 1;
  width: 100%;
  min-width: 500px;
}

.hero-section-content.hero-section-content-grid > div.left {
  padding: 30px 0;
}

.hero-section-content.hero-section-content-grid > div.left > .left-inner {
  width: 570px;
  border-radius: 16px;
  border: 2px solid rgba(65,65,242,0.25);
  padding: 30px;
  background: var(--bg-card);
}

.hero-section-content.hero-section-content-grid > div.left > .left-inner > section {
  width: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 40px;
}

.hero-section-content.hero-section-content-grid > div.right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-section-content.hero-section-content-grid > div.right img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(65, 65, 242, 0.25), 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  .hero-section-content.hero-section-content-grid > div { min-width: initial; }
  .hero-section-content.hero-section-content-grid > div.left > .left-inner {
    width: calc(100% - 20px);
    padding: 20px;
    margin: auto;
  }
  .hero-section-content.hero-section-content-grid > div.left > .left-inner > section { padding: 20px; }
  .hero-section-content.hero-section-content-grid > div.right img { width: auto; max-width: 100%; }
}

.hero-section-content h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.5px;
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section-content p {
  margin-top: 24px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
}

/* Hero footer form */
.hero-section-footer { width: 100%; text-align: center; }

.hero-section-footer input {
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  margin-right: 16px;
  outline: none;
}
.hero-section-footer input::placeholder { color: var(--text-secondary); }
.hero-section-footer input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.hero-section-footer button {
  display: inline-block;
  text-decoration: none;
  width: 340px;
  padding: 18px 24px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px var(--accent-glow);
  transition: background 0.2s;
}
.hero-section-footer button:hover { background: var(--accent-2); }

/* ── Page Content (Steps) ── */

.page-content {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.page-content header h2 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 52px;
}

.step-form-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step-content h3 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.step-content dl { margin-top: 16px; }
.step-content dl dt {
  margin-top: 8px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  display: list-item;
  list-style-type: disc;
  margin-left: 25px;
}
.step-content dl dt a { color: var(--accent-2); text-decoration: underline; }
.step-content dl dd { margin-top: 16px; margin-left: 0; }
.step-content dl dd img { border-radius: 12px; border: 1px solid var(--border); }
.step-content dl dd + dt { margin-top: 24px; }

.step-content form dl dd {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 568px;
}

/* ── Form ── */

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  display: block;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.form-group input::placeholder {
  color: rgba(255,255,255,0.25);
  font-size: 15px;
}

/* Upload buttons */
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 280px;
}
.upload-btn-wrapper button { width: 100%; }

.button-upload-container { display: flex; flex-direction: column; gap: 4px; }
.button-upload-container span { color: var(--accent-2); font-size: 12px; }

.btn {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border 0.2s;
}
.btn:hover { border-color: var(--accent); }
.btn span {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 13px;
}
.upload-btn-wrapper input[type=file] {
  font-size: 55px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

/* Submit */
.submit-form {
  margin-top: 28px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  width: 320px;
  padding: 18px 60px;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 30px var(--accent-glow);
  transition: background 0.2s;
}
.submit-form:hover { background: var(--accent-2); }

/* ── Footer ── */

.page-footer {
  padding-top: 2px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
}
.footer-wrapper {
  margin: auto;
  width: 100%;
  max-width: 880px;
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.footer-wrapper p {
  color: var(--text-secondary);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}
.footer-wrapper a {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(65,65,242,0.3);
  color: var(--accent-2);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  width: 320px;
  padding: 17px 60px;
  background: rgba(65,65,242,0.08);
  text-align: center;
  transition: background 0.2s;
}
.footer-wrapper a:hover { background: rgba(65,65,242,0.15); }
