/* ===================================================
   JOD8 — DIAGNOSTIC NUMÉRIQUE / DIGITAL DIAGNOSTIC
   VERSION 1 — Original
   Typography: DM Serif Display (display) + Inter (body)
   Palette: Deep Black · White · Light grey
   Tone: Luxury editorial — monochrome, inspired by j0d8.com
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --black:        #0A0A0A;
  --black-soft:   #111111;
  --black-mid:    #1A1A1A;
  --gold:         #FFFFFF;
  --gold-light:   #E8E8E8;
  --gold-pale:    #F4F4F4;
  --white:        #FFFFFF;
  --off-white:    #F7F7F7;
  --warm-grey:    #F0F0F0;
  --grey-mid:     #E2E2E2;
  --grey-border:  #D0D0D0;
  --text-dark:    #1A1A1A;
  --text-body:    #444444;
  --text-muted:   #888888;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:    1100px;
  --narrow-w: 680px;
  --ease:     0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container.narrow { max-width: var(--narrow-w); }

/* ===== NAV LOGO ===== */
.nav-logo {
  position: absolute;
  top: 1rem;
  left: 2.5rem;
  height: 120px;
  width: auto;
  z-index: 20;
  object-fit: contain;
}

/* ===== LANG SWITCHER ===== */
.lang-bar {
  position: absolute;
  top: 1.75rem;
  right: 2.5rem;
  z-index: 20;
  display: flex;
  gap: 0.25rem;
}
.lang-bar a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  transition: all var(--ease);
}
.lang-bar a:hover, .lang-bar a.active {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.75rem;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
}
.btn-gold {
  background: var(--white);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}
.btn-outline-gold {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-gold:hover {
  background: var(--white);
  color: var(--black);
}
.btn-lg { padding: 1.15rem 3.25rem; font-size: 0.74rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
.hero-rule {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto 2rem;
  opacity: 1;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.9;
  margin-bottom: 3.5rem;
}

/* ===== INTRO ===== */
.intro {
  background: var(--off-white);
  padding: 7rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--grey-mid);
}
.intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.intro-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 1rem;
}

/* ===== PAIN ===== */
.pain {
  background: var(--warm-grey);
  padding: 7rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  color: var(--black);
  font-weight: 400;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.pain-card {
  background: var(--white);
  padding: 2.25rem 2.5rem;
  border: 1px solid var(--grey-border);
  border-left: 3px solid var(--grey-border);
  transition: all var(--ease);
}
.pain-card:hover {
  border-left-color: var(--black);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.pain-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  opacity: 0.7;
  line-height: 1;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
}
.pain-card p em {
  font-style: italic;
  color: var(--black);
  font-weight: 500;
}
.pain-callout {
  background: var(--black);
  padding: 2.75rem 3.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.pain-callout p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
}

/* ===== BRIDGE ===== */
.bridge {
  background: var(--black-soft);
  padding: 7rem 2rem;
  text-align: center;
}
.bridge h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 400;
}
.bridge h2 em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
.bridge p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ===== OFFER ===== */
.offer {
  background: var(--white);
  padding: 8rem 2rem;
}
.offer-header {
  text-align: center;
  margin-bottom: 5rem;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.offer-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--black);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.offer-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}
.offer-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--grey-mid);
}
.offer-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  transition: all var(--ease);
}
.offer-item:last-child { border-bottom: none; }
.offer-item:hover { background: var(--off-white); }
.offer-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--grey-mid);
  line-height: 1;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--grey-mid);
  transition: color var(--ease);
  font-style: italic;
}
.offer-item:hover .offer-num { color: var(--black); }
.offer-body {
  padding: 2.5rem 3rem;
}
.offer-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.offer-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.offer-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offer-bullets li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}
.offer-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== FOR YOU ===== */
.foryou {
  background: var(--off-white);
  padding: 7rem 2rem;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}
