:root {
  --ink: #0E1310;
  --ink-soft: #1B1F1C;
  --paper: #F6F7F4;
  --stone: #5B655A;
  --stone-soft: #7C8478;
  --green-deep: #1D5E28;
  --green: #2E8B3D;
  --green-bright: #4CAF44;
  --green-wash: #EAF3E8;
  --line: #DCE1D8;
  --danger: #B3432E;
  --shadow-sm: 0 1px 2px rgba(14, 19, 16, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(14, 19, 16, 0.12);
  --shadow-lg: 0 24px 60px -20px rgba(14, 19, 16, 0.22);
  font-size: 16px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Faint dot-grid texture for depth under everything */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(29, 94, 40, 0.14) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 60% 0%, #000 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

/* Background watermark echoing the AZTURNX triangular mark */
.bg-mark {
  position: fixed;
  top: -12vw;
  right: -14vw;
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
  clip-path: polygon(50% 0%, 100% 87%, 0% 87%);
  background: linear-gradient(155deg, var(--green-wash) 0%, transparent 60%);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

/* Soft floating accent blobs for extra depth on the form page */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.bg-blob--a {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(76, 175, 68, 0.20), transparent 70%);
}
.bg-blob--b {
  width: 320px;
  height: 320px;
  right: 6vw;
  bottom: 12vh;
  background: radial-gradient(circle at 60% 40%, rgba(29, 94, 40, 0.14), transparent 70%);
}
.bg-blob--a, .bg-blob--b { animation: drift 14s ease-in-out infinite alternate; }
.bg-blob--b { animation-delay: -6s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -18px) scale(1.06); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 6vw;
  background: rgba(246, 247, 244, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(216, 221, 212, 0.7);
}

.logo { height: 34px; display: block; }

.layout {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 6vw 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}

.hero {
  padding-top: 28px;
  max-width: 500px;
  animation: fade-slide-up 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--green-wash);
  margin-bottom: 22px;
}

.hero-badge .badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hero-badge .badge-dot svg { width: 12px; height: 12px; }

.hero-kicker {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink);
}

.hero-title .accent {
  position: relative;
  color: var(--green-deep);
  background: linear-gradient(180deg, transparent 62%, var(--green-wash) 62%);
  padding: 0 2px;
  white-space: nowrap;
}

.hero-copy {
  font-size: 16.5px;
  color: var(--stone);
  max-width: 42ch;
  margin: 0 0 40px;
}

.hero-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: padding-left 200ms ease;
}

.hero-steps li:hover { padding-left: 4px; }

.step-index {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.hero-steps li:nth-child(2) .step-index { background: var(--green-deep); }
.hero-steps li:nth-child(3) .step-index { background: var(--green); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--stone-soft);
}

.hero-trust svg { width: 16px; height: 16px; color: var(--green); flex: 0 0 auto; }

.form-panel { position: relative; }

.form-panel::before {
  content: '';
  position: absolute;
  inset: -18px;
  z-index: 0;
  border-radius: 28px;
  background: conic-gradient(from 180deg, var(--green-bright), var(--green-wash), var(--green-deep), var(--green-bright));
  opacity: 0.16;
  filter: blur(28px);
  pointer-events: none;
}

.form-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  padding: 40px 38px 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  animation: fade-slide-up 620ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 70px -22px rgba(14, 19, 16, 0.28);
}

/* Floating glass stat chips layered over the card corners */
.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 221, 212, 0.9);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  animation: float-bob 5s ease-in-out infinite;
}

.float-chip .chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--green-wash);
  color: var(--green-deep);
}
.float-chip .chip-icon svg { width: 16px; height: 16px; }

.float-chip small {
  display: block;
  font-weight: 500;
  color: var(--stone-soft);
  font-size: 11px;
}

.float-chip--rating {
  top: -22px;
  left: -26px;
  animation-delay: -1.4s;
}

.float-chip--time {
  bottom: -20px;
  right: -20px;
  animation-delay: -3s;
}
.float-chip--time .chip-icon { background: #fff2e6; color: #B3672E; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.steps-track {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--stone-soft);
}

.step-dot span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  background: #fff;
  color: var(--stone-soft);
  transition: all 220ms ease;
}

.step-dot label { font-size: 11.5px; letter-spacing: 0.03em; font-weight: 500; }

.step-dot.active span {
  border-color: var(--green);
  color: var(--green-deep);
  background: var(--green-wash);
  box-shadow: 0 0 0 4px var(--green-wash);
}

