:root {
  --ink: #18362f;
  --muted: #5d706b;
  --primary: #176b57;
  --primary-dark: #0f4d3f;
  --accent: #d7efe7;
  --accent-strong: #9bd2c1;
  --page: #f3f7f5;
  --surface: #ffffff;
  --border: #dbe5e1;
  --pattern: rgba(23, 107, 87, 0.09);
  --radius: 24px;
  --shadow: 0 22px 70px rgba(28, 53, 47, 0.11);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, var(--pattern) 0 2px, transparent 2.5px) 0 0 / 24px 24px,
    var(--page);
  transition: background-color 180ms ease, color 180ms ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  color: #ecf5f2;
  background: #10231f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.preview-bar > div:first-child {
  display: grid;
  gap: 2px;
  white-space: nowrap;
}

.preview-bar strong {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-bar span {
  color: #a9beb8;
  font-size: 12px;
}

.brand-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

[hidden] {
  display: none !important;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.email-pending {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 17px 18px;
  border: 1px dashed var(--accent-strong);
  border-radius: 16px;
  color: var(--ink);
  background: var(--accent);
}

.email-pending span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.legal-note {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.legal-note h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.brand-switcher button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: #dce9e5;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.brand-switcher button:hover,
.brand-switcher button:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

.brand-switcher button[aria-pressed="true"] {
  color: #10231f;
  background: #ffffff;
  border-color: #ffffff;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px 5px 13px 5px;
  background: var(--primary);
  transform: rotate(-5deg);
  box-shadow: 0 7px 18px color-mix(in srgb, var(--primary) 26%, transparent);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  border: 2px solid white;
  border-radius: 999px;
}

.brand-mark::before {
  width: 18px;
  height: 9px;
  transform: rotate(36deg);
}

.brand-mark::after {
  width: 9px;
  height: 18px;
  transform: rotate(36deg);
}

.brand-mark span {
  width: 5px;
  height: 5px;
  background: white;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.support-label {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: 13px;
  font-weight: 650;
}

.header-tools,
.language-control {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 10px;
}

.language-control {
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.language-control select {
  width: auto;
  min-width: 102px;
  padding: 8px 30px 8px 10px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--surface) 78%, transparent);
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary) 13%, var(--border));
  border-radius: 34px;
  background:
    linear-gradient(125deg, var(--surface) 0%, var(--surface) 57%, var(--accent) 100%);
  box-shadow: var(--shadow);
}

.hero::before {
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid var(--accent-strong);
  border-radius: 50%;
  content: "";
  opacity: 0.62;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding: clamp(42px, 7vw, 78px);
}

.eyebrow,
.step-label {
  margin: 0 0 11px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.response-note > span:last-child {
  min-width: 0;
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: #29a56e;
  box-shadow: 0 0 0 3px rgba(41, 165, 110, 0.16);
}

.hero-art {
  position: relative;
  min-width: 0;
  min-height: 290px;
}

.art-ring {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  border-radius: 50%;
}

.ring-one {
  top: 14%;
  right: 9%;
  width: 250px;
  height: 250px;
}

.ring-two {
  top: 25%;
  right: 21%;
  width: 170px;
  height: 170px;
}

.art-card {
  position: absolute;
  top: 50%;
  left: 44%;
  display: grid;
  width: 178px;
  min-height: 194px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px 8px 26px 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 26px 54px color-mix(in srgb, var(--primary) 20%, transparent);
  transform: translate(-50%, -50%) rotate(3deg);
  backdrop-filter: blur(10px);
}

.art-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.art-line {
  width: 78%;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 19%, white);
}

.line-wide {
  width: 100%;
}

.line-short {
  width: 55%;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 24px;
  padding: 34px 0 28px;
}

.form-card,
.direct-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 15px 40px rgba(32, 50, 45, 0.07);
}

.form-card {
  padding: clamp(28px, 5vw, 52px);
}

.direct-card {
  align-self: start;
  padding: 34px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.direct-card h2 {
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 36px);
  letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.direct-card > p {
  color: var(--muted);
  line-height: 1.65;
}

form,
label {
  display: grid;
}

form {
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  background: color-mix(in srgb, var(--page) 52%, white);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

textarea {
  min-height: 145px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 13%, transparent);
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 66%, white);
}

.field-hint {
  margin-top: -2px;
  line-height: 1.45;
}

.photo-field {
  display: grid;
  gap: 9px;
}

.photo-heading {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.photo-heading small,
.photo-hint,
.photo-count {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.photo-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px dashed color-mix(in srgb, var(--primary) 48%, var(--border));
  border-radius: 12px;
  color: var(--primary-dark);
  background: color-mix(in srgb, var(--accent) 48%, white);
  cursor: pointer;
}

.photo-picker:hover,
.photo-picker:focus-visible {
  border-color: var(--primary);
  background: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 13%, transparent);
}

.photo-picker-icon {
  font-size: 22px;
  line-height: 1;
}

.photo-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.photo-hint,
.photo-count {
  margin: 0;
  line-height: 1.5;
}

.photo-previews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.photo-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--page);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: white;
  background: rgba(15, 29, 26, 0.76);
  cursor: pointer;
}

.contact-hint {
  margin-top: -10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.consent-row {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--primary);
}

.turnstile-wrap {
  display: grid;
  gap: 7px;
  color: var(--muted);
}

.turnstile-wrap small { font-size: 11px; }

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 230px);
  border: 0;
  border-radius: 12px;
  padding: 15px 18px;
  color: white;
  background: var(--primary);
  box-shadow: 0 12px 22px color-mix(in srgb, var(--primary) 22%, transparent);
  cursor: pointer;
  font-weight: 800;
  transition: transform 140ms ease, background 140ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
  outline: none;
}

.form-status {
  min-height: 20px;
  margin: -5px 0 0;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 650;
}

.email-link {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 26px 0;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--border));
  border-radius: 15px;
  color: var(--ink);
  background: var(--page);
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease;
}

