/* =============================================
   VOID MY SOLAR — Solar Contract Cancellation Experts
   Cream paper · deep ink · signal red "VOID" accent · warm gold sub.
   Serious, editorial, trustworthy. Built for homeowners in trouble.
   ============================================= */

:root {
  --paper:        #FAF8F3;       /* warm cream */
  --paper-2:      #F2EFE7;
  --paper-3:      #E8E3D6;
  --ink:          #0F1115;       /* near black with warmth */
  --ink-2:        #1B1F26;
  --ink-dim:      rgba(15,17,21,0.72);
  --ink-faint:    rgba(15,17,21,0.46);
  --ink-line:     rgba(15,17,21,0.10);
  --ink-line-2:   rgba(15,17,21,0.18);
  --void:         #D91E26;       /* signal red — the "VOID" accent */
  --void-2:       #B30E1B;
  --void-soft:    rgba(217,30,38,0.10);
  --sun:          #E8A53A;       /* warm gold — subtle solar nod */
  --sun-soft:     rgba(232,165,58,0.18);
  --green:        #2E8B57;       /* trust signal green */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(15,17,21,0.5) 0.4px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(15,17,21,0.4) 0.4px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
}

main, .nav, .footer, .marquee, .ticker { position: relative; z-index: 1; }

.wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.wrap.narrow { max-width: 900px; }
.wrap.medium { max-width: 1080px; }

/* ============== TYPE ============== */
h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--ink);
}
h1 {
  font-size: clamp(3rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
h2 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  margin-bottom: 0.4em;
  font-weight: 800;
  letter-spacing: -0.04em;
}
h3 {
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 0.4em;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }

.serif {
  font-family: 'Fraunces', 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.void-mark {
  color: var(--void);
  font-weight: 900;
}
.void-mark::before { content: ""; }

p {
  font-size: 1.08rem;
  color: var(--ink-dim);
  margin-bottom: 1em;
  line-height: 1.7;
  max-width: 64ch;
}

a { color: var(--void); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--ink); }
::selection { background: var(--void); color: var(--paper); }

.mono {
  font-family: 'JetBrains Mono', 'Source Code Pro', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Chapter labels */
.chapter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chapter::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--void);
}
.chapter.green::before { background: var(--green); }
.chapter.sun::before { background: var(--sun); }

/* ============== ALERT TICKER ============== */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-2);
}
.ticker-row {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  gap: 36px;
}
.ticker-row span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}
.ticker-row span.alert { color: var(--void); font-weight: 700; }
.ticker-row span.gold { color: var(--sun); }
.ticker-row span::after {
  content: "●";
  color: var(--void);
  font-size: 0.5em;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.brand .void-word { color: var(--void); }
.brand .x {
  width: 28px;
  height: 28px;
  background: var(--ink);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-weight: 900;
  font-size: 0.85rem;
}
.brand .x .stripe {
  position: relative;
  width: 14px;
  height: 14px;
}
.brand .x .stripe::before,
.brand .x .stripe::after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--void);
}
.brand .x .stripe::before { top: 6px; transform: rotate(-12deg); }
.brand .x .stripe::after  { top: 6px; transform: rotate(12deg); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--void);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--void); }

/* ============== BUTTONS ============== */
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  background: var(--void);
  color: var(--paper) !important;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--void);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  line-height: 1.1;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
a.btn::after, button.btn::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.25s;
}
a.btn:hover, button.btn:hover {
  background: var(--ink);
  color: var(--paper) !important;
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15,17,21,0.18);
}
a.btn:hover::after, button.btn:hover::after { transform: translateX(4px); }

a.btn-ghost,
button.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 2px solid var(--ink);
}
a.btn-ghost:hover,
button.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper) !important;
}

a.btn-gold,
button.btn-gold {
  background: var(--sun);
  color: var(--ink) !important;
  border-color: var(--sun);
}
a.btn-gold:hover,
button.btn-gold:hover {
  background: var(--ink);
  color: var(--sun) !important;
  border-color: var(--ink);
}

.cta-btn {
  padding: 12px 22px !important;
  font-size: 0.78rem !important;
}

/* ============== HERO ============== */
.hero {
  padding: 80px 0 60px;
  position: relative;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-meta .pill {
  background: var(--ink);
  color: var(--paper);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta .pill .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(46,139,87,0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.3); }
}