.step-dot.done span {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.step-dot.active label, .step-dot.done label { color: var(--ink-soft); font-weight: 600; }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 8px 22px;
  border-radius: 2px;
  overflow: hidden;
  transition: background 320ms ease;
}

.step-dot.done + .step-line {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-bright) 100%);
}

/* ---- Card header ---- */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

.card-header-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(46, 139, 61, 0.55);
}
.card-header-icon svg { width: 20px; height: 20px; }

.card-header-title {
  font-family: 'Archivo', sans-serif;
  font-size: 18.5px;
  font-weight: 800;
  margin: 3px 0 3px;
  color: var(--ink);
}
.card-header-sub { font-size: 13.5px; color: var(--stone-soft); margin: 0; }

.section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.section-label--spaced { margin-top: 30px; }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-grid .field { margin-bottom: 0; }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.input-wrap {
  position: relative;
}

.field-icon-badge {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: var(--green-wash);
  color: var(--green-deep);
}
.field-icon-badge svg.field-icon { width: 16px; height: 16px; }

.icon-chip--name { background: #EFF1FC; color: #4C4FCE; }
.icon-chip--email { background: var(--green-wash); color: var(--green-deep); }
.icon-chip--lock { background: var(--green-wash); color: var(--green-deep); }
.icon-chip--phone { background: #FFF1E4; color: #B3672E; }
.icon-chip--product { background: #F4ECFD; color: #7B3FB8; }

.input-wrap input[type],
.input-wrap select {
  padding-left: 46px;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #F4F6F2;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  min-height: 46px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C8478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

input::placeholder, textarea::placeholder { color: var(--stone-soft); opacity: 0.85; }

input:hover, select:hover, textarea:hover { background: #EEF1EB; }

input:focus, select:focus, textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-wash);
}

.star:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

textarea { resize: vertical; min-height: 100px; padding-left: 14px; }

#otp {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-indent: 0.25em;
  text-align: left;
}

.email-row { display: flex; gap: 10px; }
.email-row input { flex: 1; }

.btn-outline {
  flex: 0 0 auto;
  padding: 0 18px;
  min-height: 46px;
  border: 1.5px solid var(--ink);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
}
.btn-outline:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-outline:hover:not(:disabled) { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-outline:active:not(:disabled) { transform: translateY(1px); }

.field-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin: 9px 0 0;
  min-height: 16px;
  color: var(--stone-soft);
}
.field-hint.error { color: var(--danger); }
.field-hint.success { color: var(--green-deep); }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-wash);
  padding: 8px 14px;
  border-radius: 999px;
  margin: -10px 0 22px;
  animation: pop-in 260ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.verified-badge[hidden] { display: none; }
.verified-badge svg { width: 15px; height: 15px; }

.rating-row {
  display: flex;
  align-items: center;
  background: #F4F6F2;
  border-radius: 12px;
  padding: 12px 16px;
}

.stars { display: flex; gap: 4px; }

.star {
  background: none;
  border: none;
  font-size: 34px;
  line-height: 1;
  color: var(--line);
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 140ms ease, transform 140ms ease;
}
.star:hover { transform: scale(1.15); color: var(--green-bright); }
.star.filled { color: var(--green); }

.btn-primary {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 15px 20px;
  min-height: 50px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 200ms ease, box-shadow 200ms ease, transform 120ms ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 550ms ease;
}
.btn-primary:hover:not(:disabled)::before { left: 130%; }
.btn-primary:disabled { background: var(--line); color: var(--stone-soft); cursor: not-allowed; box-shadow: none; }
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  box-shadow: 0 12px 28px -10px rgba(46, 139, 61, 0.55);
}
.btn-primary:active:not(:disabled) { transform: translateY(1px); }

.form-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--stone-soft);
  margin: 16px 0 0;
}
.form-footnote svg { width: 14px; height: 14px; color: var(--green); flex: 0 0 auto; }

.result-card { text-align: left; animation: fade-slide-up 480ms cubic-bezier(0.22, 1, 0.36, 1) both; }

.result-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px -8px rgba(46, 139, 61, 0.5);
}
.result-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  opacity: 0.5;
  animation: pulse-ring 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.result-icon svg { width: 24px; height: 24px; }
.result-icon--muted { background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink) 100%); box-shadow: 0 10px 24px -8px rgba(14, 19, 16, 0.4); }
.result-icon--muted::after { border-color: var(--ink-soft); }

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.55; }
  100% { transform: scale(1.25); opacity: 0; }
}

