/* invoice-factoring.uk — Hanken Grotesk / Source Code Pro — sky-blue / dark-with-light-zones */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Hanken Grotesk', sans-serif; font-weight: 400; color: #e8f4fd; line-height: 1.6; background: var(--base); }

:root {
  --prime: #0ea5e9;
  --prime-hi: #38bdf8;
  --prime-glow: rgba(14,165,233,0.22);
  --prime-dim: rgba(14,165,233,0.08);
  --base: #060d14;
  --surface: #0c1a27;
  --surface-hi: #132132;
  --canvas: #f0f9ff;
  --canvas-mid: #e0f2fe;
  --ink: #0c1f33;
  --ink-mid: #2d4b6a;
  --muted: rgba(255,255,255,0.5);
  --radius: 12px;
}

/* ── UTILITIES ── */
.folio { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.btn-prime {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--prime); color: #fff; font-family: inherit; font-weight: 700;
  font-size: 0.95rem; padding: 12px 26px; border-radius: 8px;
  border: none; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-prime:hover { background: var(--prime-hi); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--prime); font-family: inherit; font-weight: 700;
  font-size: 0.95rem; padding: 11px 24px; border-radius: 8px;
  border: 2px solid var(--prime); cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { background: var(--prime-dim); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ── NAV ── */
#ifuk-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(6,13,20,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14,165,233,0.12);
}
.nav-row {
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.78); font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--prime-hi); }
.nav-cta { margin-left: 8px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-burger span {
  display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}
#mob-drop { display: none; background: #0a1824; border-top: 1px solid rgba(14,165,233,0.1); }
#mob-drop.mob-open { display: block; }
#mob-drop a { display: block; padding: 14px 24px; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
#mob-drop a:hover { color: var(--prime); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #060d14 0%, #091520 55%, #060d14 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--prime-dim); border: 1px solid rgba(14,165,233,0.25);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 20px;
  font-size: 0.78rem; font-weight: 700; color: var(--prime); letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.12; color: #fff; margin-bottom: 18px; letter-spacing: -0.02em; }
.hero-h1 em { font-style: normal; color: var(--prime); }
.hero-lead { font-size: 1.08rem; color: rgba(255,255,255,0.68); margin-bottom: 28px; max-width: 480px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid rgba(14,165,233,0.18);
  border-radius: 100px; padding: 5px 12px;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7);
}
.hero-chip svg { flex-shrink: 0; }
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── LEDGER WIDGET ── */
.ledger-widget {
  background: var(--surface); border: 1px solid rgba(14,165,233,0.18);
  border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.lw-header {
  background: var(--surface-hi); padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(14,165,233,0.1);
}
.lw-title { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; text-transform: uppercase; }
.lw-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; color: #22c55e; font-family: 'Source Code Pro', monospace;
}
.lw-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.35; }
}
.lw-body { padding: 6px 0; }
.lw-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 12px; padding: 11px 18px; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.lw-row:last-child { border-bottom: none; }
.lw-inv { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.8); font-family: 'Source Code Pro', monospace; }
.lw-company { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.lw-amount { font-size: 0.88rem; font-weight: 800; color: #fff; font-family: 'Source Code Pro', monospace; text-align: right; }
.lw-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 100px;
}
.lw-badge.s-pending { background: rgba(234,179,8,0.15); color: #fbbf24; }
.lw-badge.s-advanced { background: rgba(14,165,233,0.15); color: var(--prime); }
.lw-badge.s-settled { background: rgba(34,197,94,0.15); color: #4ade80; }
.lw-foot {
  padding: 12px 18px; background: var(--surface-hi);
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(14,165,233,0.1);
}
.lw-foot-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.lw-foot-total { font-family: 'Source Code Pro', monospace; font-size: 1.05rem; font-weight: 700; color: var(--prime); }

/* ── STATS STRIP ── */
#stats { background: var(--canvas); padding: 52px 0; }
.stats-intro { text-align: center; margin-bottom: 36px; }
.stats-intro h2 { font-size: 1.55rem; font-weight: 800; color: var(--ink); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: #fff; border: 1px solid var(--canvas-mid);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  box-shadow: 0 2px 12px rgba(12,31,51,0.06);
}
.stat-num {
  font-family: 'Source Code Pro', monospace; font-size: 2.1rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 4px;
}
.stat-num-accent { color: var(--prime); }
.stat-label { font-size: 0.82rem; font-weight: 600; color: var(--ink-mid); }

/* ── SECTION SHARED ── */
.section-dark { background: var(--surface); padding: 80px 0; }
.section-base { background: var(--base); padding: 80px 0; }
.section-canvas { background: var(--canvas); padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--prime); margin-bottom: 10px;
}
.section-title-dark { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.section-title-light { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.section-sub-dark { font-size: 1rem; color: rgba(255,255,255,0.55); margin-top: 10px; max-width: 520px; margin-left: auto; margin-right: auto; }
.section-sub-light { font-size: 1rem; color: var(--ink-mid); margin-top: 10px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  background: var(--surface-hi); border: 1px solid rgba(14,165,233,0.1);
  border-radius: var(--radius); padding: 28px 24px; position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--prime), var(--prime-hi));
  opacity: 0; transition: opacity 0.2s;
}
.svc-card:hover { border-color: rgba(14,165,233,0.35); transform: translateY(-2px); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 44px; height: 44px; background: var(--prime-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.svc-title { font-size: 1.08rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.svc-body { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.svc-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-size: 0.82rem; font-weight: 700; color: var(--prime); text-decoration: none; }
.svc-link:hover { color: var(--prime-hi); }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(12,31,51,0.06);
}
.process-wm {
  position: absolute; bottom: -12px; right: 8px;
  font-family: 'Source Code Pro', monospace; font-size: 6rem; font-weight: 700;
  color: var(--ink); opacity: 0.06; line-height: 1;
  transform: rotate(12deg); user-select: none; pointer-events: none;
}
.process-step-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--prime); color: #fff; font-family: 'Source Code Pro', monospace;
  font-size: 0.82rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.process-h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.process-body { font-size: 0.86rem; color: var(--ink-mid); line-height: 1.65; }
.process-metric {
  display: inline-block; margin-top: 14px;
  background: var(--canvas-mid); color: var(--ink); border-radius: 100px;
  padding: 4px 12px; font-family: 'Source Code Pro', monospace; font-size: 0.78rem; font-weight: 600;
}

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: var(--surface-hi); border-radius: var(--radius); padding: 24px 22px;
  border-left: 4px solid var(--prime);
}
.why-num {
  font-family: 'Source Code Pro', monospace; font-size: 1.5rem; font-weight: 700;
  color: var(--prime); margin-bottom: 6px; line-height: 1;
}
.why-title { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.why-body { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── SEO CONTENT ── */
.seo-section { background: var(--canvas); padding: 80px 0; }
.seo-layout { display: grid; grid-template-columns: 290px 1fr; gap: 48px; align-items: start; }
.seo-sidebar { position: sticky; top: 90px; }
.facts-card {
  background: #fff; border: 1px solid var(--canvas-mid); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: 0 4px 20px rgba(12,31,51,0.07);
}
.facts-card-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mid); margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--canvas-mid);
}
.facts-row { margin-bottom: 14px; }
.facts-row:last-child { margin-bottom: 0; }
.facts-val {
  font-family: 'Source Code Pro', monospace; font-size: 1.45rem; font-weight: 700;
  color: #0369a1; line-height: 1;
}
.facts-desc { font-size: 0.78rem; color: var(--ink-mid); margin-top: 2px; line-height: 1.4; }
.facts-divider { border: none; border-top: 1px solid var(--canvas-mid); margin: 14px 0; }
.facts-cta {
  display: block; text-align: center; background: var(--prime); color: #fff;
  font-weight: 700; font-size: 0.88rem; padding: 11px 16px; border-radius: 8px;
  text-decoration: none; margin-top: 18px; transition: background 0.2s;
}
.facts-cta:hover { background: var(--prime-hi); }

.seo-article h1 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; color: var(--ink); margin-bottom: 18px; line-height: 1.2; }
.seo-article h2 {
  font-size: clamp(1.15rem, 2vw, 1.45rem) !important; font-weight: 800 !important;
  color: var(--ink) !important; margin-bottom: 10px !important; line-height: 1.25 !important;
}
.seo-article h3 {
  font-size: 1.05rem !important; font-weight: 700 !important;
  color: var(--ink) !important; margin-bottom: 8px !important;
}
.seo-article p { font-size: 0.94rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 14px; }
.seo-article ul, .seo-article ol { padding-left: 20px; margin-bottom: 14px; }
.seo-article li { font-size: 0.92rem; color: var(--ink-mid); line-height: 1.7; margin-bottom: 4px; }
.seo-article a { color: #0369a1; text-decoration: underline; }
.seo-article strong { font-weight: 700; color: var(--ink); }

details.seo-block { border-bottom: 1px solid var(--canvas-mid); }
details.seo-block summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; cursor: pointer; list-style: none; user-select: none;
}
details.seo-block summary::-webkit-details-marker { display: none; }
.sum-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--prime-dim);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem; font-weight: 700; color: var(--prime); transition: background 0.2s;
}
details.seo-block[open] .sum-icon { background: var(--prime); color: #fff; }
.sum-icon::before { content: '+'; }
details.seo-block[open] .sum-icon::before { content: '×'; }
.detail-body { padding: 0 0 18px 0; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-item summary {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0; cursor: pointer; list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-num {
  font-family: 'Source Code Pro', monospace; font-size: 0.72rem; font-weight: 700;
  background: var(--prime-dim); color: var(--prime); border-radius: 6px;
  padding: 3px 7px; flex-shrink: 0; min-width: 30px; text-align: center;
}
.faq-q-text { font-size: 0.96rem; font-weight: 700; color: #fff; flex: 1; }
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface-hi);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem; color: var(--prime); transition: background 0.2s, transform 0.2s;
}
.faq-item[open] .faq-toggle { background: var(--prime); color: #fff; transform: rotate(45deg); }
.faq-toggle::before { content: '+'; }
.faq-a { padding: 0 0 18px 44px; font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ── CONTACT ── */
.contact-section { background: var(--canvas); padding: 80px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.contact-info p { font-size: 0.94rem; color: var(--ink-mid); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.contact-detail a { color: var(--ink); text-decoration: none; }
.contact-detail a:hover { color: #0369a1; }
.contact-form {
  background: #fff; border: 1px solid var(--canvas-mid); border-radius: 16px;
  padding: 36px 32px; box-shadow: 0 4px 24px rgba(12,31,51,0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  font-family: inherit; font-size: 0.9rem; color: var(--ink);
  background: var(--canvas); border: 1px solid var(--canvas-mid); border-radius: 8px;
  padding: 10px 14px; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--prime); box-shadow: 0 0 0 3px var(--prime-dim);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-hp { display: none !important; }
.form-submit { width: 100%; padding: 13px; font-size: 1rem; font-weight: 800; margin-top: 8px; }
.form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; display: none; }
.form-msg.success { background: rgba(34,197,94,0.12); color: #15803d; display: block; }
.form-msg.error { background: rgba(239,68,68,0.1); color: #b91c1c; display: block; }

/* ── FOOTER ── */
footer { background: var(--base); border-top: 1px solid rgba(14,165,233,0.1); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-col h3 { font-size: 0.8rem; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.footer-tagline { font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; margin-top: 4px; line-height: 1.5; max-width: 220px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-contact-item a { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--prime); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--surface); border: 1px solid rgba(14,165,233,0.12);
  color: rgba(255,255,255,0.55); text-decoration: none; transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--prime-dim); color: var(--prime); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--prime); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--prime); color: #fff; font-family: inherit; font-weight: 800;
  font-size: 0.92rem; padding: 13px 22px; border-radius: 100px;
  text-decoration: none; box-shadow: 0 8px 28px rgba(14,165,233,0.38);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.sticky-cta:hover { background: var(--prime-hi); }

/* ── FOOTER ALIASES (match footer.php class names) ── */
.footer-brand { grid-column: span 1; }
.footer-brand p { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; line-height: 1.55; max-width: 220px; }
.footer-phone a, .footer-email { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 4px; transition: color 0.2s; }
.footer-phone a:hover { color: var(--prime); }
.social-icons { display: flex; gap: 10px; margin-top: 14px; }
.footer-contact-line { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-line svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--prime); }
.footer-contact-line a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--prime); }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--prime); margin-bottom: 14px; }
.btn-fill { display: inline-flex; align-items: center; background: var(--prime); color: #fff; font-family: inherit; font-weight: 700; font-size: 0.88rem; padding: 10px 18px; border-radius: 8px; text-decoration: none; margin-top: 12px; transition: background 0.2s; }
.btn-fill:hover { background: var(--prime-hi); color: #fff; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bar-inner > span:first-child { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── NAV LOGO ALIASES (match header.php class names) ── */
.logo-badge { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; font-size: 0.92rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.logo-text em { font-style: normal; font-size: 0.6rem; font-weight: 600; color: var(--prime); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-phone { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.75); text-decoration: none; margin-left: auto; transition: color 0.2s; white-space: nowrap; }
.nav-phone:hover { color: var(--prime); }
#mob-drop ul { list-style: none; }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 100px 24px 80px; }
.legal-wrap h1 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.legal-wrap .legal-date { font-size: 0.82rem; color: var(--muted); margin-bottom: 36px; font-family: 'Source Code Pro', monospace; }
.legal-wrap h2 { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 28px 0 10px; }
.legal-wrap p, .legal-wrap li { font-size: 0.92rem; color: rgba(255,255,255,0.58); line-height: 1.75; }
.legal-wrap ul, .legal-wrap ol { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap li { margin-bottom: 5px; }
.legal-wrap a { color: var(--prime); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .seo-layout { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
}
@media (max-width: 840px) {
  .hero-grid { grid-template-columns: 1fr; }
  .ledger-widget { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 560px) {
  .sticky-cta span { display: none; }
  .sticky-cta { border-radius: 50%; padding: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