.email-link:hover,
.email-link:focus-visible {
  border-color: var(--primary);
  transform: translateY(-1px);
  outline: none;
}

.email-link small,
.email-link strong {
  display: block;
}

.email-link small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.email-link strong {
  overflow-wrap: anywhere;
  color: var(--primary-dark);
  font-size: 14px;
}

.mail-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px 4px 12px 4px;
  color: white;
  background: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.privacy-note {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.privacy-note > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.privacy-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px 34px;
  color: var(--muted);
  font-size: 12px;
}

footer nav {
  display: flex;
  gap: 18px;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  color: var(--primary);
}

.support-process {
  display: none;
}

body[data-brand="lfynw"] {
  background: var(--page);
}

body[data-brand="lfynw"] .site-shell {
  width: min(1120px, calc(100% - 40px));
}

body[data-brand="lfynw"] .site-header {
  min-height: 84px;
  border-bottom: 1px solid var(--border);
}

body[data-brand="lfynw"] .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--primary-dark);
  transform: none;
  box-shadow: none;
}

body[data-brand="lfynw"] .brand-mark::before {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: white;
  content: "L";
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  transform: none;
}

body[data-brand="lfynw"] .brand-mark::after {
  right: 6px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 1px;
  background: var(--accent-strong);
  transform: none;
}

body[data-brand="lfynw"] .brand-mark span {
  display: none;
}

body[data-brand="lfynw"] .brand-name {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

body[data-brand="lfynw"] .support-label {
  border-radius: 4px;
  padding: 9px 13px;
  color: var(--primary-dark);
  background: var(--surface);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[data-brand="lfynw"] .language-control select {
  border-radius: 4px;
}

body[data-brand="lfynw"] .support-stage {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  grid-template-rows: auto 1fr;
  column-gap: 24px;
  margin-top: 30px;
}

body[data-brand="lfynw"] .hero {
  grid-column: 1;
  grid-row: 1;
  display: block;
  min-height: 0;
  border: 0;
  border-radius: 8px 8px 0 0;
  color: white;
  background: var(--primary-dark);
  box-shadow: none;
}

body[data-brand="lfynw"] .hero::before {
  z-index: 0;
  top: -22px;
  right: -12px;
  bottom: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.055);
  content: "LF";
  font-size: 154px;
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 1;
  opacity: 1;
}

body[data-brand="lfynw"] .hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--primary);
  content: "";
}

body[data-brand="lfynw"] .hero-copy {
  position: relative;
  z-index: 1;
  padding: 46px 34px 34px;
}

body[data-brand="lfynw"] .hero .eyebrow {
  color: var(--accent-strong);
}