.result-card h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 23px;
  margin: 0 0 10px;
}
.result-card p { color: var(--stone); margin: 0 0 24px; }

@keyframes fade-slide-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pop-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ---- Coming soon page (index.html) ---- */
.cs-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 90px);
  max-width: 720px;
  margin: 0 auto;
  padding: 8vh 6vw 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; gap: 44px; padding-top: 28px; }
  .hero { max-width: none; }
  .bg-mark { width: 90vw; height: 90vw; top: -20vw; right: -30vw; }
  .bg-blob { display: none; }
  .form-card { padding: 30px 22px 28px; border-radius: 14px; }
  .form-panel::before { display: none; }
  .float-chip { display: none; }
}

/* =====================================================================
   Split-screen layout — feedbackform.html
   Dark brand panel on the left, clean form panel on the right.
   ===================================================================== */

html, body { height: 100%; }

.split-body { overflow-x: hidden; }

.split-shell {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* ---- Left: brand / visual panel ---- */
.split-visual {
  position: sticky;
  top: 0;
  flex: 0 0 44%;
  max-width: 620px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: radial-gradient(120% 140% at 15% 0%, #1B3A20 0%, var(--ink) 62%, #0A0D0B 100%);
  color: #EFF3EE;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 5vh, 44px) 5vw clamp(24px, 4vh, 40px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.split-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 20%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 90% 70% at 30% 20%, #000 0%, transparent 72%);
  z-index: 0;
}

.split-visual-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  animation: drift 16s ease-in-out infinite alternate;
}
.split-visual-blob--a {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -140px;
  background: radial-gradient(circle, rgba(76, 175, 68, 0.35), transparent 70%);
}
.split-visual-blob--b {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(46, 139, 61, 0.28), transparent 70%);
  animation-delay: -8s;
}

.split-visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 460px;
}

.split-logo-badge {
  display: inline-flex;
  align-self: flex-start;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  margin-bottom: 48px;
}
.split-logo-badge .logo { height: 30px; }

.split-visual .hero {
  padding-top: 0;
  max-width: none;
  animation: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-visual .hero-badge { background: rgba(255, 255, 255, 0.1); }
.split-visual .hero-kicker { color: #B9E6BD; }

.split-visual .hero-title { color: #fff; }
.split-visual .hero-title .accent {
  color: #C8F0CB;
  background: linear-gradient(180deg, transparent 62%, rgba(76, 175, 68, 0.35) 62%);
}

.split-visual .hero-copy { color: #C3CCC5; }

.split-visual .hero-steps { border-top-color: rgba(255, 255, 255, 0.14); }
.split-visual .hero-steps li { color: #E4E9E3; border-bottom-color: rgba(255, 255, 255, 0.14); }
.split-visual .step-index { box-shadow: none; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stat strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.hero-stat strong span { font-size: 13px; font-weight: 600; color: #B9E6BD; margin-left: 2px; }
.hero-stat label { font-size: 11.5px; color: #9FAE9D; letter-spacing: 0.03em; }
.hero-stat-divider { width: 1px; height: 30px; background: rgba(255, 255, 255, 0.14); flex: 0 0 auto; }

.split-visual .hero-trust {
  position: relative;
  z-index: 1;
  color: #9FAE9D;
  margin-top: 28px;
}
.split-visual .hero-trust svg { color: #6FCB74; }

/* ---- Right: form panel ---- */
.split-form-panel {
  flex: 1;
  min-width: 0;
  height: 100vh;
  background: var(--paper);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 7vh, 64px) 6vw clamp(28px, 7vh, 64px);
  overflow-y: auto;
}

.split-form-inner {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding-top: 8px;
}

@media (max-width: 980px) {
  html, body { height: auto; }
  .split-shell { flex-direction: column; height: auto; }
  .split-visual {
    position: relative;
    top: auto;
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 32px 6vw 44px;
  }
  .split-logo-badge { margin-bottom: 28px; }
  .split-visual .hero-steps { display: none; }
  .hero-stats { margin-top: 24px; padding-top: 20px; }
  .split-form-panel {
    height: auto;
    padding: 40px 6vw 60px;
    align-items: stretch;
    overflow-y: visible;
  }
  .form-panel::before { display: none; }
}

@media (max-width: 560px) {
  .hero-stats { gap: 12px; }
  .hero-stat strong { font-size: 18px; }
  .form-card { padding: 26px 20px 24px; }
  .field-grid { grid-template-columns: 1fr; gap: 22px; }
}
