/* ===================================================================
   LoadsNexus™ — Corporate Marketing CSS
   Brand: Dark Navy + Blue accent (separate from ShippingWish amber)
   Domain: loadsnexus.com (served via Vercel host-based routing)
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #060b14;
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --brand-blue: #3b82f6;
  --brand-blue-light: #60a5fa;
  --brand-blue-dark: #1d4ed8;
  --brand-teal: #06b6d4;
  --bg-void: #060b14;
  --bg-deep: #0a1220;
  --bg-card: #0f1a2e;
  --bg-card-hover: #152238;
  --border: rgba(255,255,255,0.08);
  --border-blue: rgba(59,130,246,0.3);
  --text-primary: #f0f6ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --wrap: 1200px;
  --nav-h: 68px;
}

/* ── Utility ───────────────────────────────────────────────────── */
.ln-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.ln-center { text-align: center; }
.ln-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand-blue-light);
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 18px;
}
.ln-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.ln-badge.carrier { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }
.ln-badge.broker  { background: rgba(139,92,246,0.15); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); }
.ln-badge.ai      { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.ln-badge.new     { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ───────────────────────────────────────────────────── */
.ln-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: var(--radius-md);
  border: none; cursor: pointer; transition: all 0.2s ease;
  text-decoration: none; white-space: nowrap;
}
.ln-btn-primary {
  background: var(--brand-blue); color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}
.ln-btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(59,130,246,0.45); }
.ln-btn-secondary {
  background: rgba(255,255,255,0.07); color: var(--text-primary);
  border: 1px solid var(--border);
}
.ln-btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
.ln-btn-ghost {
  background: transparent; color: var(--brand-blue-light);
  border: 1px solid rgba(59,130,246,0.35);
}
.ln-btn-ghost:hover { background: rgba(59,130,246,0.1); }
.ln-btn-carrier {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(16,185,129,0.3);
  font-size: 17px; padding: 16px 36px;
}
.ln-btn-carrier:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(16,185,129,0.4); }
.ln-btn-broker {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(139,92,246,0.3);
  font-size: 17px; padding: 16px 36px;
}
.ln-btn-broker:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(139,92,246,0.4); }
.ln-btn-xl { font-size: 17px; padding: 16px 36px; }
.ln-btn-sm { font-size: 13px; padding: 8px 18px; }
.ln-btn-block { width: 100%; }

/* ── Navigation ────────────────────────────────────────────────── */
.ln-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(6,11,20,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.ln-nav.scrolled { background: rgba(6,11,20,0.97); }
.ln-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
}
.ln-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 900; color: var(--text-primary);
  letter-spacing: -0.02em;
}
.ln-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff; letter-spacing: -0.05em;
  box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}
.ln-logo span { color: var(--brand-blue-light); }
.ln-nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.ln-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  padding: 6px 14px; border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}
.ln-nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.ln-nav-actions { display: flex; align-items: center; gap: 10px; }
.ln-nav-login-btn {
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  padding: 7px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); transition: all 0.15s ease;
  display: flex; align-items: center; gap: 6px; background: transparent;
}
.ln-nav-login-btn:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.2); }
.ln-powered {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
/* Mobile hamburger */
.ln-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.ln-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all 0.3s ease;
}
/* Mobile drawer */
.ln-mobile-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-deep); border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px; z-index: 999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.ln-mobile-drawer.open { display: block; }
.ln-mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.ln-mobile-links a {
  font-size: 15px; font-weight: 500; color: var(--text-secondary);
  padding: 10px 12px; border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.ln-mobile-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); border-color: var(--border); }
.ln-mobile-cta { display: flex; flex-direction: column; gap: 10px; }

/* ── Hero Section ──────────────────────────────────────────────── */
.ln-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59,130,246,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 60%, rgba(139,92,246,0.1) 0%, transparent 60%),
    var(--bg-void);
  position: relative; overflow: hidden;
}
.ln-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59,130,246,0.06) 0%, transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(6,11,20,0.8) 100%);
}
.ln-hero-inner { position: relative; z-index: 1; text-align: center; }
.ln-hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--text-primary); margin-bottom: 22px;
}
.ln-hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, #818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ln-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary); max-width: 620px; margin: 0 auto 48px;
  font-weight: 400; line-height: 1.7;
}

