/* ═══════════════════════════════════════════════════════════════
   forsale.css — Domainfolio for-sale landing page
   Themes: minimal (default) | dark | gradient
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS tokens ────────────────────────────────────────────────── */
:root {
  --ease:     180ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: 220ms cubic-bezier(0, 0, 0.2, 1);
  --radius:   10px;
  --radius-lg: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   THEME 1 — MINIMAL
   Clean white · blue accent #2563EB · thin elegant domain name
   ═══════════════════════════════════════════════════════════════ */
body.theme-minimal {
  background: #ffffff;
  color: #0f172a;
}

body.theme-minimal .site-header {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

body.theme-minimal .hero {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

body.theme-minimal .for-sale-badge {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

body.theme-minimal .domain-name {
  color: #0f172a;
  font-weight: 300;
  letter-spacing: -0.04em;
}

body.theme-minimal .hero-tagline    { color: #475569; }
body.theme-minimal .hero-description { color: #94a3b8; }

body.theme-minimal .inquiry-section { background: #f8fafc; }

body.theme-minimal .inquiry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 3px rgba(0,0,0,.06),
    0 4px 8px rgba(0,0,0,.04),
    0 20px 40px rgba(0,0,0,.04);
}

body.theme-minimal .inquiry-subtitle { color: #64748b; }
body.theme-minimal .field-label      { color: #374151; }

body.theme-minimal .field-input {
  background: #ffffff;
  border-color: #d1d5db;
  color: #0f172a;
}
body.theme-minimal .field-input::placeholder { color: #9ca3af; }
body.theme-minimal .field-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

body.theme-minimal .form-bottom { border-color: #f1f5f9; }

body.theme-minimal .submit-btn {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37,99,235,.3), 0 4px 16px rgba(37,99,235,.2);
}
body.theme-minimal .submit-btn:hover:not(:disabled) {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37,99,235,.4), 0 8px 24px rgba(37,99,235,.25);
}

body.theme-minimal .trust-item { color: #94a3b8; }

body.theme-minimal .form-alert--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
body.theme-minimal .form-alert--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

body.theme-minimal .footer       { color: #cbd5e1; }
body.theme-minimal .footer-brand { color: #94a3b8; }


/* ═══════════════════════════════════════════════════════════════
   THEME 2 — DARK
   Deep #0F172A · glowing domain name · purple/blue gradient button
   ═══════════════════════════════════════════════════════════════ */
body.theme-dark {
  background: #0f172a;
  color: #e2e8f0;
}

body.theme-dark .site-header {
  background: rgba(15,23,42,.85);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.theme-dark .hero {
  background: #0f172a;
}

body.theme-dark .for-sale-badge {
  background: rgba(99,102,241,.15);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,.3);
}

body.theme-dark .domain-name {
  color: #f8fafc;
  font-weight: 700;
  text-shadow:
    0 0 30px rgba(139,92,246,.55),
    0 0 80px rgba(99,102,241,.3),
    0 2px 0 rgba(0,0,0,.6);
}

body.theme-dark .hero-tagline    { color: #94a3b8; }
body.theme-dark .hero-description { color: #64748b; }

body.theme-dark .inquiry-section { background: #0f172a; }

body.theme-dark .inquiry-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 25px 60px rgba(0,0,0,.55), 0 4px 16px rgba(0,0,0,.3);
}

body.theme-dark .inquiry-subtitle { color: #64748b; }
body.theme-dark .field-label      { color: #94a3b8; }

body.theme-dark .field-input {
  background: #0f172a;
  border-color: #334155;
  color: #f1f5f9;
}
body.theme-dark .field-input::placeholder { color: #475569; }
body.theme-dark .field-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,.2);
}

body.theme-dark .form-bottom { border-color: rgba(255,255,255,.06); }

body.theme-dark .submit-btn {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(99,102,241,.4), 0 4px 20px rgba(99,102,241,.25);
}
body.theme-dark .submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
  box-shadow: 0 4px 16px rgba(99,102,241,.55), 0 8px 30px rgba(99,102,241,.3);
}

body.theme-dark .trust-item { color: #475569; }

body.theme-dark .form-alert--success {
  background: rgba(22,101,52,.18);
  border: 1px solid rgba(134,239,172,.2);
  color: #86efac;
}
body.theme-dark .form-alert--error {
  background: rgba(153,27,27,.18);
  border: 1px solid rgba(252,165,165,.2);
  color: #fca5a5;
}

body.theme-dark .footer       { color: #1e293b; }
body.theme-dark .footer-brand { color: #334155; }

/* parked page in dark */
body.theme-dark .parked-headline { color: #94a3b8; }
body.theme-dark .parked-tagline  { color: #64748b; }
body.theme-dark .parked-cta      { color: #64748b; }
body.theme-dark .parked-link     { color: #6366f1; }


/* ═══════════════════════════════════════════════════════════════
   THEME 3 — GRADIENT
   Deep blue→purple bg · glass card · gold #F59E0B accent
   ═══════════════════════════════════════════════════════════════ */
body.theme-gradient {
  background: linear-gradient(155deg, #1a1a2e 0%, #16213e 48%, #0f3460 100%);
  background-attachment: fixed;
  color: #e2e8f0;
  min-height: 100vh;
}

body.theme-gradient .site-header {
  background: transparent;
  border-bottom: none;
}

body.theme-gradient .hero {
  background: transparent;
}

body.theme-gradient .for-sale-badge {
  background: rgba(245,158,11,.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,.35);
}

body.theme-gradient .domain-name {
  color: #ffffff;
  font-weight: 700;
  text-shadow:
    0 2px 20px rgba(0,0,0,.4),
    0 4px 60px rgba(245,158,11,.12);
}

body.theme-gradient .hero-tagline    { color: #94a3b8; }
body.theme-gradient .hero-description { color: #64748b; }

body.theme-gradient .inquiry-section {
  background: transparent;
}

body.theme-gradient .inquiry-card {
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    0 25px 60px rgba(0,0,0,.35),
    0 4px 16px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.1);
}

body.theme-gradient .inquiry-subtitle { color: rgba(255,255,255,.45); }
body.theme-gradient .field-label      { color: rgba(255,255,255,.6); }

body.theme-gradient .field-input {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.13);
  color: #f8fafc;
}
body.theme-gradient .field-input::placeholder { color: rgba(255,255,255,.25); }
body.theme-gradient .field-input:focus {
  border-color: rgba(245,158,11,.65);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
  background: rgba(255,255,255,.1);
}

body.theme-gradient .form-bottom { border-color: rgba(255,255,255,.09); }

body.theme-gradient .submit-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a1100;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(245,158,11,.45), 0 4px 20px rgba(245,158,11,.25);
}
body.theme-gradient .submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 4px 16px rgba(245,158,11,.6), 0 8px 28px rgba(245,158,11,.3);
}

body.theme-gradient .trust-item { color: rgba(255,255,255,.32); }

body.theme-gradient .form-alert--success {
  background: rgba(22,101,52,.2);
  border: 1px solid rgba(134,239,172,.2);
  color: #86efac;
}
body.theme-gradient .form-alert--error {
  background: rgba(153,27,27,.2);
  border: 1px solid rgba(252,165,165,.2);
  color: #fca5a5;
}

body.theme-gradient .footer       { color: rgba(255,255,255,.18); }
body.theme-gradient .footer-brand { color: rgba(255,255,255,.28); }

/* parked page in gradient */
body.theme-gradient .parked-headline { color: #94a3b8; }
body.theme-gradient .parked-tagline  { color: #64748b; }
body.theme-gradient .parked-cta      { color: #64748b; }
body.theme-gradient .parked-link     { color: #818cf8; }


/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background var(--ease), border-color var(--ease);
}

.header-inner {
  max-width: 860px;
  margin: 0 auto;
}

.site-logo {
  height: 36px;
  width: auto;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
}

.for-sale-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.domain-name {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  margin-bottom: 20px;
  word-break: break-word;
  transition: text-shadow var(--ease-out);
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 10px;
}

.hero-description {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Inquiry section ───────────────────────────────────────────── */
.inquiry-section {
  padding: 60px 0 100px;
}

.inquiry-card {
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  max-width: 680px;
  margin: 0 auto;
}

.inquiry-intro {
  margin-bottom: 32px;
}

.inquiry-subtitle {
  font-size: 15px;
  line-height: 1.65;
}

/* ── Form ──────────────────────────────────────────────────────── */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field-full {
  margin-bottom: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-label {
  font-size: 13px;
  font-weight: 500;
}

.req-star  { color: #ef4444; margin-left: 1px; }
.opt-label { font-weight: 400; font-size: 11.5px; opacity: 0.5; margin-left: 4px; }

.field-input {
  padding: 11px 14px;
  border: 1.5px solid;
  border-radius: var(--radius);
  font-size: 15px;
  outline: none;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.field-textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.6;
}

/* Honeypot — completely removed from layout */
.hp-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Form bottom row ───────────────────────────────────────────── */
.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid;
}

/* ── Trust badges ──────────────────────────────────────────────── */
.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.trust-item svg { flex-shrink: 0; }

/* ── Submit button ─────────────────────────────────────────────── */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 38px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  min-width: 160px;
  transition:
    background var(--ease),
    box-shadow var(--ease),
    transform var(--ease-out),
    opacity var(--ease);
}

.submit-btn:hover:not(:disabled) { transform: translateY(-2px); }
.submit-btn:active:not(:disabled) { transform: translateY(0); transition-duration: 80ms; }
.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.btn-spinner { animation: spin 0.7s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Form alert ────────────────────────────────────────────────── */
.form-alert {
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.55;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  margin-top: auto;
  padding: 36px 24px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand { font-weight: 600; }

/* ── Parked page ───────────────────────────────────────────────── */
.parked-wrapper .parked-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.parked-logo     { margin: 0 auto 32px; }
.parked-headline { font-size: 1.4rem; font-weight: 500; opacity: 0.65; margin-top: 16px; }
.parked-tagline  { font-size: 1rem; opacity: 0.5; margin-top: 8px; }
.parked-cta      { margin-top: 28px; font-size: 15px; opacity: 0.7; }
.parked-link     { font-weight: 600; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .inquiry-card { padding: 40px 36px; }
}

@media (max-width: 640px) {
  .hero { padding: 64px 0 52px; }

  .inquiry-section { padding: 40px 0 72px; }
  .inquiry-card    { padding: 28px 22px; border-radius: 14px; }

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

  .form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .submit-btn { width: 100%; padding: 15px; }
}

@media (max-width: 380px) {
  .inquiry-card { padding: 24px 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   THEME 4 — MODERN
   Left: blue→purple gradient · Right: clean white · full viewport
   ═══════════════════════════════════════════════════════════════ */

/* Hide header/footer — the two panels ARE the page */
body.theme-modern .site-header { display: none; }
body.theme-modern .footer      { display: none; }

/* ── Two-panel full-height layout ──────────────────────────────── */
.modern-main {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* ── Left panel: gradient + domain name only ───────────────────── */
.modern-left {
  flex: 1;
  background: linear-gradient(145deg, #0F4C5C 0%, #1a1a2e 55%, #162447 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.modern-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Soft blob overlay for depth */
.modern-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(15,76,92,.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(22,36,71,.6) 0%, transparent 60%);
  pointer-events: none;
}

.modern-domain {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  word-break: break-word;
  text-align: center;
  text-shadow: 0 2px 32px rgba(0,0,0,.25);
}

/* ── Right panel: vertically centered form ──────────────────────── */
.modern-right {
  flex: 1;
  background: #F8F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow-y: auto;
}

.modern-form-wrap {
  width: 100%;
  max-width: 400px;
}

.modern-field { margin-bottom: 16px; }

body.theme-modern .field-label { color: #374151; font-size: 13px; font-weight: 500; }

body.theme-modern .field-input {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  color: #111827;
  border-radius: 8px;
}
body.theme-modern .field-input::placeholder { color: #9ca3af; }
body.theme-modern .field-input:focus {
  border-color: #0F4C5C;
  box-shadow: 0 0 0 3px rgba(15,76,92,.15);
  background: #ffffff;
}

.modern-submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 24px;
  font-size: 15.5px;
  border-radius: 9px;
  letter-spacing: 0.01em;
}

body.theme-modern .submit-btn {
  background: #0F4C5C;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(15,76,92,.3), 0 4px 16px rgba(15,76,92,.18);
}
body.theme-modern .submit-btn:hover:not(:disabled) {
  background: #1a6b7c;
  box-shadow: 0 4px 12px rgba(15,76,92,.4), 0 8px 24px rgba(15,76,92,.25);
}

.modern-trust-line {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

body.theme-modern .form-alert--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
body.theme-modern .form-alert--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ── Modern responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .modern-main {
    flex-direction: column;
    min-height: 100vh;
  }

  /* Gradient panel is a short banner on mobile */
  .modern-left {
    flex: none;
    height: 200px;
    padding: 24px 28px;
  }

  .modern-domain {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  /* Form panel fills remaining height */
  .modern-right {
    flex: 1;
    padding: 40px 24px;
    align-items: flex-start;
  }

  .modern-form-wrap { max-width: 100%; }
}

@media (max-width: 400px) {
  .modern-left  { height: 160px; }
  .modern-right { padding: 28px 18px; }
}


/* ═══════════════════════════════════════════════════════════════
   THEME 5 — ELEGANT
   Cream · serif domain name · centered layout · sticky white card
   ═══════════════════════════════════════════════════════════════ */

body.theme-elegant {
  background: #F0EBE1;
}

body.theme-elegant .site-header,
body.theme-elegant .footer { display: none; }

/* Full-viewport, content vertically centered; bg-image lives on .page-wrapper */
.elegant-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Fixed overlay when bg_image is set — very light so image colors stay vivid */
.elegant-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

body.theme-elegant.has-bg-image .elegant-domain {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
body.theme-elegant.has-bg-image .elegant-desc,
body.theme-elegant.has-bg-image .elegant-bullets li {
  color: rgba(255,255,255,0.88);
}
body.theme-elegant.has-bg-image .elegant-bullets li::before {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}
body.theme-elegant.has-bg-image .elegant-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Two-column grid, both panels centered with each other */
.elegant-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  position: relative;
  z-index: 1;
  gap: 0 56px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 48px;
  box-sizing: border-box;
  align-items: center;
}

/* ── Left panel ──────────────────────────────────────────────── */
.elegant-logo {
  max-width: 300px;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
}

.elegant-domain {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #1a2332;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 24px;
}

.elegant-desc {
  font-size: 1rem;
  color: #5a5048;
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}

.elegant-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.elegant-bullets li {
  font-size: 14px;
  font-weight: 500;
  color: #3a4a3a;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.elegant-bullets li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(45,106,79,.12);
  color: #2D6A4F;
  font-weight: 700;
  font-size: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Right panel: floating card ─────────────────────────────── */
.elegant-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow:
    0 1px 3px rgba(26,35,50,.05),
    0 8px 32px rgba(26,35,50,.09),
    0 24px 56px rgba(26,35,50,.06);
  max-width: 420px;
  width: 100%;
}

/* Compact 2-column form grid */
.elegant-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.elegant-field { }

.elegant-field--full { grid-column: 1 / -1; }

body.theme-elegant .field-label { color: #374151; font-size: 13px; font-weight: 500; }

body.theme-elegant .field-input {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  color: #111827;
}
body.theme-elegant .field-input::placeholder { color: #9ca3af; }
body.theme-elegant .field-input:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
  background: #ffffff;
}
body.theme-elegant textarea.field-input { min-height: 80px; }

body.theme-elegant .submit-btn {
  width: 100%;
  background: #2D6A4F;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(45,106,79,.28), 0 4px 16px rgba(45,106,79,.14);
}
body.theme-elegant .submit-btn:hover:not(:disabled) {
  background: #245840;
  box-shadow: 0 4px 12px rgba(45,106,79,.38), 0 8px 24px rgba(45,106,79,.2);
}

.elegant-submit {
  margin-top: 4px;
  padding: 14px 24px;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 10px;
}

.elegant-trust {
  text-align: center;
  font-size: 11.5px;
  color: #a8a098;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

body.theme-elegant .form-alert--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
body.theme-elegant .form-alert--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ── Elegant responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .elegant-main { align-items: flex-start; }

  .elegant-wrap {
    grid-template-columns: 1fr;
    padding: 32px 16px 48px;
    gap: 32px 0;
    align-items: start;
  }

  .elegant-right { order: -1; }
  .elegant-card { max-width: 100%; }
  .elegant-domain { white-space: normal; font-size: clamp(1.5rem, 8vw, 2.5rem); }
}

@media (max-width: 480px) {
  .elegant-card { padding: 20px; }
  .elegant-form-grid { grid-template-columns: 1fr; }
  .elegant-field--full { grid-column: 1; }
  body.theme-elegant input.field-input { height: 42px; }
  body.theme-elegant textarea.field-input { height: 80px; min-height: 80px; }
}

