:root {
  --navy-deep: #060a1c;
  --navy: #0f1230;
  --navy-mid: #141840;
  --navy-light: #1e2460;
  --blue: #2d52e0;
  --blue-bright: #4169f5;
  --blue-dim: #1a3399;
  --blue-pale: rgba(45,82,224,0.12);
  --purple: #6b35c9;
  --purple-bright: #8b50f0;
  --teal: #0f9e72;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --white-04: rgba(255,255,255,0.04);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  border-bottom: 1px solid var(--white-08);
  background: rgba(6,10,28,0.9);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--ff-display); font-weight: 700; font-size: 20px;
  letter-spacing: 0.04em; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-mark {
  width: 30px; height: 30px; background: var(--blue); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.nav-logo .logo-fx { color: var(--blue-bright); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--white-70);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--blue-bright); }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 88px 48px 0;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--white-40);
  font-family: var(--ff-display); font-weight: 500;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--white-40); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white-70); }
.breadcrumb-sep { opacity: 0.3; }
.breadcrumb-current { color: var(--blue-bright); }

/* ── HERO ── */
.hero {
  padding: 48px 48px 80px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--blue-bright); opacity: 0.6;
}
.hero-headline {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(38px, 4.5vw, 60px); line-height: 1.0;
  letter-spacing: -0.01em; color: var(--white); margin-bottom: 20px;
}
.hero-headline .accent {
  background: linear-gradient(135deg, var(--blue-bright), var(--purple-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-body {
  font-size: 17px; color: var(--white-70); line-height: 1.7;
  margin-bottom: 32px; max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--ff-display); font-size: 16px; font-weight: 700;
  letter-spacing: 0.04em; text-decoration: none; transition: all 0.2s;
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white-70);
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--ff-display); font-size: 16px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none;
  border: 1px solid var(--white-15); transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--white-40); color: var(--white); }

/* Hero visual — module preview */
.hero-visual {
  position: relative;
}
.module-stack {
  display: flex; flex-direction: column; gap: 10px;
}
.module-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy-mid); border: 1px solid var(--white-08);
  border-radius: 10px; padding: 14px 18px;
  transition: border-color 0.3s;
  animation: slideIn 0.5s ease both;
}
.module-row:nth-child(1) { animation-delay: 0.1s; }
.module-row:nth-child(2) { animation-delay: 0.2s; }
.module-row:nth-child(3) { animation-delay: 0.3s; }
.module-row:nth-child(4) { animation-delay: 0.4s; }
.module-row:hover { border-color: var(--blue); }
.module-row.active { border-color: var(--blue); background: rgba(45,82,224,0.1); }
.mod-icon {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.mod-icon.blue { background: rgba(45,82,224,0.2); border: 1px solid rgba(45,82,224,0.3); }
.mod-icon.teal { background: rgba(15,158,114,0.2); border: 1px solid rgba(15,158,114,0.3); }
.mod-icon.amber { background: rgba(186,117,23,0.2); border: 1px solid rgba(186,117,23,0.3); }
.mod-icon.purple { background: rgba(107,53,201,0.2); border: 1px solid rgba(107,53,201,0.3); }
.mod-info { flex: 1; }
.mod-name {
  font-family: var(--ff-display); font-size: 15px; font-weight: 700;
  color: var(--white); letter-spacing: 0.02em; margin-bottom: 2px;
}
.mod-sub { font-size: 12px; color: var(--white-40); line-height: 1.4; }
.mod-status {
  font-size: 10px; font-weight: 600; font-family: var(--ff-display);
  letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px;
  border-radius: 20px; white-space: nowrap;
}
.status-live { background: rgba(15,158,114,0.2); color: #4dd9a8; border: 1px solid rgba(15,158,114,0.3); }
.status-dev { background: rgba(186,117,23,0.15); color: #f0c060; border: 1px solid rgba(186,117,23,0.25); }

.rfid-connector {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(45,82,224,0.1), rgba(107,53,201,0.1));
  border: 1px solid rgba(45,82,224,0.2); border-radius: 8px;
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--white-70); line-height: 1.4;
}
.rfid-connector strong { color: var(--blue-bright); font-weight: 500; }

/* ── MODULE SECTION ── */
.modules-section {
  background: var(--navy);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  padding: 80px 0;
}
.modules-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.modules-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--ff-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-bright);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(30px, 3.5vw, 46px); line-height: 1.05;
  color: var(--white); margin-bottom: 16px;
}
.section-body {
  font-size: 16px; color: var(--white-70); line-height: 1.7;
  max-width: 560px; margin: 0 auto;
}