.hero h1 {
  margin: 0 0 40px;
}
.hero .sub-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-top: 50px;
}
.hero .sub {
  font-size: clamp(1.1rem, 1.55vw, 1.36rem);
  color: var(--ink-dim);
  line-height: 1.5;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Trust bar — checkmarks */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-top: 80px;
}
.trust-item {
  padding: 32px 28px;
  border-right: 1px solid var(--ink-line);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item:last-child { border-right: none; }
.trust-item .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item .text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.trust-item .text small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

/* ============== SECTION ============== */
.section { padding: 110px 0; position: relative; }
.section.tight { padding: 70px 0; }
.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--paper); }
.section.dark p { color: rgba(250,248,243,0.78); }
.section.dark .chapter { color: rgba(250,248,243,0.6); }
.section.dark .chapter::before { background: var(--sun); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head h2 { margin-bottom: 0; }
.section-head .lead {
  font-size: 1.05rem;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 500px;
}
.section.dark .section-head .lead { color: rgba(250,248,243,0.78); }

/* ============== PROCESS STEPS ============== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
}
.process-step {
  padding: 40px 28px 48px;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--paper);
  transition: background 0.3s;
}
.process-step:hover { background: var(--paper-2); }
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--void);
  margin-bottom: 22px;
}
.process-step h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.15;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.55;
}

/* ============== TESTIMONIALS ============== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: all 0.3s;
}
.testimonial:hover {
  border-color: var(--void);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,17,21,0.08);
}
.testimonial .stars {
  color: var(--sun);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
}
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.testimonial .attr {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--ink-line);
}
.testimonial .attr strong {
  color: var(--ink);
  letter-spacing: 0.08em;
}

/* ============== STATS ============== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 50px 0;
  margin: 40px 0;
}
.stat {
  padding: 0 30px;
  border-right: 1px solid var(--ink-line);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  color: var(--ink);
}
.stat .num .void-mark { color: var(--void); }
.stat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

/* ============== REASONS / ELIGIBILITY ============== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
  border-left: 1px solid var(--ink-line);
}
.reason {
  padding: 36px 30px 40px;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--paper);
  transition: background 0.3s;
  position: relative;
}
.reason:hover { background: var(--paper-2); }
.reason .marker {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--void);
  margin-bottom: 18px;
  font-style: italic;
}
.reason h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.reason p {
  font-size: 0.95rem;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.55;
}

/* ============== BIG CTA STRIP ============== */
.cta-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(217,30,38,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232,165,58,0.10), transparent 60%);
}
.cta-strip .wrap { position: relative; z-index: 1; }
.cta-strip h2 {
  color: var(--paper);
  font-size: clamp(3rem, 10vw, 9.5rem);
  margin: 0 auto 30px;
  max-width: 1200px;
  line-height: 0.88;
  text-transform: uppercase;
}
.cta-strip h2 .void-mark {
  color: var(--void);
  text-shadow: 0 0 28px rgba(217,30,38,0.5);
}
.cta-strip p {
  font-size: 1.18rem;
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(250,248,243,0.8);
}
.cta-strip .hero-cta { justify-content: center; }
.cta-strip .chapter { color: rgba(250,248,243,0.7); justify-content: center; }
.cta-strip .chapter::before { background: var(--sun); }

/* ============== PAGE HEADER ============== */
.page-header {
  padding: 80px 0 60px;
  position: relative;
  border-bottom: 1px solid var(--ink-line);
}
.page-header .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 26px;
}
.page-header h1 {
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  margin: 0 0 28px;
  line-height: 0.92;
}
.page-header .lead {
  font-size: 1.18rem;
  color: var(--ink-dim);
  max-width: 720px;
  line-height: 1.55;
}

