*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent: #e8294c;
  --sans: system-ui, -apple-system, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
}
body { font-family: var(--sans); min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }

/* ── LEFT PANEL ── */
.left {
  background: #0f0c09;
  padding: 40px 48px 40px 48px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
.logo { display: flex; align-items: center; gap: 10px; margin-bottom: auto; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0; }
.logo-name { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }

.testimonial-wrap { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 48px 0 32px; }
.quote-marks { font-size: 64px; color: var(--accent); line-height: 0.6; margin-bottom: 24px; font-family: Georgia, serif; }
.testimonial-text { font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 700; color: #fff; line-height: 1.45; letter-spacing: -0.3px; margin-bottom: 28px; }
.testimonial-text strong { font-style: normal; }

.author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: #fff; }
.author-loc { font-size: 12px; color: #6b6560; margin-top: 1px; }

.stats { display: flex; gap: 40px; padding-top: 32px; margin-top: 32px; border-top: 1px solid #1e1a16; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 3px; }
.stat-lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #4a4540; }

/* ── RIGHT PANEL ── */
.right { background: #fff; display: flex; align-items: center; justify-content: center; padding: 48px 40px; }
.form-card { width: 100%; max-width: 400px; }

.form-title { font-size: 28px; font-weight: 800; color: #0f0c09; letter-spacing: -0.6px; margin-bottom: 6px; }
.form-sub { font-size: 13px; color: #888; margin-bottom: 28px; }

.google-btn-wrap { margin-bottom: 16px; }
.divider { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.divider-line { flex: 1; height: 0.5px; background: #e5e3e0; }
.divider-txt { font-size: 12px; color: #bbb; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #1a1a18; margin-bottom: 6px; }
.field-optional { font-weight: 400; color: #aaa; }
.field input, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid #e0ddd8; border-radius: 8px;
  font-size: 13px; font-family: var(--sans); color: #1a1a18;
  background: #fafaf9; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(232,41,76,0.1);
}
.field-hint { font-size: 11px; color: #aaa; margin-top: 4px; }
.field textarea { resize: vertical; min-height: 72px; }
.field-err { font-size: 11px; color: #e8294c; margin-top: 4px; display: none; }

.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: #bbb; margin: 20px 0 12px; padding-top: 16px; border-top: 1px solid #f0eee9; }

.submit-btn {
  width: 100%; padding: 14px; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-size: 15px; font-weight: 800;
  cursor: pointer; letter-spacing: -0.2px; transition: background 0.15s; margin-top: 4px;
}
.submit-btn:hover { background: #c41f3a; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.signin-link { font-size: 13px; color: #888; text-align: center; margin-top: 18px; }
.signin-link a { color: var(--accent); font-weight: 600; text-decoration: none; }

.footer-note { font-size: 11px; color: #bbb; text-align: center; margin-top: 16px; line-height: 1.6; }
.footer-note a { color: #999; }

.success-box { display: none; text-align: center; padding: 24px 0; }
.success-box h2 { font-size: 22px; font-weight: 800; color: #27ae60; margin-bottom: 10px; }
.success-box p { font-size: 13px; color: #888; line-height: 1.6; }

#globalErr {
  font-size: 12px; color: #e8294c; background: #fef2f4;
  border: 1px solid #f5c0c8; border-radius: 7px;
  padding: 10px 13px; margin-top: 12px; display: none;
}

/* ── PHOTO UPLOAD ── */
.photo-upload {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px; border: 1.5px dashed #e0ddd8; border-radius: 10px;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.photo-upload:hover { border-color: #e8294c; background: #fff9f9; }
.photo-upload.has-photo { border-style: solid; border-color: #e8294c; }

.photo-preview {
  width: 56px; height: 56px; border-radius: 50%;
  background: #f0eee9; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { color: #bbb; display: flex; align-items: center; justify-content: center; }

.photo-meta { flex: 1; }
.photo-cta { font-size: 13px; font-weight: 600; color: #e8294c; margin-bottom: 3px; }
.photo-hint { font-size: 11px; color: #aaa; line-height: 1.4; }
.photo-name { font-size: 11px; color: #666; margin-top: 3px; }
.photo-input-hidden { display: none; }


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent:   #e8294c;
  --accent-d: #c8203e;
  --text:     #1a1a18;
  --muted:    #6b6b66;
  --dim:      #a0a09a;
  --border:   #e4e2dc;
  --surface:  #ffffff;
  --bg:       #f7f5f0;
  --sans:     'DM Sans', system-ui, sans-serif;
  --serif:    'DM Serif Display', Georgia, serif;
}
html { height: 100%; }
body { min-height: 100%; font-family: var(--sans); background: var(--bg); color: var(--text); display: flex; flex-direction: row; align-items: stretch; }

/* ── LAYOUT ── */
.left {
  width: 480px;
  flex-shrink: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 110%, rgba(232,41,76,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% -10%, rgba(232,41,76,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 50%, #1c1008 0%, #0f0c09 100%);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.left::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,41,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.left-orb {
  position: absolute;
  bottom: 80px; left: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,41,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: auto;
  position: relative; z-index: 1;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0;
}
.logo-name { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }

/* Left content */
.left-content { margin-top: auto; position: relative; z-index: 1; }

.left-eyebrow {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: rgba(255,255,255,0.3); margin-bottom: 14px;
}
.left-headline {
  font-family: var(--serif);
  font-size: 28px; line-height: 1.25; color: #fff;
  margin-bottom: 20px; letter-spacing: -0.2px;
}
.left-headline span { color: var(--accent); }

.benefit-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.benefit-item { display: flex; align-items: flex-start; gap: 10px; }
.benefit-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(232,41,76,0.15); border: 1px solid rgba(232,41,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.benefit-icon svg { width: 11px; height: 11px; }
.benefit-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.benefit-text strong { color: #fff; font-weight: 600; }

/* Stats */
.left-stats {
  display: flex; gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-val { font-family: var(--serif); font-size: 24px; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-val span { color: var(--accent); }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.6px; }

/* ── RIGHT ── */
.right {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 52px;
  overflow-y: auto;
}
.form-card { width: 100%; max-width: 400px; }
.form-title { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }

.google-btn-wrap { margin-bottom: 16px; }

.divider { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-txt { font-size: 11px; color: var(--dim); font-weight: 500; white-space: nowrap; }

.section-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.9px; color: var(--muted);
  margin: 20px 0 12px; padding-top: 16px;
  border-top: 1px solid var(--border);
}

.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-family: var(--sans); color: var(--text);
  background: #fafaf8; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(232,41,76,0.08);
}
.field textarea { resize: vertical; min-height: 72px; }
.field-hint { font-size: 11px; color: var(--dim); margin-top: 3px; }
.field-optional { font-size: 11px; color: var(--dim); font-weight: 400; }
.field-err { font-size: 11px; color: #e74c3c; margin-top: 3px; display: none; }

/* Photo upload */
.photo-upload {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border: 1.5px dashed var(--border);
  border-radius: 8px; cursor: pointer; transition: border-color 0.15s;
}
.photo-upload:hover { border-color: var(--accent); }
.photo-upload.has-photo { border-style: solid; border-color: var(--accent); }
.photo-preview {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; color: var(--dim);
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { display: flex; align-items: center; justify-content: center; }
.photo-cta { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 2px; }
.photo-hint { font-size: 11px; color: var(--dim); }
.photo-name { font-size: 11px; color: var(--muted); margin-top: 2px; }
.photo-input-hidden { display: none; }

/* Submit */
.submit-btn {
  width: 100%; padding: 12px 16px;
  background: var(--accent); color: #fff; border: none;
  border-radius: 9px; font-size: 15px; font-weight: 700;
  font-family: var(--sans); cursor: pointer; letter-spacing: -0.2px;
  transition: background 0.15s; margin-top: 8px; margin-bottom: 16px;
}
.submit-btn:hover { background: var(--accent-d); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.signin-link { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.signin-link a { color: var(--accent); font-weight: 600; text-decoration: none; }
.footer-note { font-size: 11px; color: var(--dim); text-align: center; line-height: 1.6; }
.footer-note a { color: var(--muted); text-decoration: underline; }

.success-box { display: none; text-align: center; padding: 40px 0; }
.success-box h2 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.success-box p { font-size: 13px; color: var(--muted); line-height: 1.6; }

#globalErr { font-size: 12px; color: #e74c3c; margin-bottom: 8px; display: none; }

@media (max-width: 768px) {
  body { flex-direction: column; }
  .left { display: none; }
  .right { padding: 40px 24px; width: 100%; }
}

/* ── LEFT PANEL OVERRIDES ─────────────────────────────────────────── */
body { display:flex; min-height:100vh; }
.left {
  width: 52% !important;
  min-width: 52% !important;
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
}
.left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.68);
  z-index: 0;
}
.left-orb { display:none !important; }
.left > * { position: relative; z-index: 1; }
.left-eyebrow { color: rgba(255,255,255,0.55) !important; }
.left-headline { color: #fff !important; }
.left-headline span { color: #e8294c !important; }
.benefit-text { color: rgba(255,255,255,0.82) !important; }
.benefit-text strong { color: #fff !important; }
.benefit-icon { background: rgba(232,41,76,0.18) !important; border-color: rgba(232,41,76,0.3) !important; }
.stat-val { color: #fff !important; }
.stat-val span { color: #e8294c !important; }
.stat-label { color: rgba(255,255,255,0.5) !important; }
.logo-name { color: #fff !important; }
.logo-mark { background: #e8294c !important; color: #fff !important; }
.left-stats { border-top-color: rgba(255,255,255,0.12) !important; }