/* Module tabs */
.mod-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--white-08);
  margin-bottom: 48px; overflow-x: auto;
}
.mod-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: var(--ff-display);
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--white-40); cursor: pointer; border: none;
  background: transparent; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.2s; white-space: nowrap;
}
.mod-tab:hover { color: var(--white-70); }
.mod-tab.active { color: var(--blue-bright); border-bottom-color: var(--blue-bright); }
.tab-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* Module content panels */
.mod-panel { display: none; }
.mod-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.panel-left .panel-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  font-family: var(--ff-display); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.tag-blue { background: rgba(45,82,224,0.15); color: var(--blue-bright); border: 1px solid rgba(45,82,224,0.25); }
.tag-teal { background: rgba(15,158,114,0.15); color: #4dd9a8; border: 1px solid rgba(15,158,114,0.25); }
.tag-amber { background: rgba(186,117,23,0.15); color: #f0c060; border: 1px solid rgba(186,117,23,0.25); }
.tag-purple { background: rgba(107,53,201,0.15); color: var(--purple-bright); border: 1px solid rgba(107,53,201,0.25); }

.panel-title {
  font-family: var(--ff-display); font-size: 30px; font-weight: 700;
  color: var(--white); margin-bottom: 14px; letter-spacing: 0.01em; line-height: 1.1;
}
.panel-body { font-size: 15px; color: var(--white-70); line-height: 1.7; margin-bottom: 28px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--white-70); line-height: 1.5;
}
.feature-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 2px;
}
.check-blue { background: rgba(45,82,224,0.2); color: var(--blue-bright); }
.check-teal { background: rgba(15,158,114,0.2); color: #4dd9a8; }
.check-amber { background: rgba(186,117,23,0.2); color: #f0c060; }
.check-purple { background: rgba(107,53,201,0.2); color: var(--purple-bright); }

/* Panel right — mock UI cards */
.panel-right {
  position: sticky; top: 88px;
}
.ui-card {
  background: var(--navy-deep); border: 1px solid var(--white-08);
  border-radius: 12px; overflow: hidden;
}
.ui-card-header {
  padding: 14px 18px; border-bottom: 1px solid var(--white-08);
  display: flex; align-items: center; gap: 8px;
}
.ui-dot { width: 8px; height: 8px; border-radius: 50%; }
.ui-dots { display: flex; gap: 5px; }
.ui-title { font-size: 12px; color: var(--white-40); font-family: var(--ff-display); font-weight: 600; letter-spacing: 0.06em; margin-left: 4px; }
.ui-body { padding: 18px; }

/* Ticketing UI mock */
.ticket-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.form-field {
  background: var(--white-04); border: 1px solid var(--white-08);
  border-radius: 6px; padding: 8px 12px;
}
.field-label { font-size: 10px; color: var(--white-40); font-family: var(--ff-display); font-weight: 600; letter-spacing: 0.08em; margin-bottom: 3px; }
.field-val { font-size: 13px; color: var(--white-70); }
.field-val.blue { color: var(--blue-bright); }
.ticket-types { display: flex; flex-direction: column; gap: 6px; margin: 4px 0; }
.ticket-type {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white-04); border: 1px solid var(--white-08);
  border-radius: 6px; padding: 10px 14px;
}
.ticket-type.featured { border-color: rgba(45,82,224,0.4); background: rgba(45,82,224,0.08); }
.tt-name { font-size: 13px; font-weight: 500; color: var(--white); font-family: var(--ff-display); }
.tt-price { font-size: 13px; color: var(--blue-bright); font-weight: 600; font-family: var(--ff-display); }
.tt-avail { font-size: 10px; color: var(--white-40); }
.mini-btn {
  background: var(--blue); color: var(--white); border: none;
  padding: 8px 16px; border-radius: 6px; font-family: var(--ff-display);
  font-size: 13px; font-weight: 700; cursor: pointer; width: 100%; margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Staff UI mock */
.staff-list { display: flex; flex-direction: column; gap: 6px; }
.staff-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--white-04); border: 1px solid var(--white-08);
  border-radius: 6px; padding: 8px 12px;
}
.staff-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; font-family: var(--ff-display);
  flex-shrink: 0;
}
.av-blue { background: rgba(45,82,224,0.3); color: var(--blue-bright); }
.av-purple { background: rgba(107,53,201,0.3); color: var(--purple-bright); }
.av-teal { background: rgba(15,158,114,0.3); color: #4dd9a8; }
.av-coral { background: rgba(216,90,48,0.3); color: #f0845d; }
.staff-info { flex: 1; }
.staff-name { font-size: 13px; font-weight: 500; color: var(--white); font-family: var(--ff-display); }
.staff-role { font-size: 11px; color: var(--white-40); }
.staff-badge {
  font-size: 10px; font-weight: 600; font-family: var(--ff-display);
  letter-spacing: 0.06em; padding: 2px 8px; border-radius: 20px;
}
.badge-clocked { background: rgba(15,158,114,0.2); color: #4dd9a8; }
.badge-break { background: rgba(186,117,23,0.2); color: #f0c060; }
.badge-off { background: var(--white-04); color: var(--white-40); }
.badge-new { background: rgba(45,82,224,0.2); color: var(--blue-bright); }
.timekeep-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,158,114,0.1); border: 1px solid rgba(15,158,114,0.2);
  border-radius: 6px; padding: 10px 14px; margin-top: 8px;
}
.tk-label { font-size: 12px; color: var(--white-70); }
.tk-time { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: #4dd9a8; }

/* Portal UI mock */
.portal-mock { display: flex; flex-direction: column; gap: 8px; }
.portal-header-mock {
  background: linear-gradient(135deg, rgba(107,53,201,0.2), rgba(45,82,224,0.2));
  border: 1px solid rgba(107,53,201,0.2); border-radius: 8px;
  padding: 14px 16px; text-align: center;
}
.portal-greeting { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--white); }
.portal-sub-mock { font-size: 11px; color: var(--white-40); margin-top: 2px; }
.portal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.portal-card-mini {
  background: var(--white-04); border: 1px solid var(--white-08);
  border-radius: 6px; padding: 10px 12px; text-align: center;
}
.pcard-icon { font-size: 18px; margin-bottom: 4px; }
.pcard-label { font-size: 11px; color: var(--white-70); font-family: var(--ff-display); font-weight: 600; }
.pcard-val { font-size: 13px; color: var(--blue-bright); font-weight: 600; font-family: var(--ff-display); }
.offer-strip {
  background: rgba(15,158,114,0.1); border: 1px solid rgba(15,158,114,0.2);
  border-radius: 6px; padding: 10px 14px; display: flex;
  align-items: center; justify-content: space-between;
}
.offer-text { font-size: 12px; color: var(--white-70); }
.offer-code {
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
  color: #4dd9a8; letter-spacing: 0.06em;
}

/* RFID UI Mock */
.rfid-scan {
  display: flex; flex-direction: column; gap: 8px;
}
.scan-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--white-08); margin-bottom: 4px;
}
.scan-title { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--white); }
.scan-live { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #4dd9a8; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4dd9a8; animation: pulse 1.5s infinite; }
.guest-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--white-04); border: 1px solid var(--white-08);
  border-radius: 6px; padding: 8px 12px;
}
.guest-row.just-in { border-color: rgba(45,82,224,0.4); background: rgba(45,82,224,0.08); animation: flashIn 0.4s ease; }
.guest-wristband {
  width: 28px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.wb-blue { background: rgba(45,82,224,0.25); }
.wb-purple { background: rgba(107,53,201,0.25); }
.wb-teal { background: rgba(15,158,114,0.25); }
.guest-name { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--white); }
.guest-meta { font-size: 11px; color: var(--white-40); }
.guest-time { font-size: 11px; color: var(--white-40); margin-left: auto; }
.throughput-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 4px;
}
.tp-metric {
  background: var(--white-04); border: 1px solid var(--white-08);
  border-radius: 6px; padding: 8px 10px; text-align: center;
}
.tp-val { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--blue-bright); line-height: 1; }
.tp-label { font-size: 10px; color: var(--white-40); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--ff-display); }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes flashIn { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:none} }

