/* main.css — WiseIntegrate */

/* =====================
   TOKENS
   ===================== */
:root {
  /* Colours */
  --bg:           #08080f;
  --bg-alt:       #0d0d1a;
  --bg-card:      rgba(37, 99, 235, 0.05);
  --bg-card-hover:rgba(37, 99, 235, 0.10);
  --border:       rgba(37, 99, 235, 0.18);
  --border-hover: rgba(96, 165, 250, 0.38);

  --blue-1:     #1d4ed8;
  --blue-2:     #1e3a8a;
  --blue-3:     #60a5fa;
  --blue-4:     #93c5fd;
  --blue-5:     #dbeafe;

  --text-primary:   #eff6ff;
  --text-secondary: rgba(239, 246, 255, 0.55);
  --text-muted:     rgba(239, 246, 255, 0.30);
  --text-accent:    #60a5fa;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  6rem 5vw;
  --section-max:  1120px;
  --nav-height:   68px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  /* Shadows / glows */
  --glow-sm:  0 0 16px rgba(37, 99, 235, 0.30);
  --glow-md:  0 0 28px rgba(37, 99, 235, 0.45);
  --glow-lg:  0 0 48px rgba(37, 99, 235, 0.55);

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;
}

/* =====================
   BASE
   ===================== */
html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none; /* hide default — we use custom cursor */
}

/* Show default cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  #cursor-orb, #cursor-moon { display: none; }
}

/* =====================
   CURSOR
   ===================== */
#cursor-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.16) 0%,
    rgba(29, 78, 216, 0.07) 45%,
    transparent 70%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  mix-blend-mode: screen;
  will-change: left, top;
}

#cursor-moon {
  position: fixed;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle, #dbeafe 0%, #60a5fa 55%, rgba(37, 99, 235,0.4) 100%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  box-shadow:
    0 0 6px 2px rgba(96, 165, 250, 0.65),
    0 0 18px 5px rgba(37, 99, 235, 0.30);
  transition: width 0.15s ease, height 0.15s ease, box-shadow 0.15s ease;
  will-change: left, top;
}

#cursor-moon.cursor-hover {
  width: 18px;
  height: 18px;
  box-shadow:
    0 0 10px 4px rgba(96, 165, 250, 0.80),
    0 0 28px 8px rgba(37, 99, 235, 0.45);
}

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-height);
  background: rgba(8, 8, 15, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.14);
}