.foryou-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.foryou-col {
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid var(--grey-mid);
}
.foryou-col.yes { border-top: 2px solid var(--black); }
.foryou-col.no  { border-top: 2px solid var(--grey-border); }
.foryou-col h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 2rem;
}
.foryou-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.foryou-col li {
  font-size: 0.93rem;
  color: var(--text-body);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.7;
}
.foryou-col.yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: 600;
}
.foryou-col.no li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--grey-border);
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
  padding: 7rem 2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-bottom: 4rem;
}
.testi-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--off-white);
  padding: 3rem;
  border: 1px solid var(--grey-mid);
  border-top: 2px solid var(--black);
}
.testi-card blockquote {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.9;
  font-style: italic;
  position: relative;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.testi-card blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.75rem;
  left: -0.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--black);
  opacity: 0.12;
  line-height: 1;
}
.testi-card cite {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== PROCESS ===== */
.process {
  background: var(--warm-grey);
  padding: 7rem 2rem;
}
.process-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--narrow-w);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--grey-mid);
}
.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: stretch;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  transition: all var(--ease);
}
.process-item:last-child { border-bottom: none; }
.process-item:hover { background: var(--off-white); }
.process-n {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--text-muted);
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  transition: background var(--ease);
}
.process-item:hover .process-n { background: var(--warm-grey); }
.process-text {
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.process-text strong {
  color: var(--black);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.97rem;
}

/* ===== FORM SECTION ===== */
.form-section {
  background: var(--off-white);
  padding: 8rem 2rem;
  border-top: 1px solid var(--grey-mid);
}
.form-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 5rem;
}
.form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1.75rem;
  line-height: 1.1;
}
.form-header h2 em {
  font-style: italic;
  color: rgba(0,0,0,0.45);
}
.form-header p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.form-embed-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey-mid);
}
.form-embed-wrapper iframe {
  width: 100%;
  min-height: 900px;
  border: none;
  display: block;
}
.form-placeholder {
  padding: 5rem 3rem;
  text-align: center;
}
.form-placeholder p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.form-placeholder code {
  font-family: monospace;
  font-size: 0.82rem;
  background: var(--warm-grey);
  padding: 0.2rem 0.5rem;
  color: var(--black);
}

/* ===== ABOUT ===== */
.about {
  background: var(--black);
  padding: 8rem 2rem;
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  align-items: center;
}
.about-logo {
  height: 44px;
  width: auto;
  margin-bottom: 2.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.about-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.15;
}
.about-text p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.about-text p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.about-visual {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: var(--warm-grey);
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--grey-mid);
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.footer-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--black);
  padding: 2.5rem 2rem;
}
.site-footer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  letter-spacing: 0.08em;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .foryou-grid { grid-template-columns: 1fr; }
  .offer-item { grid-template-columns: 1fr; }
  .offer-num {
    padding: 1.5rem 2rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid var(--grey-mid);
    justify-content: flex-start;
    font-size: 2rem;
  }
  .offer-body { padding: 1.75rem 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { aspect-ratio: 4/3; }
  .lang-bar { top: 1rem; right: 1rem; }
  .process-item { grid-template-columns: 48px 1fr; }
  .foryou-col { padding: 2.5rem; }
}

/* ===== DIAGNOSTIC FORM ===== */
.diag-form {
  max-width: 820px;
  margin: 0 auto;
}

.form-block {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-top: 2px solid var(--black);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.form-block-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--grey-mid);
  background: var(--off-white);
}

.form-block-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1;
  flex-shrink: 0;
}

.form-block-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  margin: 0;
}

.form-fields {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.field-row {
  display: flex;
  gap: 1.25rem;
}
.field-row.two-col > * { flex: 1; }

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.6;
}

.field-group label small {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}

.req {
  color: var(--text-dark);
  font-weight: 700;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group input[type="url"],
.field-group select,
.field-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8278' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.7;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
  background: var(--white);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-border);
  background: var(--off-white);
  transition: all var(--ease);
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.check-item:hover {
  border-color: var(--black);
  background: var(--off-white);
}

.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--black);
  cursor: pointer;
}

/* Radio buttons */
.radio-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.radio-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--grey-border);
  background: var(--off-white);
  transition: all var(--ease);
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.5;
}

.radio-item:hover {
  border-color: var(--black);
  background: var(--off-white);
}

.radio-item input[type="radio"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--black);
  cursor: pointer;
}

/* Positioning block before form */
.form-positioning-block {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--grey-mid);
  background: var(--white);
}

.form-positioning-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.form-positioning-block p:last-child {
  margin-bottom: 0;
}

/* Section intro text inside form blocks */
.form-section-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.25rem;
  font-style: italic;
}

/* Closing quote above submit button */
.form-closing-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* About logo visual (replaces photo) */
.about-logo-visual {
  aspect-ratio: 3/4;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-large {
  width: 70%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

/* Submit area */
.form-submit {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-top: 2px solid var(--black);
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

/* Responsive form */
@media (max-width: 640px) {
  .field-row.two-col { flex-direction: column; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .form-fields { padding: 1.75rem; }
  .form-block-header { padding: 1.5rem 1.75rem; }
  .consent-block { padding: 1.5rem; }
}

/* ===== CONSENT CHECKBOX ===== */
.consent-block {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--grey-mid);
  background: var(--off-white);
  text-align: left;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--black);
  cursor: pointer;
}

.consent-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.consent-text a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}

.consent-text a:hover {
  color: var(--black);
}

.consent-block.has-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success-message {
  display: none;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-success-message.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.success-inner {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-top: 2px solid var(--black);
  padding: 4rem 3rem;
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 2rem;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1;
}

.success-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.success-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 1rem;
}

.success-inner p:last-child {
  margin-bottom: 0;
}

.success-inner a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}

.success-inner a:hover {
  color: var(--black);
}

/* ===== FIELD ERROR MESSAGES ===== */
.field-error-msg {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
