/* ================================================================
   STAFFKLOK — Landing Page Styles
   Color palette sourced from the app's design system:
     Primary Blue:   #0052FF  (hsl 221 100% 50%)
     Deep Navy:      #0A2540  (hsl 210 73% 15%)
     Indigo:         #6366f1
     Purple:         #a855f7
     Emerald:        #10b981
     Background:     #06101e  (near-black navy)
   Font: Plus Jakarta Sans (same as the app)
================================================================ */

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --blue:        #0052FF;
  --blue-light:  #69a5ff;
  --blue-dark:   #003acc;
  --navy:        #0A2540;
  --navy-dark:   #07111f;
  --ink:         #0b1220;
  --indigo:      #4f46e5;
  --purple:      #7c3aed;
  --emerald:     #10b981;
  --amber:       #f59e0b;
  --coral:       #fb7185;
  --white:       #ffffff;
  --off-white:   #f8fbff;
  --text-muted:  #90a3bc;
  --text-body:   #d7e2ef;
  --border:      rgba(195,213,235,0.14);
  --border-strong: rgba(221,232,246,0.22);
  --glass:       rgba(13,27,48,0.62);
  --glass-hover: rgba(21,42,70,0.78);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;

  --shadow-blue: 0 22px 70px rgba(0,82,255,0.24);
  --shadow-card: 0 24px 80px rgba(0,0,0,0.36);
  --shadow-soft: 0 18px 50px rgba(3,7,18,0.26);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html.nav-open,
body.nav-open {
  overflow: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(16,185,129,0.12) 0, transparent 26%),
    radial-gradient(circle at 88% 4%, rgba(0,82,255,0.18) 0, transparent 28%),
    linear-gradient(180deg, #08111f 0%, #0a1422 36%, #f5f8fc 36%, #eef4fa 100%);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 58%);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
  0%  { transform: scale(1);   opacity: 0.8; }
  100%{ transform: scale(1.8); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.98); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes counter-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

/* ── GRADIENT TEXT ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  color: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 14px 34px rgba(0, 82, 255, 0.32);
  letter-spacing: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 82, 255, 0.42);
  background: linear-gradient(135deg, #0047e0 0%, #5558e5 100%);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-full { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.06);
  transition: var(--transition);
  letter-spacing: -0.01em;
}

.btn-ghost:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.16);
  color: var(--white);
  transform: translateY(-1px);
}

.play-icon {
  font-size: 0.7rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(0,82,255,0.3);
  border-radius: 999px;
  background: rgba(0,82,255,0.12);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #0a2540;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: #62748a;
  line-height: 1.7;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(8, 17, 31, 0.82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 40px rgba(3,7,18,0.18);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-logo:hover .logo-icon { transform: rotate(-10deg) scale(1.05); }

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--blue-light); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); background: var(--glass); }

.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  transition: var(--transition);
  box-shadow: 0 12px 26px rgba(0,82,255,0.28);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,82,255,0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 112px 0 72px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent 0%, rgba(245,248,252,0.96) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  display: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,82,255,0.07) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-delay: -8s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,0.04) 0%, transparent 70%);
  top: 30%;
  left: 40%;
  animation-delay: -16s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(7,17,31,0.1) 0%, rgba(7,17,31,0.72) 54%, rgba(7,17,31,0.05) 100%),
    radial-gradient(circle at 74% 46%, rgba(245,158,11,0.18), transparent 24%),
    radial-gradient(circle at 80% 22%, rgba(16,185,129,0.12), transparent 20%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.hero-content { max-width: 590px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b8c7da;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: pulse-ring 2s ease-out infinite;
}

.hero-headline {
  font-size: clamp(2.65rem, 4.9vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.06rem;
  color: #a8b8cc;
  line-height: 1.68;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #d8e4f2;
  text-shadow: 0 1px 12px rgba(4,10,18,0.36);
}

.trust-icon {
  color: var(--emerald);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* Dashboard visual */
.hero-visual { position: relative; }

.dashboard-frame {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.75), rgba(105,165,255,0.35) 38%, rgba(16,185,129,0.35));
  padding: 1px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.34), 0 16px 80px rgba(0,82,255,0.22);
  animation: float 6s ease-in-out infinite;
}

.dashboard-frame-inner {
  border-radius: calc(var(--radius-lg) - 1px);
  overflow: hidden;
  background: var(--navy);
  position: relative;
}

.dashboard-screenshot {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-lg) - 1px);
}

.dashboard-overlay-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(249, 252, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(4,12,24,0.22);
}

.card-clocked { bottom: 16px; left: 16px; }
.card-time { top: 20px; right: 16px; }

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.card-dot.green { background: var(--emerald); box-shadow: 0 0 8px rgba(16,185,129,0.5); }