.nav-inner {
  max-width: calc(var(--section-max) + 10vw);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo span { color: var(--blue-3); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
  cursor: pointer;
}
.nav-links a:hover { color: var(--blue-5); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-pwa-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  color: var(--blue-4);
  background: rgba(37, 99, 235, 0.10);
  border: 0.5px solid rgba(37, 99, 235, 0.32);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--t-fast);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-pwa-nav:hover {
  background: rgba(37, 99, 235, 0.20);
  border-color: rgba(96, 165, 250, 0.55);
}
.btn-pwa-nav .ti { font-size: 15px; }

.nav-toggle {
  display: none;
  color: var(--text-primary);
  font-size: 22px;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast);
  cursor: pointer;
}
.nav-toggle:hover { color: var(--blue-3); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(8, 8, 15, 0.97);
  border-bottom: 0.5px solid var(--border);
  z-index: 499;
  transform: translateY(-102%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(16px);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu-inner {
  padding: 1.5rem 5vw 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-link {
  display: block;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 0.85rem 0;
  border-bottom: 0.5px solid var(--border);
  transition: color var(--t-fast);
}
.mobile-link:hover { color: var(--blue-4); }

/* =====================
   PWA BANNER
   ===================== */
.pwa-banner {
  position: sticky;
  top: var(--nav-height);
  z-index: 490;
  width: 100%;
  background: rgba(37, 99, 235, 0.10);
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.22);
  padding: 0.75rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.pwa-banner-text {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 13px;
  color: var(--text-secondary);
}
.pwa-banner-text .ti { font-size: 17px; color: var(--blue-3); }
.btn-pwa-install {
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: #fff;
  border: none;
  padding: 0.5rem 1.35rem;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--glow-sm);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn-pwa-install:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}
.pwa-dismiss {
  color: var(--text-muted);
  font-size: 16px;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast);
  cursor: pointer;
}
.pwa-dismiss:hover { color: var(--text-secondary); }

/* =====================
   HERO
   ===================== */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 4rem) 5vw 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow:nth-child(1) {
  top: 45%;
  left: 50%;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  background: radial-gradient(circle,
    rgba(29, 78, 216, 0.22) 0%,
    rgba(37, 99, 235, 0.10) 38%,
    transparent 68%
  );
  transform: translate(-50%, -55%);
  animation: breathe 7s ease-in-out infinite;
}
.hero-glow-2 {
  top: 30%;
  left: 25%;
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  background: radial-gradient(circle,
    rgba(91, 33, 182, 0.14) 0%,
    transparent 62%
  );
  animation: breathe 9s ease-in-out infinite reverse;
}
.hero-glow-3 {
  bottom: 10%;
  right: 15%;
  width: min(300px, 50vw);
  height: min(300px, 50vw);
  background: radial-gradient(circle,
    rgba(37, 99, 235, 0.10) 0%,
    transparent 60%
  );
  animation: breathe 11s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blue-3);
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border: 0.5px solid rgba(37, 99, 235, 0.30);
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.08);
  margin-bottom: 2rem;
}
.eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-3);
  box-shadow: 0 0 5px rgba(96, 165, 250, 0.7);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-4), var(--blue-3), var(--blue-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subhead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 540px;
  margin: 0 auto 2.75rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   TICKER
   ===================== */
.ticker-band {
  width: 100%;
  padding: 1.2rem 0;
  background: rgba(37, 99, 235, 0.05);
  border-top: 0.5px solid rgba(37, 99, 235, 0.14);
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.14);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
}
.ticker-set {
  display: flex;
  flex-shrink: 0;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.58);
  padding: 0 2rem;
}
.ticker-sep {
  color: rgba(37, 99, 235, 0.40);
  font-size: 14px;
}

/* =====================
   SECTIONS
   ===================== */
.section {
  width: 100%;
  padding: var(--section-pad);
}
.section-alt {
  background: rgba(29, 78, 216, 0.04);
  border-top: 0.5px solid rgba(37, 99, 235, 0.10);
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.10);
}
.section-inner {
  max-width: var(--section-max);
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3.5rem;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blue-3);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 0.5px;
  background: var(--blue-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-4), var(--blue-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.76;
  max-width: 580px;
}

/* =====================
   CARDS
   ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.45), transparent);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.14);
  border: 0.5px solid rgba(37, 99, 235, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--blue-3);
  margin-bottom: 1.25rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.66;
}

/* =====================
   QUOTE BLOCK
   ===================== */
.quote-block {
  background: rgba(37, 99, 235, 0.07);
  border-left: 3px solid var(--blue-1);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--blue-5);
  line-height: 1.55;
  margin-bottom: 0.85rem;
  font-weight: 400;
}
.quote-source {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--blue-3);
  text-transform: uppercase;
  font-style: normal;
}

/* =====================
   SECTORS
   ===================== */
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.sector-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base), border-color var(--t-base);
}
.sector-card::after {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235,0.11), transparent 70%);
  pointer-events: none;
}
.sector-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.sector-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-3);
  padding: 0.3rem 0.85rem;
  border: 0.5px solid rgba(37, 99, 235, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.10);
  margin-bottom: 1.25rem;
}
.sector-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.sector-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}
.sector-list {
  margin-bottom: 1.75rem;
}
.sector-list li {
  font-size: 13px;
  color: rgba(239, 246, 255, 0.62);
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.10);
}
.sector-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-1);
  font-size: 12px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  color: var(--blue-3);
  letter-spacing: 0.02em;
  transition: color var(--t-fast), gap var(--t-fast);
  cursor: pointer;
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.30);
  padding-bottom: 1px;
}
.link-arrow:hover {
  color: var(--blue-4);
  gap: 0.65rem;
}