/* ── HOW IT WORKS ── */
.how-section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; position: relative; }
.how-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px; background: linear-gradient(to right, var(--blue), var(--purple));
  opacity: 0.3;
}
.how-step { text-align: center; padding: 0 20px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--ff-display); font-size: 20px; font-weight: 700;
  border: 1px solid var(--white-15); color: var(--white-50);
  background: var(--navy-mid); position: relative; z-index: 1;
}
.step-num.active { border-color: var(--blue); color: var(--blue-bright); background: rgba(45,82,224,0.1); }
.step-title { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-body { font-size: 13px; color: var(--white-40); line-height: 1.55; }

/* ── METRICS ── */
.metrics-section {
  background: var(--navy); border-top: 1px solid var(--white-08); border-bottom: 1px solid var(--white-08);
  padding: 80px 48px;
}
.metrics-inner { max-width: 1200px; margin: 0 auto; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.metric-card {
  background: var(--navy-deep); border: 1px solid var(--white-08);
  border-radius: 12px; padding: 28px 24px; text-align: center;
  transition: border-color 0.2s;
}
.metric-card:hover { border-color: var(--white-15); }
.metric-val {
  font-family: var(--ff-display); font-size: 44px; font-weight: 700;
  color: var(--blue-bright); line-height: 1; margin-bottom: 8px;
}
.metric-label { font-size: 14px; color: var(--white-70); line-height: 1.4; }
.metric-sub { font-size: 12px; color: var(--white-40); margin-top: 4px; }

/* ── PLANS ── */
.plans-section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.plan-card {
  border: 1px solid var(--white-08); border-radius: 12px;
  background: var(--navy); overflow: hidden; transition: border-color 0.2s;
}
.plan-card:hover { border-color: var(--white-15); }
.plan-card.featured { border-color: var(--blue); }
.plan-header { padding: 28px 24px 20px; border-bottom: 1px solid var(--white-08); }
.featured-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  font-family: var(--ff-display); letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--blue); color: var(--white); padding: 3px 10px;
  border-radius: 20px; margin-bottom: 12px;
}
.plan-name { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.plan-tagline { font-size: 13px; color: var(--white-40); line-height: 1.5; margin-bottom: 20px; }
.plan-price { font-family: var(--ff-display); font-size: 38px; font-weight: 700; color: var(--white); line-height: 1; }
.plan-price span { font-size: 16px; color: var(--white-40); font-weight: 400; }
.plan-price.custom { font-size: 24px; color: var(--blue-bright); }
.plan-features { padding: 20px 24px 24px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--white-70); margin-bottom: 10px; line-height: 1.5;
}
.pf-check { color: var(--blue-bright); flex-shrink: 0; font-size: 14px; margin-top: 1px; }
.pf-check.dim { color: var(--white-15); }
.plan-cta {
  display: block; text-align: center; padding: 11px 20px; margin: 0 24px 24px;
  border-radius: 7px; font-family: var(--ff-display); font-size: 15px;
  font-weight: 700; letter-spacing: 0.04em; text-decoration: none; transition: all 0.2s;
}
.cta-filled { background: var(--blue); color: var(--white); }
.cta-filled:hover { background: var(--blue-bright); }
.cta-outline { background: transparent; color: var(--white-70); border: 1px solid var(--white-15); }
.cta-outline:hover { border-color: var(--white-40); color: var(--white); }