.card-label {
  font-size: 0.7rem;
  color: #607089;
  font-weight: 500;
  margin-bottom: 2px;
}

.card-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0e1a2d;
  letter-spacing: -0.02em;
}

/* ── TRUST & WORKFLOW STRIP ────────────────────────────────── */
.workflow-strip {
  position: relative;
  z-index: 2;
  padding: 34px 0 42px;
  background: #f5f8fc;
  border-top: 1px solid rgba(10,37,64,0.08);
}

.audience-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.audience-label {
  color: #60748c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.audience-pills,
.workflow-rail {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.audience-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(10,37,64,0.09);
  color: #24364d;
  font-size: 0.83rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.workflow-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(10,37,64,0.09);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 38px rgba(15,23,42,0.06);
}

.workflow-code {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding: 0 10px;
  border-radius: 7px;
  background: #07111f;
  color: #69a5ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.workflow-copy {
  color: #24364d;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(10,37,64,0.08);
  border-bottom: 1px solid rgba(10,37,64,0.08);
  background: #f5f8fc;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 48px;
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-light);
  display: inline-block;
  margin-left: 2px;
}

.stat-item > div:first-child,
.stat-item > .stat-number {
  display: inline;
}

.stat-item {
  position: relative;
}

.stat-item .stat-number,
.stat-item .stat-suffix {
  display: inline;
}

.stat-value-row {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: #60748c;
  font-weight: 500;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(10,37,64,0.1);
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features {
  padding: 120px 0;
  background: #f5f8fc;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  align-items: start;
}

.bento-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15,23,42,0.06);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,82,255,0.08) 0%, rgba(16,185,129,0.08) 46%, transparent 72%);
  opacity: 0;
  transition: var(--transition);
}

.bento-card:hover {
  border-color: rgba(0,82,255,0.22);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(15,23,42,0.11);
}

.bento-card:hover::before { opacity: 1; }

.bento-large {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,82,255,0.15), rgba(99,102,241,0.1));
  border: 1px solid rgba(0,82,255,0.2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.bento-card p {
  font-size: 0.9rem;
  color: #5b6f87;
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.feature-tag {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--blue-light);
  background: rgba(0,82,255,0.1);
  border: 1px solid rgba(0,82,255,0.2);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.01em;
}

.bento-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 20px;
  border: 1px solid rgba(10,37,64,0.08);
  opacity: 0.94;
  transition: var(--transition);
}

.bento-card:hover .bento-img { opacity: 1; }

/* Contractor auto-clock visual */
.bento-content-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.bento-text { flex: 1; min-width: 0; }

.auto-clock-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  flex-shrink: 0;
}

.mode-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7faff;
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.mode-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

.mode-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 2px;
}

.mode-time {
  font-size: 0.73rem;
  color: #60748c;
}

/* RBAC roles */
.roles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.role-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,82,255,0.25);
  color: #2a3b51;
  background: rgba(0,82,255,0.07);
  transition: var(--transition);
}

.role-pill:hover {
  background: rgba(0,82,255,0.18);
  color: #0a2540;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border-top: 1px solid rgba(10,37,64,0.08);
  border-bottom: 1px solid rgba(10,37,64,0.08);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
}

.step {
  position: relative;
  padding: 0 16px;
  text-align: center;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0,82,255,0.3), rgba(99,102,241,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.step-connector {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  z-index: 0;
}

.step-connector-last {
  background: linear-gradient(90deg, var(--blue), transparent 80%);
  opacity: 0.3;
}

.step-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: 0 16px 38px rgba(15,23,42,0.06);
}

.step-card:hover {
  border-color: rgba(0,82,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15,23,42,0.11);
}

.step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.18);
  color: var(--blue-light);
  border-radius: var(--radius-sm);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: rgba(0, 82, 255, 0.18);
  border-color: rgba(0, 82, 255, 0.35);
  color: var(--white);
}

.step-icon-svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.step-card p {
  font-size: 0.85rem;
  color: #5b6f87;
  line-height: 1.65;
}

/* ── WHO IT'S FOR ───────────────────────────────────────────── */
.who-its-for {
  padding: 120px 0;
  background: #f4f8fd;
}

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

.industry-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15,23,42,0.05);
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover {
  border-color: rgba(0,82,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(15,23,42,0.1);
}

.industry-card:hover::after { transform: scaleX(1); }

.industry-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.18);
  color: var(--blue-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon-wrapper {
  background: rgba(0, 82, 255, 0.18);
  border-color: rgba(0, 82, 255, 0.35);
  color: var(--white);
}

.industry-icon-svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.88rem;
  color: #5b6f87;
  line-height: 1.65;
}