/* ── Role Cards (Carrier / Broker) ─────────────────────────────── */
.ln-role-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 700px; margin: 0 auto 48px;
}
.ln-role-card {
  border-radius: var(--radius-xl); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--border); transition: all 0.25s ease;
  position: relative; overflow: hidden; cursor: pointer;
  text-decoration: none; text-align: left;
}
.ln-role-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.3s ease;
}
.ln-role-card:hover { transform: translateY(-4px); }
.ln-role-card.carrier {
  background: linear-gradient(135deg, rgba(5,150,105,0.15) 0%, rgba(16,185,129,0.08) 100%);
  border-color: rgba(16,185,129,0.25);
}
.ln-role-card.carrier:hover { border-color: rgba(16,185,129,0.5); box-shadow: 0 20px 50px rgba(16,185,129,0.15); }
.ln-role-card.broker {
  background: linear-gradient(135deg, rgba(109,40,217,0.15) 0%, rgba(139,92,246,0.08) 100%);
  border-color: rgba(139,92,246,0.25);
}
.ln-role-card.broker:hover { border-color: rgba(139,92,246,0.5); box-shadow: 0 20px 50px rgba(139,92,246,0.15); }
.ln-role-icon { font-size: 2.5rem; line-height: 1; }
.ln-role-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.ln-role-card.carrier .ln-role-label { color: #34d399; }
.ln-role-card.broker .ln-role-label { color: #a78bfa; }
.ln-role-title { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
.ln-role-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.ln-role-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: var(--radius-md);
  transition: all 0.2s ease; width: fit-content;
}
.ln-role-card.carrier .ln-role-cta { background: rgba(16,185,129,0.2); color: #34d399; }
.ln-role-card.carrier:hover .ln-role-cta { background: rgba(16,185,129,0.35); }
.ln-role-card.broker .ln-role-cta { background: rgba(139,92,246,0.2); color: #a78bfa; }
.ln-role-card.broker:hover .ln-role-cta { background: rgba(139,92,246,0.35); }

/* ── Stats Bar ─────────────────────────────────────────────────── */
.ln-stats {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; border: 1px solid var(--border-blue);
  background: rgba(59,130,246,0.05);
  border-radius: var(--radius-lg); padding: 24px; max-width: 900px;
  margin: 0 auto;
}
.ln-stat {
  flex: 1; min-width: 160px; text-align: center; padding: 12px 20px;
}
.ln-stat:not(:last-child) { border-right: 1px solid var(--border); }
.ln-stat-num {
  font-size: 2rem; font-weight: 900; color: var(--text-primary);
  line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em;
}
.ln-stat-num span { color: var(--brand-blue-light); }
.ln-stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ── Section Base ──────────────────────────────────────────────── */
.ln-section { padding: 100px 0; }
.ln-section.alt { background: var(--bg-deep); }
.ln-section-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--brand-blue-light);
  margin-bottom: 14px;
}
.ln-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  color: var(--text-primary); line-height: 1.15; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.ln-section-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.7;
}

/* ── Feature Grid ──────────────────────────────────────────────── */
.ln-features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 56px;
}
.ln-feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  transition: all 0.25s ease;
}
.ln-feature-card:hover {
  border-color: var(--border-blue); background: var(--bg-card-hover);
  transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.ln-feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.ln-feature-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.ln-feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── Solutions Tabs ────────────────────────────────────────────── */
.ln-solutions { padding: 100px 0; }
.ln-tabs { display: flex; gap: 4px; background: var(--bg-card); border-radius: 14px; padding: 5px; margin-bottom: 48px; }
.ln-tab {
  flex: 1; padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 700; color: var(--text-muted);
  cursor: pointer; border: none; background: none;
  transition: all 0.2s ease; text-align: center;
}
.ln-tab.active { background: var(--bg-void); color: var(--text-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ln-tab-panel { display: none; }
.ln-tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ln-tab-feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.ln-tab-feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.5;
}
.ln-tab-feature-list li::before {
  content: '✓'; color: var(--brand-blue-light); font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.ln-panel-visual {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
}
.ln-mini-card {
  background: var(--bg-deep); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.ln-mini-card-label { font-size: 13px; color: var(--text-secondary); }
.ln-mini-card-value { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.ln-mini-card-value.green { color: #34d399; }
.ln-mini-card-value.red   { color: #f87171; }
.ln-mini-card-value.blue  { color: #60a5fa; }

/* ── Mobile Apps Section ───────────────────────────────────────── */
.ln-apps { padding: 100px 0; background: var(--bg-deep); }
.ln-apps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.ln-app-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.25s ease;
}
.ln-app-card:hover {
  border-color: var(--border-blue); transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.ln-app-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.ln-app-name { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
.ln-app-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.ln-store-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.ln-store-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 12px; color: var(--text-secondary);
  transition: all 0.2s ease;
}
.ln-store-btn:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.ln-store-btn .store-icon { font-size: 20px; flex-shrink: 0; }
.ln-store-btn .store-text { display: flex; flex-direction: column; gap: 1px; }
.ln-store-btn .store-sub { font-size: 10px; opacity: 0.7; }
.ln-store-btn .store-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.ln-store-btn.coming-soon { opacity: 0.6; cursor: default; }
.ln-coming-soon-pill {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(245,158,11,0.15); color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.3); border-radius: 999px;
  padding: 3px 10px; margin-top: 4px;
}

/* ── Pricing Section ───────────────────────────────────────────── */
.ln-pricing { padding: 100px 0; }
.ln-pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 56px; max-width: 880px; margin-left: auto; margin-right: auto;
}
.ln-price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 30px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
  transition: border-color 0.25s ease;
}
.ln-price-card.featured {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 1px var(--brand-blue), 0 20px 60px rgba(59,130,246,0.2);
}
.ln-price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 0; right: 0;
  background: var(--brand-blue); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 6px 16px;
  border-bottom-left-radius: var(--radius-sm);
}
.ln-price-name { font-size: 1rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.ln-price-amount {
  font-size: 3.2rem; font-weight: 900; color: var(--text-primary);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.ln-price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.ln-price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.ln-price-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.ln-price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-secondary);
}
.ln-price-list li::before { content: '✓'; color: #34d399; font-weight: 800; flex-shrink: 0; }

/* ── CTA Banner ────────────────────────────────────────────────── */
.ln-cta-banner {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(59,130,246,0.14) 0%, transparent 70%),
    var(--bg-void);
  text-align: center;
}
.ln-cta-banner .ln-section-title { max-width: 720px; margin: 0 auto 16px; }
.ln-cta-banner .ln-section-sub { margin: 0 auto 40px; }
.ln-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────────── */
.ln-footer {
  background: var(--bg-deep); border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.ln-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.ln-footer-brand .ln-logo { margin-bottom: 14px; }
.ln-footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
.ln-footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.ln-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ln-footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.15s ease; }
.ln-footer-col ul li a:hover { color: var(--text-primary); }
.ln-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-muted);
}
.ln-footer-powered {
  display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted);
}
.ln-footer-powered a { color: var(--brand-blue-light); font-weight: 600; }
.ln-footer-powered a:hover { color: var(--brand-blue); }

/* ── Divider / Glow Lines ──────────────────────────────────────── */
.ln-glow-line {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
  margin: 0;
}

/* ── Scroll Reveal ─────────────────────────────────────────────── */
.ln-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.ln-reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ln-nav-links, .ln-nav-actions .ln-btn, .ln-powered { display: none; }
  .ln-hamburger { display: flex; }
  .ln-nav-actions .ln-nav-login-btn { display: none; }

  .ln-role-grid { grid-template-columns: 1fr; }
  .ln-stats { flex-direction: column; gap: 0; }
  .ln-stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .ln-stat:last-child { border-bottom: none; }

  .ln-tab-panel.active { grid-template-columns: 1fr; }
  .ln-panel-visual { display: none; }

  .ln-footer-grid { grid-template-columns: 1fr 1fr; }
  .ln-footer-brand { grid-column: 1 / -1; }

  .ln-cta-actions { flex-direction: column; align-items: stretch; }
  .ln-cta-actions .ln-btn { text-align: center; }
}
@media (max-width: 480px) {
  .ln-hero-headline { font-size: 2.2rem; }
  .ln-footer-grid { grid-template-columns: 1fr; }
  .ln-tabs { flex-direction: column; }
  .ln-section { padding: 70px 0; }
}