/* ── CTA BANNER ── */
.cta-banner-wrap { padding: 0 48px 80px; }
.cta-banner {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(45,82,224,0.15), rgba(107,53,201,0.15));
  border: 1px solid rgba(45,82,224,0.3); border-radius: 16px;
  padding: 56px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta-title { font-family: var(--ff-display); font-size: 38px; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.cta-sub { font-size: 15px; color: var(--white-70); line-height: 1.6; max-width: 440px; }
.cta-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep); border-top: 1px solid var(--white-08); padding: 40px 48px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--ff-display); font-weight: 700; font-size: 17px; color: var(--white-40); letter-spacing: 0.04em; }
.footer-logo span { color: var(--blue-bright); }
.footer-copy { font-size: 12px; color: var(--white-15); }

/* ── ANIMATIONS ── */
@keyframes slideIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── FIXES ──────────────────────────────────────────────────────────────── */

/* Issue 1: SVG sizing inside icon containers */
.mod-icon svg { width: 18px; height: 18px; }
.mod-icon.blue svg   { stroke: var(--blue-bright); }
.mod-icon.teal svg   { stroke: var(--teal); }
.mod-icon.amber svg  { stroke: #e09040; }
.mod-icon.purple svg { stroke: var(--purple-bright); }
.guest-wristband svg { width: 14px; height: 14px; }
.wb-blue svg   { stroke: var(--blue-bright); }
.wb-purple svg { stroke: var(--purple-bright); }
.wb-teal svg   { stroke: var(--teal); }
.rfid-connector span svg { width: 16px; height: 16px; stroke: var(--blue-bright); }
.pcard-icon { font-size: 0; }

/* Issue 2: Remove horizontal line through step circles */
.how-steps::before { display: none; }

/* Issue 3: Footer text visibility on dark background */
.f-brand { color: var(--white-90) !important; }
.f-brand span { color: var(--blue-bright) !important; }
.f-links a { color: var(--white-50) !important; }
.f-links a:hover { color: var(--white) !important; }
.f-copy { color: var(--white-40) !important; }
/* Logo overrides */
.nav-brand img{height:48px !important;width:auto !important;}
.footer-logo img{filter:none !important;height:48px !important;width:auto !important;display:block;opacity:1;}