/* ── COMPLIANCE ─────────────────────────────────────────────── */
/* ── ABOUT & FOUNDERS' VISION ───────────────────────────────── */
.about-section {
  padding: 120px 0;
  background:
    linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
  border-top: 1px solid rgba(10,37,64,0.08);
  border-bottom: 1px solid rgba(10,37,64,0.08);
  position: relative;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.about-content {
  max-width: 650px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #0a2540;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.about-lead {
  font-size: 1.15rem;
  color: #24364d;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-image-wrapper {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10,37,64,0.08);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.02);
}

.founders-letter {
  background: #ffffff;
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  box-shadow: 0 18px 46px rgba(15,23,42,0.08);
}

.founders-letter h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founders-letter p {
  font-size: 0.95rem;
  color: #445970;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.founders-letter p:last-of-type {
  margin-bottom: 24px;
}

.signature {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(10,37,64,0.1);
  padding-top: 16px;
}

.sig-name {
  font-weight: 700;
  color: #0a2540;
  font-size: 0.95rem;
}

.sig-title {
  font-size: 0.8rem;
  color: #60748c;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vision-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 14px 34px rgba(15,23,42,0.05);
}

.vision-card:hover {
  border-color: rgba(0, 82, 255, 0.3);
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.1);
}

.vision-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.18);
  color: var(--blue-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.vision-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.vision-card p {
  font-size: 0.85rem;
  color: #5b6f87;
  line-height: 1.6;
}

.compliance {
  padding: 120px 0;
  background:
    linear-gradient(135deg, #08111f 0%, #0b2440 55%, #10233a 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.compliance-text .section-eyebrow { text-align: left; }
.compliance-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.compliance .section-eyebrow {
  background: rgba(105,165,255,0.12);
  border-color: rgba(105,165,255,0.34);
}

.compliance .gradient-text {
  background: linear-gradient(135deg, #69a5ff 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compliance-text > p {
  color: #a8b8cc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compliance-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.compliance-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.compliance-list li strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.compliance-list li span {
  font-size: 0.83rem;
  color: #a8b8cc;
  line-height: 1.55;
}

/* Compliance card stack */
.compliance-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: var(--transition);
}

.comp-card:hover {
  border-color: rgba(0,82,255,0.3);
  transform: translateX(4px);
}

.comp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comp-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
}

.comp-badge.bcea  { background: rgba(0,82,255,0.15); color: var(--blue-light); }
.comp-badge.popia { background: rgba(99,102,241,0.15); color: #818cf8; }
.comp-badge.lra   { background: rgba(168,85,247,0.15); color: #c084fc; }
.comp-badge.sars  { background: rgba(16,185,129,0.15); color: #34d399; }

.comp-status {
  font-size: 0.78rem;
  font-weight: 600;
}

.comp-status.green { color: var(--emerald); }

.comp-card-body {
  font-size: 0.85rem;
  color: #b4c3d5;
  font-weight: 500;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
}

.cta-bg-orbs {
  display: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,82,255,0.15) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(0,82,255,0.3);
  border-radius: 999px;
  background: rgba(0,82,255,0.08);
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #0a2540;
  letter-spacing: 0;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content > p {
  font-size: 1rem;
  color: #5b6f87;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* CTA Form */
.cta-form {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(10,37,64,0.1);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: left;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(15,23,42,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #24364d;
  letter-spacing: 0.01em;
}

.form-input {
  padding: 12px 16px;
  background: #f8fbff;
  border: 1px solid rgba(10,37,64,0.12);
  border-radius: var(--radius-sm);
  color: #0a2540;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder { color: rgba(96,116,140,0.65); }

.form-input:focus {
  border-color: rgba(0,82,255,0.5);
  background: rgba(0,82,255,0.06);
  box-shadow: 0 0 0 3px rgba(0,82,255,0.12);
}

.form-select { cursor: pointer; }
.form-select option { background: #ffffff; color: #0a2540; }

.btn-primary.btn-full { margin-top: 8px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-top: 12px;
  animation: fadeUp 0.4s ease;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(96,116,140,0.8);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-note a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-spinner { animation: spin-slow 0.8s linear infinite; display: inline-block; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
  background:
    linear-gradient(180deg, #07111f 0%, #050b14 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 280px; }

.footer-logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-built {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-built strong { color: var(--white); }

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

.footer-nav-col h4 {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(148,163,184,0.6);
}

.footer-compliance-badges {
  display: flex;
  gap: 8px;
}

.footer-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}

/* ── MODERN SAAS COMPOSITION PASS ───────────────────────────── */
.hero .container {
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 54px;
}

.hero-content {
  max-width: 640px;
}

.hero-sub {
  max-width: 540px;
}

.hero-visual {
  align-self: center;
}

.dashboard-frame {
  background: transparent;
  padding: 0;
  border-radius: var(--radius-sm);
  box-shadow: none;
  animation: none;
}

.dashboard-frame::before {
  content: '';
  position: absolute;
  inset: 10% -7% -8% 13%;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(105,165,255,0.1)),
    radial-gradient(circle at 85% 16%, rgba(245,158,11,0.28), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(16,185,129,0.22), transparent 32%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transform: rotate(2deg);
}

.dashboard-frame-inner {
  overflow: visible;
  background: transparent;
  border-radius: var(--radius-sm);
}

.dashboard-screenshot {
  border-radius: var(--radius-sm);
  box-shadow: 0 34px 90px rgba(0,0,0,0.36);
}

.floating-card {
  padding: 10px 14px;
}

.card-time {
  top: 18px;
  right: -10px;
}

.card-clocked {
  bottom: 18px;
  left: -10px;
}

.features {
  padding: 136px 0 120px;
}

.features .section-header {
  margin-bottom: 72px;
}

.features-bento {
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.bento-card {
  grid-column: span 2;
  min-height: 100%;
  padding: 28px;
}

.bento-wide {
  grid-column: span 3;
}

.bento-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: 28px 0 44px;
  margin-bottom: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.bento-large::before {
  display: none;
}

.bento-large:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.bento-large > :not(.bento-img) {
  grid-column: 1;
}

.bento-large .bento-img {
  grid-column: 2;
  grid-row: 1 / span 5;
  margin: 0;
  max-height: none;
  min-height: 480px;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(15,23,42,0.16);
}

.bento-large .bento-icon {
  margin-bottom: 22px;
}

.bento-large h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.bento-large p {
  font-size: 1.02rem;
  line-height: 1.75;
}

.bento-icon,
.industry-icon-wrapper,
.vision-card-icon,
.step-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.about-image-wrapper {
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.about-image {
  border-radius: var(--radius-sm);
  box-shadow: 0 26px 70px rgba(15,23,42,0.14);
}

.cta-form,
.founders-letter,
.bento-card,
.industry-card,
.step-card,
.vision-card {
  border-radius: var(--radius-sm);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 52px; }
  .hero-content { max-width: 100%; }
  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large { grid-column: span 2; }
  .bento-wide  { grid-column: span 2; }

  .bento-card {
    grid-column: span 1;
  }

  .bento-large {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    padding: 0 0 28px;
  }

  .bento-large > :not(.bento-img),
  .bento-large .bento-img {
    grid-column: 1;
  }

  .bento-large .bento-img {
    grid-row: auto;
    min-height: 0;
  }

  .bento-wide {
    grid-column: 1 / -1;
  }

  .steps-track { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-connector { display: none; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }

  .compliance-inner { grid-template-columns: 1fr; gap: 48px; }

  .audience-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid { gap: 0; }
  .stat-item { padding: 16px 28px; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100dvh;
    padding: 104px 24px 40px;
    background:
      radial-gradient(circle at 50% 0%, rgba(0,82,255,0.24), transparent 36%),
      rgba(6, 16, 30, 0.98);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-menu li { width: min(100%, 320px); }
  .nav-link,
  .nav-cta {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-link {
    font-size: 1.08rem;
    padding: 12px 24px;
    color: #d8e4f2;
  }
  .nav-link:hover,
  .nav-link.active {
    background: rgba(255,255,255,0.08);
  }
  .nav-cta  { font-size: 1.05rem; padding: 14px 28px; }

  .hero { padding: 100px 0 64px; }
  .hero::after { display: none; }
  .hero-headline { font-size: 2.6rem; }
  .hero-visual { display: none; }

  .workflow-strip {
    padding: 28px 0 36px;
  }
  .audience-label {
    white-space: normal;
  }
  .audience-pills {
    gap: 8px;
  }
  .audience-pills span {
    min-height: 32px;
    font-size: 0.78rem;
  }
  .workflow-rail {
    grid-template-columns: 1fr;
  }
  .workflow-item {
    min-height: 64px;
  }

  .features-bento { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .bento-img { max-height: none; }
  .bento-card { grid-column: span 1; }
  .features { padding: 96px 0; }
  .bento-content-row { flex-direction: column; }
  .auto-clock-visual { min-width: auto; width: 100%; }

  .steps-track { grid-template-columns: 1fr; gap: 20px; }

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

  .about-vision-grid { grid-template-columns: 1fr; }
  .founders-letter { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav  { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); flex-wrap: nowrap; display: grid; }
  .stat-item { padding: 20px 16px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; width: 100%; }
  .hero-headline { font-size: 2.28rem; }
  .hero-trust { gap: 12px; }
  .trust-divider { display: none; }
  .footer-nav { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