body[data-brand="lfynw"] h1 {
  max-width: 340px;
  margin-bottom: 20px;
  color: white;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(38px, 4vw, 49px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

body[data-brand="lfynw"] .hero-text {
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

body[data-brand="lfynw"] .response-note {
  align-items: flex-start;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

body[data-brand="lfynw"] .status-dot {
  flex: 0 0 auto;
  margin-top: 4px;
  border-color: var(--primary-dark);
  background: #76d8af;
}

body[data-brand="lfynw"] .hero-art {
  display: none;
}

body[data-brand="lfynw"] .support-grid {
  display: contents;
}

body[data-brand="lfynw"] .form-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(27, 47, 91, 0.1);
}

body[data-brand="lfynw"] .direct-card {
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
  padding: 12px 34px 38px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0 0 8px 8px;
  color: white;
  background: var(--primary-dark);
  box-shadow: none;
}

body[data-brand="lfynw"] .section-heading {
  margin-bottom: 32px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

body[data-brand="lfynw"] .section-heading h2,
body[data-brand="lfynw"] .direct-card h2 {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

body[data-brand="lfynw"] .section-heading h2 {
  font-size: clamp(31px, 4vw, 42px);
}

body[data-brand="lfynw"] .direct-card .step-label {
  color: var(--accent-strong);
}

body[data-brand="lfynw"] .direct-card h2 {
  color: white;
  font-size: 27px;
  line-height: 1.12;
}

body[data-brand="lfynw"] .direct-card > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

body[data-brand="lfynw"] .support-process {
  display: grid;
  gap: 15px;
  margin: 25px 0;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

body[data-brand="lfynw"] .support-process li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: baseline;
  gap: 7px;
}

body[data-brand="lfynw"] .support-process span {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body[data-brand="lfynw"] .support-process strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

body[data-brand="lfynw"] form {
  gap: 22px;
}

body[data-brand="lfynw"] input,
body[data-brand="lfynw"] select,
body[data-brand="lfynw"] textarea {
  border-radius: 4px;
  background: #f8faff;
}

body[data-brand="lfynw"] .submit-button {
  justify-content: center;
  gap: 12px;
  width: 100%;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

body[data-brand="lfynw"] .email-link {
  align-items: flex-start;
  margin: 0 0 24px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

body[data-brand="lfynw"] .email-link small,
body[data-brand="lfynw"] .email-link strong {
  color: white;
}

body[data-brand="lfynw"] .mail-icon {
  border-radius: 3px;
  color: var(--primary-dark);
  background: white;
}

body[data-brand="lfynw"] .privacy-note {
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-brand="lfynw"] .privacy-note > span {
  color: white;
  background: rgba(255, 255, 255, 0.13);
}

body[data-brand="lfynw"] .privacy-note p {
  color: rgba(255, 255, 255, 0.68);
}

body[data-brand="lfynw"] .legal-note {
  margin-top: 28px;
  border-width: 0 0 0 4px;
  border-radius: 0;
  background: transparent;
}

body[data-brand="lfynw"] footer {
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

body[data-brand="jxth"] {
  background:
    linear-gradient(135deg, rgba(154, 79, 104, 0.04), transparent 42%),
    var(--page);
}

body[data-brand="jxth"] .site-shell {
  width: min(1160px, calc(100% - 40px));
}

body[data-brand="jxth"] .site-header {
  min-height: 82px;
  border-bottom: 1px solid var(--border);
}

body[data-brand="jxth"] .brand-mark {
  width: 47px;
  height: 34px;
  border-radius: 17px 3px 17px 3px;
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(96, 50, 70, 0.2);
  transform: none;
}

body[data-brand="jxth"] .brand-mark::before {
  position: static;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: white;
  content: "JX";
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  transform: none;
}

body[data-brand="jxth"] .brand-mark::after,
body[data-brand="jxth"] .brand-mark span {
  display: none;
}

body[data-brand="jxth"] .brand-name {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

body[data-brand="jxth"] .support-label,
body[data-brand="jxth"] .language-control select {
  border-radius: 3px;
}

body[data-brand="jxth"] .hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  min-height: 330px;
  margin-top: 28px;
  border: 0;
  border-radius: 5px;
  color: white;
  background: var(--primary-dark);
  box-shadow: var(--shadow);
}

body[data-brand="jxth"] .hero::before {
  right: -95px;
  bottom: -145px;
  width: 430px;
  height: 430px;
  border-color: var(--accent-strong);
  opacity: 0.24;
}

body[data-brand="jxth"] .hero-copy {
  padding: clamp(42px, 6vw, 66px);
}

body[data-brand="jxth"] .eyebrow {
  color: var(--accent-strong);
}

body[data-brand="jxth"] h1 {
  max-width: 650px;
  color: white;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(43px, 6vw, 67px);
  font-weight: 720;
  line-height: 1.02;
}

body[data-brand="jxth"] .hero-text,
body[data-brand="jxth"] .response-note {
  color: rgba(255, 255, 255, 0.74);
}

body[data-brand="jxth"] .status-dot {
  border-color: var(--primary-dark);
  background: #f0b8c8;
}

body[data-brand="jxth"] .art-card {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.93);
  transform: translate(-50%, -50%) rotate(-2deg);
}

body[data-brand="jxth"] .art-icon,
body[data-brand="jxth"] .art-line {
  border-radius: 3px;
}

body[data-brand="jxth"] .support-grid {
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.45fr);
  gap: 22px;
}

body[data-brand="jxth"] .form-card {
  grid-column: 2;
  grid-row: 1;
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(72, 42, 55, 0.08);
}

body[data-brand="jxth"] .direct-card {
  grid-column: 1;
  grid-row: 1;
  border-radius: 5px;
}

body[data-brand="jxth"] .section-heading h2,
body[data-brand="jxth"] .direct-card h2 {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

body[data-brand="jxth"] input,
body[data-brand="jxth"] select,
body[data-brand="jxth"] textarea,
body[data-brand="jxth"] .submit-button,
body[data-brand="jxth"] .email-link {
  border-radius: 4px;
}

body[data-brand="jxth"] .submit-button {
  justify-content: center;
  width: 100%;
}

body[data-brand="jxth"] .legal-note {
  border-radius: 5px;
}

body[data-brand="megaseat"] {
  background:
    linear-gradient(90deg, rgba(23, 109, 115, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 109, 115, 0.045) 1px, transparent 1px),
    var(--page);
  background-size: 34px 34px;
}

body[data-brand="megaseat"] .site-shell {
  width: min(1200px, calc(100% - 40px));
}

body[data-brand="megaseat"] .site-header {
  min-height: 80px;
  border-bottom: 3px solid var(--primary-dark);
}

body[data-brand="megaseat"] .brand-mark {
  width: 46px;
  height: 38px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--primary-dark);
  box-shadow: 7px 7px 0 var(--accent-strong);
  transform: none;
}

body[data-brand="megaseat"] .brand-mark::before {
  position: static;
  width: auto;
  height: auto;
  border: 0;
  color: white;
  content: "M";
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  transform: none;
}

body[data-brand="megaseat"] .brand-mark::after,
body[data-brand="megaseat"] .brand-mark span {
  display: none;
}

body[data-brand="megaseat"] .brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

body[data-brand="megaseat"] .support-label,
body[data-brand="megaseat"] .language-control select {
  border-radius: 7px;
}

body[data-brand="megaseat"] .support-label {
  color: white;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

body[data-brand="megaseat"] .hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 350px;
  margin-top: 26px;
  border: 0;
  border-radius: 18px;
  background: var(--surface);
}

body[data-brand="megaseat"] .hero::before {
  right: 24%;
  bottom: -240px;
  width: 480px;
  height: 480px;
  border: 74px solid var(--accent);
  opacity: 0.65;
}

body[data-brand="megaseat"] .hero-copy {
  padding: clamp(42px, 6vw, 70px);
}

body[data-brand="megaseat"] h1,
body[data-brand="megaseat"] .section-heading h2,
body[data-brand="megaseat"] .direct-card h2 {
  font-family: Arial, Helvetica, sans-serif;
}

body[data-brand="megaseat"] h1 {
  color: var(--primary-dark);
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

body[data-brand="megaseat"] .hero-art {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

body[data-brand="megaseat"] .art-ring {
  border-color: rgba(255, 255, 255, 0.34);
}

body[data-brand="megaseat"] .art-card {
  left: 54%;
  border: 3px solid var(--accent-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  transform: translate(-50%, -50%);
}

body[data-brand="megaseat"] .art-icon {
  border-radius: 7px;
  background: var(--primary-dark);
}

body[data-brand="megaseat"] .support-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.68fr);
  gap: 20px;
}

body[data-brand="megaseat"] .form-card,
body[data-brand="megaseat"] .direct-card {
  border-radius: 10px;
}

body[data-brand="megaseat"] .form-card {
  border-top: 6px solid var(--accent-strong);
}

body[data-brand="megaseat"] .direct-card {
  color: white;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

body[data-brand="megaseat"] .direct-card h2,
body[data-brand="megaseat"] .direct-card > p,
body[data-brand="megaseat"] .direct-card .step-label,
body[data-brand="megaseat"] .direct-card .privacy-note p {
  color: white;
}

body[data-brand="megaseat"] .email-link {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

body[data-brand="megaseat"] .email-link small,
body[data-brand="megaseat"] .email-link strong {
  color: white;
}

body[data-brand="megaseat"] .mail-icon,
body[data-brand="megaseat"] .submit-button {
  border-radius: 7px;
  background: var(--primary);
}

body[data-brand="megaseat"] .privacy-note {
  border-top-color: rgba(255, 255, 255, 0.2);
}

body[data-brand="megaseat"] .privacy-note > span {
  color: var(--primary-dark);
  background: var(--accent-strong);
}

body[data-brand="autoseatprotector"] {
  background:
    repeating-linear-gradient(135deg, rgba(36, 45, 53, 0.035) 0 2px, transparent 2px 22px),
    var(--page);
}

body[data-brand="autoseatprotector"] .site-shell {
  width: min(1160px, calc(100% - 40px));
}

body[data-brand="autoseatprotector"] .site-header {
  min-height: 84px;
  border-top: 6px solid var(--primary);
}

body[data-brand="autoseatprotector"] .brand {
  gap: 15px;
}

body[data-brand="autoseatprotector"] .brand-mark {
  width: 50px;
  height: 42px;
  border-radius: 4px;
  background: var(--primary-dark);
  box-shadow: inset 0 -7px 0 var(--primary);
  transform: none;
}

body[data-brand="autoseatprotector"] .brand-mark::before {
  position: static;
  width: auto;
  height: auto;
  border: 0;
  color: white;
  content: "ASP";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateY(-3px);
}

body[data-brand="autoseatprotector"] .brand-mark::after,
body[data-brand="autoseatprotector"] .brand-mark span {
  display: none;
}

body[data-brand="autoseatprotector"] .brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.3vw, 25px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

body[data-brand="autoseatprotector"] .support-label,
body[data-brand="autoseatprotector"] .language-control select {
  border-radius: 4px;
}

body[data-brand="autoseatprotector"] .hero {
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  min-height: 354px;
  margin-top: 20px;
  border: 0;
  border-left: 9px solid var(--primary);
  border-radius: 0 28px 0 28px;
  color: white;
  background: var(--primary-dark);
}

body[data-brand="autoseatprotector"] .hero::before {
  right: 30%;
  bottom: -155px;
  width: 350px;
  height: 350px;
  border: 58px solid rgba(255, 255, 255, 0.04);
  opacity: 1;
}

body[data-brand="autoseatprotector"] .hero-copy {
  padding: clamp(44px, 6vw, 70px);
}

body[data-brand="autoseatprotector"] h1,
body[data-brand="autoseatprotector"] .section-heading h2,
body[data-brand="autoseatprotector"] .direct-card h2 {
  font-family: Arial, Helvetica, sans-serif;
}

body[data-brand="autoseatprotector"] h1 {
  max-width: 700px;
  color: white;
  font-size: clamp(42px, 5.8vw, 68px);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

body[data-brand="autoseatprotector"] .eyebrow {
  color: var(--accent-strong);
}

body[data-brand="autoseatprotector"] .hero-text,
body[data-brand="autoseatprotector"] .response-note {
  color: rgba(255, 255, 255, 0.76);
}

body[data-brand="autoseatprotector"] .status-dot {
  border-color: var(--primary-dark);
  background: var(--accent-strong);
}

body[data-brand="autoseatprotector"] .hero-art {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 12px, transparent 12px 28px),
    linear-gradient(150deg, #343f48, #1c242b);
}

body[data-brand="autoseatprotector"] .art-ring {
  border-color: rgba(240, 160, 100, 0.48);
}

body[data-brand="autoseatprotector"] .art-card {
  left: 50%;
  border: 0;
  border-top: 7px solid var(--primary);
  border-radius: 4px;
  background: #f9faf9;
  transform: translate(-50%, -50%) rotate(1.5deg);
}

body[data-brand="autoseatprotector"] .art-icon,
body[data-brand="autoseatprotector"] .art-line,
body[data-brand="autoseatprotector"] input,
body[data-brand="autoseatprotector"] select,
body[data-brand="autoseatprotector"] textarea,
body[data-brand="autoseatprotector"] .submit-button,
body[data-brand="autoseatprotector"] .email-link {
  border-radius: 4px;
}

body[data-brand="autoseatprotector"] .support-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
  gap: 22px;
}

body[data-brand="autoseatprotector"] .form-card,
body[data-brand="autoseatprotector"] .direct-card {
  border-radius: 0 18px 0 18px;
}

body[data-brand="autoseatprotector"] .form-card {
  border-top: 6px solid var(--primary-dark);
}

body[data-brand="autoseatprotector"] .direct-card {
  border-left: 6px solid var(--primary);
  box-shadow: none;
}

body[data-brand="autoseatprotector"] .submit-button {
  justify-content: center;
  width: 100%;
  background: var(--primary);
}

body[data-brand="autoseatprotector"] .submit-button:hover,
body[data-brand="autoseatprotector"] .submit-button:focus-visible {
  background: var(--primary-dark);
}

body[data-brand="ilmo"] {
  background:
    radial-gradient(circle at 12% 8%, rgba(183, 223, 102, 0.2), transparent 25%),
    radial-gradient(circle at 88% 24%, rgba(91, 91, 214, 0.14), transparent 28%),
    var(--page);
}

body[data-brand="ilmo"] .site-shell {
  width: min(1140px, calc(100% - 40px));
}

body[data-brand="ilmo"] .site-header {
  min-height: 78px;
}

body[data-brand="ilmo"] .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px var(--accent);
  transform: none;
}

body[data-brand="ilmo"] .brand-mark::before {
  position: static;
  width: auto;
  height: auto;
  border: 0;
  color: white;
  content: "IL";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: none;
}

body[data-brand="ilmo"] .brand-mark::after,
body[data-brand="ilmo"] .brand-mark span {
  display: none;
}

body[data-brand="ilmo"] .brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

body[data-brand="ilmo"] .support-label,
body[data-brand="ilmo"] .language-control select {
  border-radius: 999px;
}

body[data-brand="ilmo"] .support-label {
  color: var(--primary-dark);
  background: var(--accent-strong);
  border-color: transparent;
}

body[data-brand="ilmo"] .hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  min-height: 348px;
  margin-top: 24px;
  border: 0;
  border-radius: 42px;
  color: white;
  background: linear-gradient(130deg, var(--primary-dark), var(--primary));
}

body[data-brand="ilmo"] .hero::before {
  right: -80px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border: 62px solid rgba(183, 223, 102, 0.12);
  opacity: 1;
}

body[data-brand="ilmo"] .hero-copy {
  padding: clamp(44px, 6vw, 70px);
}

body[data-brand="ilmo"] h1,
body[data-brand="ilmo"] .section-heading h2,
body[data-brand="ilmo"] .direct-card h2 {
  font-family: Arial, Helvetica, sans-serif;
}

body[data-brand="ilmo"] h1 {
  color: white;
  font-size: clamp(45px, 6vw, 71px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

body[data-brand="ilmo"] .eyebrow {
  color: var(--accent-strong);
}

body[data-brand="ilmo"] .hero-text,
body[data-brand="ilmo"] .response-note {
  color: rgba(255, 255, 255, 0.78);
}

body[data-brand="ilmo"] .status-dot {
  border-color: var(--primary);
  background: var(--accent-strong);
}

body[data-brand="ilmo"] .art-ring {
  border-color: rgba(255, 255, 255, 0.28);
}

body[data-brand="ilmo"] .art-card {
  left: 48%;
  border: 0;
  border-radius: 30px;
  background: var(--accent-strong);
  box-shadow: 0 30px 50px rgba(20, 21, 62, 0.28);
  transform: translate(-50%, -50%) rotate(-3deg);
}

body[data-brand="ilmo"] .art-icon {
  color: white;
  background: var(--primary-dark);
}

body[data-brand="ilmo"] .art-line {
  background: rgba(41, 43, 97, 0.18);
}

body[data-brand="ilmo"] .support-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.68fr);
  gap: 26px;
}

body[data-brand="ilmo"] .form-card,
body[data-brand="ilmo"] .direct-card {
  border: 0;
  border-radius: 28px;
}

body[data-brand="ilmo"] .form-card {
  box-shadow: 0 20px 55px rgba(42, 43, 97, 0.09);
}

body[data-brand="ilmo"] .direct-card {
  border: 2px solid var(--accent);
  box-shadow: none;
}

body[data-brand="ilmo"] input,
body[data-brand="ilmo"] select,
body[data-brand="ilmo"] textarea,
body[data-brand="ilmo"] .submit-button,
body[data-brand="ilmo"] .email-link {
  border-radius: 16px;
}

body[data-brand="ilmo"] .submit-button {
  justify-content: center;
  width: 100%;
}

body[data-brand="ilmo"] .mail-icon {
  border-radius: 50%;
}

/* YWZQ — crisp blue, technical layout */
body[data-brand="ywzq"] {
  background:
    linear-gradient(90deg, var(--pattern) 1px, transparent 1px),
    linear-gradient(var(--pattern) 1px, transparent 1px),
    var(--page);
  background-size: 42px 42px;
}

body[data-brand="ywzq"] .site-header { border-bottom: 2px solid var(--primary); }
body[data-brand="ywzq"] .brand-mark {
  border-radius: 4px;
  background: var(--primary);
  box-shadow: 7px 7px 0 var(--accent-strong);
  transform: none;
}
body[data-brand="ywzq"] .brand-mark::before {
  width: auto;
  height: auto;
  border: 0;
  color: white;
  content: "Y";
  font-size: 22px;
  font-weight: 900;
  transform: none;
}
body[data-brand="ywzq"] .brand-mark::after,
body[data-brand="ywzq"] .brand-mark span { display: none; }
body[data-brand="ywzq"] .brand-name { letter-spacing: 0.16em; }
body[data-brand="ywzq"] .hero {
  border: 0;
  border-radius: 4px;
  color: white;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
}
body[data-brand="ywzq"] .hero h1 { color: white; font-family: Inter, ui-sans-serif, sans-serif; }
body[data-brand="ywzq"] .hero-text,
body[data-brand="ywzq"] .response-note { color: rgba(255, 255, 255, 0.76); }
body[data-brand="ywzq"] .hero .eyebrow { color: var(--accent-strong); }
body[data-brand="ywzq"] .form-card,
body[data-brand="ywzq"] .direct-card,
body[data-brand="ywzq"] input,
body[data-brand="ywzq"] select,
body[data-brand="ywzq"] textarea,
body[data-brand="ywzq"] .submit-button { border-radius: 4px; }
body[data-brand="ywzq"] .submit-button { width: 100%; }

/* AROCX — calm editorial, natural palette */
body[data-brand="arocx"] { background: var(--page); }
body[data-brand="arocx"] .site-shell { width: min(1080px, calc(100% - 40px)); }
body[data-brand="arocx"] .site-header { border-bottom: 1px solid var(--accent-strong); }
body[data-brand="arocx"] .brand-mark {
  border: 3px solid var(--primary-dark);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: none;
}
body[data-brand="arocx"] .brand-mark::before {
  inset: 7px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 50%;
  background: var(--accent-strong);
  transform: none;
}
body[data-brand="arocx"] .brand-mark::after,
body[data-brand="arocx"] .brand-mark span { display: none; }
body[data-brand="arocx"] .brand-name,
body[data-brand="arocx"] h1,
body[data-brand="arocx"] .section-heading h2,
body[data-brand="arocx"] .direct-card h2 { font-family: Georgia, "Times New Roman", serif; }
body[data-brand="arocx"] .hero {
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.55fr);
  border-color: var(--accent-strong);
  border-radius: 34px 4px 34px 4px;
  background: #fffdf7;
  box-shadow: none;
}
body[data-brand="arocx"] .hero-art { background: var(--primary-dark); }
body[data-brand="arocx"] .support-grid { grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr); }
body[data-brand="arocx"] .form-card,
body[data-brand="arocx"] .direct-card { border-radius: 4px 28px 4px 28px; box-shadow: none; }
body[data-brand="arocx"] .direct-card { background: var(--accent); }

/* NewYYY — warm, friendly and rounded */
body[data-brand="newyyy"] {
  background: radial-gradient(circle at 10% 12%, var(--accent) 0 9%, transparent 9.2%), var(--page);
}
body[data-brand="newyyy"] .brand-mark {
  border-radius: 50% 50% 12px 50%;
  background: var(--primary);
  box-shadow: 6px 5px 0 var(--accent-strong);
  transform: rotate(-8deg);
}
body[data-brand="newyyy"] .brand-mark::before {
  width: auto;
  height: auto;
  border: 0;
  color: white;
  content: "N";
  font-size: 21px;
  font-weight: 900;
  transform: rotate(8deg);
}
body[data-brand="newyyy"] .brand-mark::after,
body[data-brand="newyyy"] .brand-mark span { display: none; }
body[data-brand="newyyy"] .hero {
  border: 0;
  border-radius: 48px;
  background: linear-gradient(135deg, #fff6dc, white 62%);
}
body[data-brand="newyyy"] h1 { color: var(--primary-dark); font-family: Inter, ui-sans-serif, sans-serif; }
body[data-brand="newyyy"] .art-card { border-radius: 50% 50% 18px 50%; transform: translate(-50%, -50%) rotate(6deg); }
body[data-brand="newyyy"] .form-card,
body[data-brand="newyyy"] .direct-card { border-radius: 30px; }
body[data-brand="newyyy"] input,
body[data-brand="newyyy"] select,
body[data-brand="newyyy"] textarea,
body[data-brand="newyyy"] .submit-button,
body[data-brand="newyyy"] .email-link { border-radius: 18px; }

/* KSJH — dark plum, compact premium layout */
body[data-brand="ksjh"] { background: linear-gradient(160deg, #fdf9ff, var(--page)); }
body[data-brand="ksjh"] .brand-mark {
  border-radius: 3px;
  background: var(--primary-dark);
  box-shadow: none;
  transform: rotate(45deg) scale(0.78);
}
body[data-brand="ksjh"] .brand-mark::before {
  width: 13px;
  height: 13px;
  border: 3px solid var(--accent-strong);
  border-radius: 0;
  transform: none;
}
body[data-brand="ksjh"] .brand-mark::after,
body[data-brand="ksjh"] .brand-mark span { display: none; }
body[data-brand="ksjh"] .brand-name { letter-spacing: 0.2em; }
body[data-brand="ksjh"] .hero {
  min-height: 300px;
  border: 0;
  border-radius: 6px;
  color: white;
  background: var(--primary-dark);
}
body[data-brand="ksjh"] .hero h1 { color: white; font-family: Inter, ui-sans-serif, sans-serif; }
body[data-brand="ksjh"] .hero .eyebrow { color: var(--accent-strong); }
body[data-brand="ksjh"] .hero-text,
body[data-brand="ksjh"] .response-note { color: rgba(255, 255, 255, 0.72); }
body[data-brand="ksjh"] .support-grid { grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr); }
body[data-brand="ksjh"] .form-card { grid-column: 2; grid-row: 1; border-radius: 6px; }
body[data-brand="ksjh"] .direct-card { grid-column: 1; grid-row: 1; border-radius: 6px; background: var(--accent); }
body[data-brand="ksjh"] input,
body[data-brand="ksjh"] select,
body[data-brand="ksjh"] textarea,
body[data-brand="ksjh"] .submit-button { border-radius: 3px; }

/* Soliget — open ocean tones and soft curves */
body[data-brand="soliget"] {
  background: linear-gradient(180deg, #e7faf7 0 260px, var(--page) 260px);
}
body[data-brand="soliget"] .brand-mark {
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--primary-dark);
  box-shadow: none;
  transform: none;
}
body[data-brand="soliget"] .brand-mark::before {
  right: -7px;
  bottom: 7px;
  left: -7px;
  width: auto;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--accent-strong);
  transform: rotate(-8deg);
}
body[data-brand="soliget"] .brand-mark::after,
body[data-brand="soliget"] .brand-mark span { display: none; }
body[data-brand="soliget"] .hero {
  border: 0;
  border-radius: 40px 40px 12px 40px;
  background: linear-gradient(135deg, white, var(--accent));
}
body[data-brand="soliget"] h1 { font-family: Inter, ui-sans-serif, sans-serif; }
body[data-brand="soliget"] .art-ring { border-color: var(--accent-strong); }
body[data-brand="soliget"] .form-card,
body[data-brand="soliget"] .direct-card { border: 0; border-radius: 26px; }
body[data-brand="soliget"] .direct-card { background: var(--primary-dark); color: white; }
body[data-brand="soliget"] .direct-card h2 { color: white; }
body[data-brand="soliget"] .direct-card > p,
body[data-brand="soliget"] .direct-card .privacy-note p { color: rgba(255, 255, 255, 0.7); }
body[data-brand="soliget"] .direct-card .privacy-note { border-color: rgba(255, 255, 255, 0.18); }

/* Hukl — angular black and red industrial treatment */
body[data-brand="hukl"] {
  background: linear-gradient(135deg, rgba(199, 55, 56, 0.06) 0 12%, transparent 12% 88%, rgba(199, 55, 56, 0.06) 88%), var(--page);
}
body[data-brand="hukl"] .site-header { border-bottom: 4px solid var(--primary-dark); }
body[data-brand="hukl"] .brand-mark {
  border-radius: 0;
  background: var(--primary-dark);
  box-shadow: 6px 6px 0 var(--primary);
  transform: skew(-10deg);
}
body[data-brand="hukl"] .brand-mark::before {
  width: auto;
  height: auto;
  border: 0;
  color: white;
  content: "H";
  font-size: 22px;
  font-weight: 900;
  transform: skew(10deg);
}
body[data-brand="hukl"] .brand-mark::after,
body[data-brand="hukl"] .brand-mark span { display: none; }
body[data-brand="hukl"] .brand-name { font-family: Inter, ui-sans-serif, sans-serif; font-weight: 900; text-transform: uppercase; }
body[data-brand="hukl"] .hero {
  border: 0;
  border-radius: 0;
  color: white;
  background: linear-gradient(105deg, var(--primary-dark) 0 65%, var(--primary) 65%);
}
body[data-brand="hukl"] .hero h1 { color: white; font-family: Inter, ui-sans-serif, sans-serif; font-weight: 850; text-transform: uppercase; }
body[data-brand="hukl"] .hero .eyebrow { color: var(--accent-strong); }
body[data-brand="hukl"] .hero-text,
body[data-brand="hukl"] .response-note { color: rgba(255, 255, 255, 0.72); }
body[data-brand="hukl"] .form-card,
body[data-brand="hukl"] .direct-card,
body[data-brand="hukl"] input,
body[data-brand="hukl"] select,
body[data-brand="hukl"] textarea,
body[data-brand="hukl"] .submit-button,
body[data-brand="hukl"] .email-link { border-radius: 0; }
body[data-brand="hukl"] .direct-card { border-left: 6px solid var(--primary); }
body[data-brand="hukl"] .submit-button { width: 100%; text-transform: uppercase; }

/* HYZB — deep navy with restrained gold accents */
body[data-brand="hyzb"] {
  background: linear-gradient(180deg, var(--primary-dark) 0 230px, var(--page) 230px);
}
body[data-brand="hyzb"] .site-header {
  min-height: 88px;
  color: white;
}
body[data-brand="hyzb"] .brand-name { color: white; letter-spacing: 0.17em; }
body[data-brand="hyzb"] .support-label { color: var(--primary-dark); background: var(--accent-strong); }
body[data-brand="hyzb"] .language-control { color: rgba(255, 255, 255, 0.78); }
body[data-brand="hyzb"] .language-control select { color: white; border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.1); }
body[data-brand="hyzb"] .language-control option { color: var(--ink); background: white; }
body[data-brand="hyzb"] .brand-mark {
  width: 48px;
  height: 36px;
  border: 1px solid var(--accent-strong);
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  transform: none;
}
body[data-brand="hyzb"] .brand-mark::before {
  width: auto;
  height: auto;
  border: 0;
  color: var(--accent-strong);
  content: "HY";
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: none;
}
body[data-brand="hyzb"] .brand-mark::after,
body[data-brand="hyzb"] .brand-mark span { display: none; }
body[data-brand="hyzb"] .hero {
  margin-top: 22px;
  border: 1px solid rgba(209, 173, 86, 0.65);
  border-radius: 2px;
  color: white;
  background: linear-gradient(120deg, #122d4d, var(--primary));
  box-shadow: var(--shadow);
}
body[data-brand="hyzb"] .hero h1 { color: white; font-family: Inter, ui-sans-serif, sans-serif; }
body[data-brand="hyzb"] .hero .eyebrow { color: var(--accent-strong); }
body[data-brand="hyzb"] .hero-text,
body[data-brand="hyzb"] .response-note { color: rgba(255, 255, 255, 0.74); }
body[data-brand="hyzb"] .support-grid { grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.4fr); }
body[data-brand="hyzb"] .form-card { grid-column: 2; grid-row: 1; border-radius: 2px; }
body[data-brand="hyzb"] .direct-card { grid-column: 1; grid-row: 1; border-radius: 2px; border-top: 5px solid var(--accent-strong); }
body[data-brand="hyzb"] input,
body[data-brand="hyzb"] select,
body[data-brand="hyzb"] textarea,
body[data-brand="hyzb"] .submit-button,
body[data-brand="hyzb"] .email-link { border-radius: 2px; }
body[data-brand="hyzb"] .submit-button { width: 100%; background: var(--primary-dark); }

/* Iceleather — bright ice-blue surfaces and soft spacing */
body[data-brand="iceleather"] {
  background:
    radial-gradient(circle at 82% 8%, rgba(157, 223, 235, 0.34), transparent 25%),
    linear-gradient(145deg, #ffffff, var(--page));
}
body[data-brand="iceleather"] .site-shell { width: min(1140px, calc(100% - 40px)); }
body[data-brand="iceleather"] .site-header { border-bottom: 1px solid rgba(37, 138, 168, 0.2); }
body[data-brand="iceleather"] .brand-mark {
  border: 0;
  border-radius: 12px 12px 3px 12px;
  background: linear-gradient(145deg, white, var(--accent-strong));
  box-shadow: 0 8px 24px rgba(37, 138, 168, 0.2);
  transform: rotate(45deg) scale(0.82);
}
body[data-brand="iceleather"] .brand-mark::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary-dark);
  border-radius: 3px;
  transform: none;
}
body[data-brand="iceleather"] .brand-mark::after,
body[data-brand="iceleather"] .brand-mark span { display: none; }
body[data-brand="iceleather"] .brand-name { font-family: Inter, ui-sans-serif, sans-serif; letter-spacing: 0.04em; }
body[data-brand="iceleather"] .hero {
  border-color: rgba(37, 138, 168, 0.2);
  border-radius: 42px 12px 42px 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}
body[data-brand="iceleather"] h1 { color: var(--primary-dark); font-family: Inter, ui-sans-serif, sans-serif; }
body[data-brand="iceleather"] .hero-art { background: linear-gradient(145deg, var(--accent), #d4f2f7); }
body[data-brand="iceleather"] .support-grid { grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.65fr); }
body[data-brand="iceleather"] .form-card,
body[data-brand="iceleather"] .direct-card { border: 1px solid rgba(37, 138, 168, 0.16); border-radius: 26px 8px 26px 8px; }
body[data-brand="iceleather"] input,
body[data-brand="iceleather"] select,
body[data-brand="iceleather"] textarea,
body[data-brand="iceleather"] .submit-button,
body[data-brand="iceleather"] .email-link { border-radius: 14px 5px 14px 5px; }
body[data-brand="iceleather"] .submit-button { width: 100%; }

@media (max-width: 820px) {
  .preview-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-switcher {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  .hero-art {
    min-height: 210px;
    margin-top: -26px;
  }

  .art-card {
    left: 50%;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  body[data-brand="lfynw"] .support-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: 0;
    margin-top: 20px;
  }

  body[data-brand="lfynw"] .hero {
    grid-column: 1;
    grid-row: 1;
    border-radius: 8px 8px 0 0;
  }

  body[data-brand="lfynw"] .hero-copy {
    padding: 42px 36px 34px;
  }

  body[data-brand="lfynw"] h1 {
    max-width: 560px;
  }

  body[data-brand="lfynw"] .form-card {
    grid-column: 1;
    grid-row: 2;
    border-radius: 0;
  }

  body[data-brand="lfynw"] .direct-card {
    grid-column: 1;
    grid-row: 3;
    padding-top: 34px;
    border-top-color: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 8px 8px;
  }

  body[data-brand="jxth"] .hero {
    grid-template-columns: 1fr;
  }

  body[data-brand="jxth"] .support-grid {
    grid-template-columns: 1fr;
  }

  body[data-brand="jxth"] .form-card,
  body[data-brand="jxth"] .direct-card {
    grid-column: 1;
  }

  body[data-brand="jxth"] .form-card {
    grid-row: 1;
  }

  body[data-brand="jxth"] .direct-card {
    grid-row: 2;
  }

  body[data-brand="megaseat"] .hero,
  body[data-brand="megaseat"] .support-grid {
    grid-template-columns: 1fr;
  }

  body[data-brand="megaseat"] .hero-art {
    min-height: 220px;
    clip-path: none;
  }

  body[data-brand="autoseatprotector"] .hero,
  body[data-brand="autoseatprotector"] .support-grid {
    grid-template-columns: 1fr;
  }

  body[data-brand="ilmo"] .hero,
  body[data-brand="ilmo"] .support-grid {
    grid-template-columns: 1fr;
  }

  body[data-brand="arocx"] .hero,
  body[data-brand="arocx"] .support-grid,
  body[data-brand="ksjh"] .support-grid {
    grid-template-columns: 1fr;
  }

  body[data-brand="ksjh"] .form-card,
  body[data-brand="ksjh"] .direct-card {
    grid-column: 1;
  }

  body[data-brand="ksjh"] .form-card { grid-row: 1; }
  body[data-brand="ksjh"] .direct-card { grid-row: 2; }

  body[data-brand="hyzb"] .support-grid,
  body[data-brand="iceleather"] .support-grid {
    grid-template-columns: 1fr;
  }

  body[data-brand="hyzb"] .form-card,
  body[data-brand="hyzb"] .direct-card {
    grid-column: 1;
  }

  body[data-brand="hyzb"] .form-card { grid-row: 1; }
  body[data-brand="hyzb"] .direct-card { grid-row: 2; }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .support-label {
    display: none;
  }

  .header-tools {
    margin-left: auto;
  }

  .language-control > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .language-control select {
    min-width: 94px;
  }

  .hero {
    min-height: auto;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 38px 25px 24px;
  }

  h1 {
    font-size: 49px;
  }

  .hero-text {
    font-size: 16px;
  }

  .response-note {
    align-items: flex-start;
  }

  .status-dot {
    margin-top: 4px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .photo-previews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-card,
  .direct-card {
    padding: 25px;
    border-radius: 18px;
  }

  .submit-button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-brand="lfynw"] .site-header {
    min-height: 78px;
  }

  body[data-brand="lfynw"] .site-shell {
    width: min(100% - 24px, 1120px);
  }

  body[data-brand="lfynw"] .support-stage {
    margin-top: 12px;
  }

  body[data-brand="lfynw"] .hero {
    border-radius: 6px 6px 0 0;
  }

  body[data-brand="lfynw"] .hero-copy {
    padding: 37px 25px 30px;
  }

  body[data-brand="lfynw"] h1 {
    font-size: 39px;
  }

  body[data-brand="lfynw"] .form-card {
    padding: 31px 25px 34px;
    border-radius: 0;
  }

  body[data-brand="lfynw"] .direct-card {
    padding: 30px 25px;
    border-radius: 0 0 6px 6px;
  }

  body[data-brand="jxth"] .site-shell {
    width: min(100% - 24px, 1160px);
  }

  body[data-brand="jxth"] h1 {
    font-size: 41px;
  }

  body[data-brand="megaseat"] .site-shell {
    width: min(100% - 24px, 1200px);
  }

  body[data-brand="megaseat"] h1 {
    font-size: 41px;
  }

  body[data-brand="autoseatprotector"] .site-shell {
    width: min(100% - 24px, 1160px);
  }

  body[data-brand="autoseatprotector"] .brand {
    gap: 9px;
  }

  body[data-brand="autoseatprotector"] .brand-name {
    max-width: 150px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  body[data-brand="autoseatprotector"] h1 {
    font-size: 39px;
  }

  body[data-brand="ilmo"] .site-shell {
    width: min(100% - 24px, 1140px);
  }

  body[data-brand="ilmo"] .hero {
    border-radius: 26px;
  }

  body[data-brand="ilmo"] h1 {
    font-size: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