/* =====================
   PROCESS STEPS
   ===================== */
.steps {
  margin-top: 3rem;
}
.step {
  display: flex;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.10);
  align-items: flex-start;
  transition: background var(--t-fast);
}
.step:last-child { border-bottom: none; }
.step:hover .step-num {
  color: rgba(96, 165, 250, 0.42);
}

.step-num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.14);
  line-height: 1;
  min-width: 64px;
  letter-spacing: -0.04em;
  transition: color var(--t-base);
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}
.step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* =====================
   ASSESSMENT SECTION
   ===================== */
.assessment-section { padding: var(--section-pad); }

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.check-list {
  margin-top: 1.75rem;
}
.check-list li {
  font-size: 13px;
  color: rgba(239, 246, 255, 0.65);
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  border-bottom: 0.5px solid rgba(37, 99, 235, 0.10);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-1);
  font-size: 12px;
}

.assessment-card {
  background: rgba(8, 8, 15, 0.85);
  border: 0.5px solid rgba(37, 99, 235, 0.30);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.assessment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.65), transparent);
}
.assessment-card::after {
  content: '';
  position: absolute;
  top: -90px; right: -90px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13), transparent 68%);
  pointer-events: none;
}

.assessment-card-header { margin-bottom: 1.75rem; }
.assessment-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.assessment-card-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group { margin-bottom: 0.75rem; }
.form-group input {
  width: 100%;
  background: rgba(37, 99, 235, 0.06);
  border: 0.5px solid rgba(37, 99, 235, 0.20);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-group input::placeholder { color: rgba(239, 246, 255, 0.30); }
.form-group input:focus {
  border-color: rgba(96, 165, 250, 0.50);
  background: rgba(37, 99, 235, 0.10);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.voice-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 0.5px solid rgba(37, 99, 235, 0.26);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all var(--t-fast);
  background: rgba(37, 99, 235, 0.05);
  user-select: none;
}
.voice-option:hover,
.voice-option.active {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(96, 165, 250, 0.45);
}
.voice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-3);
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(96, 165, 250, 0.70);
  animation: pulse 2.2s ease-in-out infinite;
}
.voice-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: #fff;
  border: none;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--glow-sm);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}
.btn-primary:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 246, 255, 0.05);
  color: var(--blue-5);
  border: 0.5px solid rgba(37, 99, 235, 0.28);
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(96, 165, 250, 0.50);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 15px; }
.btn-sm { padding: 0.52rem 1.35rem; font-size: 13px; }
.btn-full { width: 100%; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #050508;
  border-top: 0.5px solid rgba(37, 99, 235, 0.12);
  padding: 4rem 5vw 2rem;
}
.footer-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--blue-3); }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(239, 246, 255, 0.45);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--t-fast);
  cursor: pointer;
}
.footer-col a:hover { color: var(--blue-4); }

.footer-bottom {
  max-width: var(--section-max);
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 0.5px solid rgba(37, 99, 235, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 12px;
  color: rgba(239, 246, 255, 0.18);
  letter-spacing: 0.04em;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(239, 246, 255, 0.25);
  transition: color var(--t-fast);
  cursor: pointer;
}
.footer-bottom-links a:hover { color: var(--blue-3); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .assessment-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --section-pad: 4rem 5vw; }
  .nav-links { display: none; }
  .btn-pwa-nav { display: none; }
  .nav-toggle { display: flex; }
  .step { gap: 1.25rem; }
  .step-num { font-size: 32px; min-width: 46px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .pwa-banner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .footer-links { grid-template-columns: 1fr; }
}

