/* ==========================================================================
   The Lehigh Nexus Group — Design System
   Bold & Enterprise: deep navy, electric blue, gold accent
   ========================================================================== */

:root {
  --navy-950: #050b16;
  --navy-900: #0a1428;
  --navy-850: #0d1a33;
  --navy-800: #11213f;
  --navy-700: #17294a;
  --navy-600: #223763;

  --blue-600: #2f6fed;
  --blue-500: #3d7bff;
  --blue-400: #6f9dff;
  --blue-glow: rgba(63, 123, 255, 0.35);

  --gold-500: #d9a441;
  --gold-400: #e8bd63;
  --gold-300: #f3d38f;

  --slate-50: #f6f8fc;
  --slate-100: #eef1f8;
  --slate-200: #dfe4f0;
  --slate-400: #8792a8;
  --slate-600: #566079;

  --white: #ffffff;
  --ink: #0b1220;
  --text-muted-dark: #a7b2c9;
  --text-muted-light: #5b6478;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-lift: 0 20px 50px -20px rgba(5, 11, 22, 0.45);
  --shadow-card: 0 1px 2px rgba(11, 18, 32, 0.06), 0 12px 30px -14px rgba(11, 18, 32, 0.12);

  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

p { margin: 0 0 16px; color: var(--text-muted-light); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--dark p { color: var(--text-muted-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--slate { background: var(--slate-50); }

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 72%);
  pointer-events: none;
}

.center { text-align: center; }
.max-720 { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 12px 26px -10px rgba(217, 164, 65, 0.55);
}
.btn--gold:hover { box-shadow: 0 16px 32px -10px rgba(217, 164, 65, 0.7); }

.btn--outline-light {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07); }

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 12px 26px -12px rgba(10, 20, 40, 0.5);
}
.btn--navy:hover { background: var(--navy-800); }

.btn--outline-navy {
  border-color: var(--slate-200);
  color: var(--navy-900);
  background: var(--white);
}
.btn--outline-navy:hover { border-color: var(--navy-600); }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 13.5px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 11, 22, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-word {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.brand-word span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--text-muted-dark);
  font-weight: 600;
  font-size: 14.5px;
  transition: color .15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--gold-500);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
}
.header-phone small {
  color: var(--text-muted-dark);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 940px) {
  .nav-links { display: none; }
  .header-phone { display: none; }
  .header-support-btn { display: none; }
  .menu-toggle { display: block; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 32px;
  color: var(--text-muted-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a.active { color: var(--gold-400); }
.mobile-menu .btn { margin: 16px 32px; }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, #12213f 0%, var(--navy-950) 55%);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 100px;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  max-width: 850px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18.5px;
  max-width: 620px;
  color: var(--text-muted-dark);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin: 34px 0 56px;
  flex-wrap: wrap;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 920px;
}
.stat-cell {
  background: rgba(255,255,255,0.02);
  padding: 22px 20px;
}
.stat-cell .num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--gold-400);
}
.stat-cell .label {
  font-size: 12.5px;
  color: var(--text-muted-dark);
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Section headers */
.section-head { margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); }
.section-head p { font-size: 17px; max-width: 620px; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--blue-400); box-shadow: 0 20px 40px -18px rgba(47,111,237,0.25); }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-400);
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 14px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  padding: 5px 10px;
  border-radius: 999px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-600);
  margin-top: 6px;
}

/* Dark cards (used on navy sections) */
.card--dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--white);
}
.card--dark p { color: var(--text-muted-dark); }
.card--dark:hover { border-color: rgba(217,164,65,0.5); }

/* Service category blocks (Services page) */
.svc-category {
  padding: 72px 0;
  border-top: 1px solid var(--slate-200);
}
.svc-category:first-of-type { border-top: none; }
.svc-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.svc-head-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-head h2 { font-size: 28px; margin-bottom: 6px; }
.svc-head p { font-size: 15.5px; max-width: 640px; margin-bottom: 0; }

.svc-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .svc-items { grid-template-columns: 1fr; } }

.svc-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px;
}
.svc-item h4 { font-size: 16.5px; margin-bottom: 8px; }
.svc-item p { font-size: 14px; margin-bottom: 14px; }
.svc-item ul { display: flex; flex-direction: column; gap: 8px; }
.svc-item li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-item li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border-color: var(--navy-900);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}
.price-card--featured p { color: var(--text-muted-dark); }
.price-card--featured li { color: var(--white); }
.price-card--featured h3 { color: var(--white); }
.price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 20px; margin-bottom: 8px; }
.price-card > p { font-size: 14px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 22px;
}
.price-amount .num {
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 800;
}
.price-amount .per { font-size: 14px; color: var(--text-muted-light); font-weight: 600; }
.price-card--featured .per { color: var(--text-muted-dark); }
.price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.price-list li {
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-list li::before {
  content: "✓";
  color: var(--gold-500);
  font-weight: 800;
}

/* Tier cards (homepage pricing teaser) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}
.tier-card--pop { border-color: var(--gold-500); background: rgba(217,164,65,0.06); }
.tier-range {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 800;
  color: var(--gold-400);
  margin: 10px 0 4px;
}
.tier-unit { font-size: 13px; color: var(--text-muted-dark); margin-bottom: 18px; }

/* FAQ */
.faq { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--slate-200);
  padding: 22px 0;
}
.faq-item h4 { font-size: 16.5px; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; margin-bottom: 0; }

/* Service area list */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 700px) { .area-grid { grid-template-columns: 1fr; } }
.area-col h4 {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.area-col ul { display: flex; flex-direction: column; gap: 10px; }
.area-col li { font-size: 15px; font-weight: 600; color: var(--white); }

/* Steps (About approach) */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--slate-200);
}
.step:first-child { border-top: none; }
.step-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--gold-500);
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step p { margin: 0; color: var(--ink); font-weight: 600; padding-top: 6px; }

