@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500&display=swap');

:root {
  --bg: #FFFFFF;
  --surface: #0B1E3D;
  --surface2: #0F2847;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #0B1E3D;
  --text-muted: #4A6080;
  --text-dim: #C8D4E3;
  --border: rgba(11, 30, 61, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 30, 61, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover { color: #F5A623; }

.nav-cta {
  background: #F5A623;
  color: #0B1E3D;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
  font-size: 14px;
  padding: 10px 20px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(64px + 80px) 0 100px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--text-dim) 1px, transparent 1px),
    linear-gradient(to bottom, var(--text-dim) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-col { display: flex; flex-direction: column; }

.hero-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0c0c10;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.btn-primary:hover { opacity: 0.88; }

.hero-cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 36px;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 56px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.stat-number {
  color: #0B1E3D;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-contact {
  text-align: right;
}

.footer-contact-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.footer-contact-link {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-contact-link:hover { color: #F5A623; }

.footer-contact-sep {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

/* ── STATS BAR ── */
.statsbar {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
}

.statsbar-number { color: #F5A623; }
.statsbar-desc { color: rgba(255,255,255,0.6); }
.statsbar-divider { background: rgba(255,255,255,0.12); }

.statsbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 0;
}

.statsbar-item {
  flex: 1;
  padding: 0 40px;
}

.statsbar-item:first-child { padding-left: 0; }

.statsbar-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.statsbar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.statsbar-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PROCESS ── */
.process {
  padding: 120px 0;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 72px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 40px 0 0;
}

.process-step:first-child { padding-left: 0; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--text-dim);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 24px;
  flex-shrink: 0;
  padding-right: 40px;
}

.process-arrow:last-child { display: none; }

/* ── TRADES ── */
.trades {
  background: var(--surface);
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trades-left .section-headline,
.trades-desc,
.trade-item { color: rgba(255,255,255,0.85); }
.section-label { color: #F5A623; }
.trade-item::before { background: #F5A623; }
.trade-item { border-bottom-color: rgba(255,255,255,0.08); }

.trades-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.trades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.trades-left .section-headline {
  margin-bottom: 20px;
}

.trades-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 20px;
}

.trades-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.trade-item {
  font-size: 14px;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 16px;
}

.trade-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 0;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── CLOSING ── */
.closing {
  background: var(--surface);
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.closing-label { color: #F5A623; }
.closing-headline { color: #FFFFFF; }
.closing-body { color: rgba(255,255,255,0.65); }
.callout-stat { color: #F5A623; }
.callout-label { color: rgba(255,255,255,0.55); }

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 640px;
}

.closing-body-row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.closing-body {
  flex: 1;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.closing-callout {
  flex-shrink: 0;
  width: 260px;
  background: var(--accent-dim);
  border: 1px solid rgba(240, 165, 0, 0.2);
  padding: 32px;
  border-radius: 4px;
}

.callout-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.callout-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ── PRICING ── */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.15s;
}

.pricing-card:hover { border-color: rgba(240, 165, 0, 0.3); }

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0c10;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-card-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1;
}

.pricing-card-price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
}

.pricing-card-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-card-features li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.pricing-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-card .btn-primary { display: block; text-align: center; font-size: 14px; padding: 13px 16px; }

.pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-cta-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* ── BREAKDOWN PREVIEW ── */
.breakdown {
  background: var(--surface);
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.breakdown-right .section-label { color: #F5A623; }
.breakdown-right .section-headline { color: #FFFFFF; }
.breakdown-right .section-headline + p { color: rgba(255,255,255,0.6); }
.breakdown-preview { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.breakdown-preview-header { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.breakdown-preview-title { color: rgba(255,255,255,0.4); }
.breakdown-table th { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.breakdown-table td { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.breakdown-table td:first-child { color: #FFFFFF; }
.breakdown-cat-item { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.breakdown-cat-item:nth-child(even) { border-left-color: rgba(255,255,255,0.08); }
.cat-dot { background: #F5A623; }
.breakdown-note { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.2); color: rgba(255,255,255,0.6); }

.breakdown-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.breakdown-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.breakdown-preview-header {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breakdown-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.breakdown-dot:nth-child(1) { background: #ff5f57; }
.breakdown-dot:nth-child(2) { background: #ffbd2e; }
.breakdown-dot:nth-child(3) { background: #28c840; }

.breakdown-preview-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.breakdown-table {
  width: 100%;
  border-collapse: collapse;
}

.breakdown-table th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.breakdown-table td {
  font-size: 13px;
  color: var(--text-muted);
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
}

.breakdown-table td:first-child { color: var(--text); }

.breakdown-table tr:last-child td { border-bottom: none; }

.breakdown-right {}

.breakdown-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
}

.breakdown-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}

.breakdown-cat-item:nth-child(odd) { padding-right: 20px; }
.breakdown-cat-item:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--border); }

.cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.breakdown-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 16px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(240, 165, 0, 0.15);
  border-radius: 4px;
}

/* ── WHO IT'S FOR ── */
.whofor {
  padding: 120px 0;
}

.whofor-card { background: var(--surface); border-color: rgba(255,255,255,0.08); }
.whofor-icon { color: #F5A623; }
.whofor-card h3 { color: #FFFFFF; }
.whofor-card p { color: rgba(255,255,255,0.6); }

.whofor-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.whofor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.whofor-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.whofor-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.whofor-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.whofor-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.contact-info {
  margin-bottom: 32px;
}

.contact-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-link {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-link:hover { color: var(--accent); }

.contact-sep {
  color: var(--border);
  font-size: 15px;
}

.contact-cta-wrap {
  display: flex;
  justify-content: center;
}

/* ── FORM MOBILE FIXES ── */
input[type="text"], input[type="email"], select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

input[type="text"]:focus, input[type="email"]:focus, select:focus {
  -webkit-appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Ensure interactive elements have proper z-index and pointer events */
.drop-zone {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner,
  .statsbar-inner,
  .process-inner,
  .trades-inner,
  .manifesto-inner,
  .closing-inner,
  .footer-inner,
  .pricing-inner,
  .breakdown-inner,
  .whofor-inner,
  .contact-inner {
    padding: 0 24px;
  }

  .hero { padding: 80px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .hero-headline { font-size: 40px; }
  .hero-stats-row { flex-wrap: wrap; gap: 24px; }
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0; }

  .statsbar-inner { flex-direction: column; gap: 32px; }
  .statsbar-item { padding: 0; }
  .statsbar-divider { display: none; }

  .process-steps { flex-direction: column; gap: 40px; }
  .process-arrow { display: none; }
  .process-step { padding: 0; }

  .trades-grid { grid-template-columns: 1fr; gap: 48px; }
  .trades-list { grid-template-columns: 1fr; }

  .closing-body-row { flex-direction: column; gap: 40px; }
  .closing-callout { width: 100%; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-meta { text-align: left; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-cta-row { flex-direction: column; align-items: flex-start; }
  .pricing-card.featured { order: -1; }

  .breakdown-grid { grid-template-columns: 1fr; gap: 48px; }
  .breakdown-categories { grid-template-columns: 1fr; }
  .breakdown-cat-item:nth-child(even) { border-left: none; padding-left: 0; }

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

  /* Mobile form + trades fixes */
  .trades-list { overflow: visible; }
  .trade-item { overflow: visible; }

  /* Ensure nav doesn't block form inputs on mobile */
  .site-nav { pointer-events: none; }
  .site-nav a, .site-nav button { pointer-events: auto; }
  .site-nav-inner > * { pointer-events: auto; }

  /* Drop zone touch fix */
  .drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0.01;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
}