/* ============== FORM (with file upload!) ============== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
  padding-top: 40px;
}
.form-aside h3 {
  margin-bottom: 16px;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.form-aside p { font-size: 1rem; max-width: 100%; }
.form-aside ul { list-style: none; margin: 30px 0; }
.form-aside li {
  padding: 18px 0;
  border-top: 1px solid var(--ink-line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.form-aside li:last-child { border-bottom: 1px solid var(--ink-line); }
.form-aside li .li-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-aside li strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.form-aside li span {
  color: var(--ink-dim);
  font-size: 0.94rem;
  line-height: 1.55;
}

.legal-form {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 8px 8px 0 var(--void);
}
.legal-form::before {
  content: "VOIDCheck™ INTAKE";
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--void);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.legal-form.contact-style::before { content: "CONTACT INTAKE"; }
.legal-form.apply-style::before { content: "ELIGIBILITY INTAKE"; }

.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.field label .req {
  color: var(--void);
  margin-left: 4px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field textarea,
.field select {
  width: 100%;
  background: var(--paper-2);
  border: 1.5px solid var(--ink-line-2);
  padding: 14px 16px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.18s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--void);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(217,30,38,0.14);
}
.field select option { background: var(--paper); color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.field .hint { font-size: 0.86rem; color: var(--ink-faint); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* CHECKBOX GROUP — for VOIDCheck eligibility */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  background: var(--paper-2);
  padding: 22px 24px;
  border-radius: 6px;
  border: 1.5px solid var(--ink-line-2);
}
.checkbox-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  padding: 8px 0;
  line-height: 1.4;
}
.checkbox-group input[type="checkbox"] {
  margin: 3px 0 0;
  width: 18px;
  height: 18px;
  accent-color: var(--void);
  flex-shrink: 0;
}

/* FILE UPLOAD — emphasis on this */
.file-upload {
  border: 2px dashed var(--ink-line-2);
  border-radius: 6px;
  padding: 28px 24px;
  background: var(--paper-2);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}
.file-upload:hover {
  border-color: var(--void);
  background: var(--paper);
}
.file-upload .file-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}
.file-upload .file-icon svg { width: 22px; height: 22px; }
.file-upload .file-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.file-upload .file-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-upload.has-file {
  border-style: solid;
  border-color: var(--green);
  background: rgba(46,139,87,0.08);
}
.file-upload.has-file .file-icon { background: var(--green); }
.file-upload .selected-files {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  display: none;
}
.file-upload.has-file .selected-files { display: block; }

.hp { position: absolute; left: -10000px; }
.legal-form button.btn { display: flex; width: 100%; margin-top: 14px; font-size: 1rem; padding: 20px 30px; }
.disclaimer {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-left: 3px solid var(--ink);
  font-size: 0.84rem;
  color: var(--ink-dim);
  line-height: 1.55;
  border-radius: 0 4px 4px 0;
}
.disclaimer strong { color: var(--ink); }

/* ============== EDITORIAL / ABOUT ============== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 60px 0;
  border-top: 1px solid var(--ink-line);
}
.editorial .col-left .pull {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 20px;
}
.editorial .col-right p { font-size: 1.05rem; }
.editorial .col-right p:not(:last-child) { margin-bottom: 1.2em; }

/* ============== FAQ ============== */
.faq-list { border-top: 1px solid var(--ink-line); }
.faq-item {
  border-bottom: 1px solid var(--ink-line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--void);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding-top: 18px;
  font-size: 1.05rem;
  color: var(--ink-dim);
  max-width: 80ch;
  line-height: 1.65;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 36px;
  border-top: 1px solid var(--ink-2);
}
.footer-big {
  margin-bottom: 70px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,248,243,0.12);
}
.footer-big h2 {
  font-family: 'Inter Tight', sans-serif;
  color: var(--paper);
  font-size: clamp(4rem, 14vw, 14rem);
  font-weight: 900;
  line-height: 0.84;
  margin: 0;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.footer-big h2 .void-mark { color: var(--void); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer .brand { color: var(--paper); margin-bottom: 22px; }
.footer .brand .void-word { color: var(--void); }
.footer-brand p { font-size: 0.95rem; max-width: 380px; color: rgba(250,248,243,0.7); }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 11px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--void); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(250,248,243,0.12);
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.5);
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}
.guarantee-badge .gb-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  padding: 4px;
  position: relative;
}
.guarantee-badge .gb-circle::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat { border-right: none; padding: 0 30px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--ink-line); padding-left: 0; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .nav-inner { padding: 14px 22px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.cta-btn) { display: none; }
  .hero { padding: 50px 0; }
  .hero .sub-row { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .reasons-grid { grid-template-columns: 1fr; }
  .reason { border-right: none; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--ink-line); }
  .trust-item:last-child { border-bottom: none; }
  .editorial { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .checkbox-group { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-row { grid-template-columns: 1fr; padding: 36px 0; }
  .stat { padding: 18px 0 !important; border-right: none !important; border-bottom: 1px solid var(--ink-line); }
  .stat:last-child { border-bottom: none; }
  .legal-form { padding: 36px 26px; box-shadow: 4px 4px 0 var(--void); }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