/* Values grid */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 14.5px; margin-bottom: 3px; }
.contact-info-item p { font-size: 14.5px; margin-bottom: 0; font-weight: 600; color: var(--ink); }
.contact-info-item span { display: block; font-size: 12.5px; color: var(--text-muted-light); font-weight: 500; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; font-size: 14.5px; border-top: 1px solid var(--slate-200); }
.hours-table td:first-child { font-weight: 700; color: var(--ink); }
.hours-table td:last-child { text-align: right; color: var(--text-muted-light); }

.form-card {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lift);
}
.form-card h3 { color: var(--white); font-size: 22px; }
.form-card > p { color: var(--text-muted-dark); font-size: 14.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.03em; color: var(--text-muted-dark); text-transform: uppercase; }
.field input, .field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); }
.form-note { font-size: 12.5px; color: var(--text-muted-dark); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  background: rgba(217,164,65,0.12);
  border: 1px solid rgba(217,164,65,0.4);
  color: var(--gold-300);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: 30px; }
.cta-banner p { margin-bottom: 0; max-width: 480px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--text-muted-dark);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14px; color: var(--text-muted-dark); }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }

/* Breadcrumb / page hero (inner pages) */
.page-hero {
  background: radial-gradient(120% 140% at 85% 0%, #12213f 0%, var(--navy-950) 55%);
  color: var(--white);
  padding: 76px 0 68px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(34px, 4.6vw, 52px); max-width: 760px; color: var(--white); }
.page-hero p { max-width: 600px; font-size: 17px; }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .cta-banner { padding: 44px 28px; }
}

/* ==========================================================================
   Corporate elevation layer — scroll reveal, hero mockup, logo bar,
   comparison table, industries grid, animated counters, footer newsletter
   ========================================================================== */

/* Top hairline accent under header */
.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 20%, var(--blue-500) 55%, transparent 85%);
  opacity: 0.55;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16,.8,.3,1), transform .8s cubic-bezier(.16,.8,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero split layout with dashboard mockup */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mockup { max-width: 480px; margin: 0 auto; }
}

.hero-mockup { position: relative; }

.dash-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  position: relative;
}
.dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dash-card-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.dash-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: dashPulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes dashPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.dash-card-time { font-size: 11.5px; color: var(--text-muted-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.dash-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.dash-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
}
.dash-metric-val {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--gold-400);
}
.dash-metric-label { font-size: 11.5px; color: var(--text-muted-dark); font-weight: 600; margin-top: 3px; }

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  padding: 0 2px;
}
.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
  opacity: 0.85;
}
.dash-bar--gold { background: linear-gradient(180deg, var(--gold-300), var(--gold-500)); opacity: 1; }

.dash-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-900);
  border: 1px solid rgba(217,164,65,0.4);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.55);
  animation: floatY 5s ease-in-out infinite;
}
.dash-float-badge svg { color: var(--gold-400); flex-shrink: 0; }
.dash-float-badge--1 { top: -18px; right: -18px; animation-delay: 0s; }
.dash-float-badge--2 { bottom: -16px; left: -22px; animation-delay: 1.4s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 640px) {
  .dash-float-badge { display: none; }
}

/* Platform / technology bar */
.platform-bar {
  padding: 44px 0;
  border-bottom: 1px solid var(--slate-200);
}
.platform-bar-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 28px;
}
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-800);
  transition: border-color .15s ease, transform .15s ease;
}
.logo-chip:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.logo-chip svg { color: var(--gold-500); flex-shrink: 0; }
.platform-bar--dark { border-bottom: 1px solid rgba(255,255,255,0.08); }
.platform-bar--dark .platform-bar-label { color: var(--text-muted-dark); }
.platform-bar--dark .logo-chip { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); color: var(--white); }
.platform-bar--dark .logo-chip:hover { border-color: var(--gold-500); }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 620px;
}
.compare-table th, .compare-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--slate-200);
}
.compare-table thead th {
  background: var(--navy-950);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: none;
}
.compare-table thead th.col-us { color: var(--gold-400); }
.compare-table td:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.compare-table td.col-us { background: rgba(217,164,65,0.06); font-weight: 600; color: var(--navy-900); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-icon-yes { color: var(--gold-500); font-weight: 800; }
.compare-icon-no { color: var(--slate-400); font-weight: 800; }

/* Industries grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: border-color .15s ease, transform .15s ease;
}
.industry-card:hover { border-color: var(--gold-500); transform: translateY(-3px); }
.industry-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.industry-card h4 { font-size: 16px; margin-bottom: 6px; }
.industry-card p { font-size: 13.5px; margin-bottom: 0; }

/* Footer newsletter */
.footer-newsletter { margin-top: 22px; }
.footer-newsletter form {
  display: flex;
  gap: 8px;
  max-width: 320px;
}
.footer-newsletter input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 13.5px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.32); }
.footer-newsletter input:focus { outline: none; border-color: var(--gold-500); }
.footer-newsletter button {
  flex-shrink: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .15s ease;
}
.footer-newsletter button:hover { background: var(--gold-400); }
.footer-newsletter-note { font-size: 12px; color: var(--text-muted-dark); margin-top: 10px; margin-bottom: 0; }
.footer-newsletter-success { font-size: 13px; color: var(--gold-300); font-weight: 600; margin-top: 10px; display: none; }
.footer-newsletter-success.show { display: block; }

/* Section divider accent */
.divider-accent {
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-500));
  margin: 0 auto 20px;
}
