/* ══════════════════════════════════════════════════════════════════════════
   EXPERT TAKEOFFS — PREMIUM ENTERPRISE STYLESHEET
   Token System → Layout → Sections → Components → Responsive
   ══════════════════════════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --navy: #060d16;
  --navy-mid: #0b1a2c;
  --navy-light: #122842;
  --navy-blue: #1b3a5f;

  --orange: #ff601c;
  --orange-dark: #e04c0d;
  --orange-glow: rgba(255, 96, 28, 0.14);
  --orange-light-glow: rgba(255, 96, 28, 0.06);

  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-50: #f8fafc;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-300: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-800: #1e293b;

  --text-body: #334155;
  --text-light: #64748b;

  --font-display: "Outfit", "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(6, 13, 22, 0.05);
  --shadow-card: 0 8px 30px rgba(6, 13, 22, 0.06);
  --shadow-heavy: 0 20px 50px rgba(6, 13, 22, 0.15);
  --shadow-glow: 0 10px 30px rgba(255, 96, 28, 0.2);

  --transition: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --section-pad: 110px;
}

/* ── RESET / BASE ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

/* ── SCROLL REVEAL (Activated via Intersection Observer) ─ */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── TYPOGRAPHY ───────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.55);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 64px;
  background-color: #edf3f9;
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244, 98, 31, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 24px rgba(244, 98, 31, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition); */
  background: black;
}

.navbar.scrolled {
  background: rgba(11, 27, 43, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-text strong {
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  transition: var(--transition);
}

.nav-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

/* Blueprint grid â€” the signature element */
.hero-blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.5) 1px, transparent 1px),
    linear-gradient(rgba(30, 58, 95, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.2) 1px, transparent 1px);
  background-size:
    80px 80px,
    80px 80px,
    20px 20px,
    20px 20px;
  background-position: -1px -1px;
  /* animation removed to disable motion */
  animation: none;
}

/* keyframes gridShift removed to prevent background animation */

/* Orange construction-tape diagonals */
.hero-tape {
  position: absolute;
  width: 180%;
  height: 4px;
  background: repeating-linear-gradient(90deg,
      var(--orange) 0,
      var(--orange) 40px,
      transparent 40px,
      transparent 70px);
  opacity: 0.22;
}

.hero-tape--1 {
  top: 28%;
  transform: rotate(-18deg) translateX(-20%);
}

.hero-tape--2 {
  top: 62%;
  transform: rotate(-18deg) translateX(-10%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(11, 27, 43, 0.82) 0%,
      rgba(11, 27, 43, 0.55) 60%,
      rgba(30, 58, 95, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  /* pulse animation removed */
  animation: none;
}

/* keyframes pulse removed to stop dot animation */

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 24px 0;
  max-width: 700px;
}

.stat-card {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  /* moving ping removed */
  animation: none;
}

/* keyframes scrollPing removed to stop scroll cue animation */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRUST BAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-bar {
  background: var(--navy-mid);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-logo-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

.trust-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Blueprint visual */
.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  height: 480px;
}

.about-img-inner {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-blueprint-card {
  width: 90%;
  height: 85%;
  background: #0d2140;
  border-radius: var(--radius-md);
  border: 1px solid rgba(100, 180, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.about-blueprint-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 160, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 160, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.blueprint-lines {
  position: absolute;
  inset: 20px;
}

.bp-line {
  position: absolute;
  background: rgba(100, 200, 255, 0.35);
}

.bp-h {
  top: 40%;
  left: 5%;
  right: 5%;
  height: 1px;
}

.bp-h2 {
  top: 70%;
  left: 10%;
  right: 10%;
  height: 1px;
}

.bp-v {
  left: 35%;
  top: 5%;
  bottom: 5%;
  width: 1px;
}

.bp-v2 {
  left: 65%;
  top: 10%;
  bottom: 10%;
  width: 1px;
}

.bp-box {
  position: absolute;
  border: 1px solid rgba(100, 200, 255, 0.4);
  border-radius: 2px;
}

.bp-box1 {
  top: 8%;
  left: 4%;
  right: 38%;
  bottom: 32%;
}

.bp-box2 {
  top: 8%;
  left: 38%;
  right: 4%;
  bottom: 32%;
}

.bp-box3 {
  top: 72%;
  left: 4%;
  right: 4%;
  bottom: 4%;
}

.blueprint-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(100, 200, 255, 0.5);
  text-transform: uppercase;
  font-family: var(--font-display);
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-heavy);
}

.accent-stat {
  display: flex;
  flex-direction: column;
}

.accent-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.accent-txt {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.4;
}

/* About text */
.about-lead {
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-body {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-pillars {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.pillar strong {
  font-size: 15px;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.pillar p {
  font-size: 14px;
  color: var(--gray-700);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  border-radius: 0 0 4px 0;
  transition: height 0.4s var(--transition);
}

.service-card:hover {
  border-color: rgba(244, 98, 31, 0.2);
  box-shadow: 0 8px 40px rgba(244, 98, 31, 0.1);
  transform: translateY(-4px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-card-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 8px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INDUSTRIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.industries {
  background: var(--off-white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.industry-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244, 98, 31, 0.12);
  transform: translateY(-4px);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-glow);
  color: var(--orange);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.industry-icon svg {
  width: 32px;
  height: 32px;
}

.industry-card:hover .industry-icon {
  background: var(--orange);
  color: var(--white);
}

.industry-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY CHOOSE US
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.why .section-title {
  color: var(--white);
}

.why .section-eyebrow {
  color: var(--orange);
}

.why-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 98, 31, 0.4);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--orange);
  margin-bottom: 16px;
}

.why-icon svg {
  width: 48px;
  height: 48px;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process {
  background: var(--white);
}

.process-timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(244, 98, 31, 0.1));
}

.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-left: 0;
  margin-bottom: 48px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-node {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(244, 98, 31, 0.1);
}

.process-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.process-content {
  padding-top: 16px;
}

.process-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 560px;
}

.process-cta {
  text-align: center;
  margin-top: 56px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOFTWARE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.software {
  background: var(--off-white);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.software-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}

.software-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(244, 98, 31, 0.1);
  transform: translateY(-3px);
}

.sw-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.software-card:hover .sw-logo {
  background: var(--orange);
  color: var(--white);
}

.software-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials {
  background: var(--white);
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-slide {
  display: none;
  background: var(--navy);
  padding: 56px 56px 48px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.testimonial-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      rgba(244, 98, 31, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: var(--orange);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.6;
}

.testimonial-slide blockquote {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.testi-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.testi-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PORTFOLIO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.portfolio {
  background: var(--off-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.portfolio-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-6px);
}

.portfolio-card-link:hover .portfolio-card {
  text-decoration: none;
}

.portfolio-img {
  position: relative;
  height: 220px;
  background: hsl(var(--hue), 50%, 22%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img-inner {
  width: 80%;
  opacity: 0.6;
}

.portfolio-img-inner svg {
  width: 100%;
  height: auto;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 43, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 10px 22px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.portfolio-info h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

.pf-value {
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 16px;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOFTWARE / IMAGES GALLERY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.software-card {
  background: var(--white);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.software-card img {
  max-width: 100%;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.software-caption {
  font-size: 12px;
  color: var(--gray-700);
  word-break: break-word;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1.5px solid var(--gray-100);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--off-white);
  color: var(--orange);
}

.faq-question[aria-expanded="true"] {
  color: var(--orange);
  background: rgba(244, 98, 31, 0.04);
}

.faq-arrow {
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 4px 28px 24px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg,
      var(--navy) 0%,
      #0f2a48 60%,
      var(--navy-mid) 100%);
  overflow: hidden;
  padding: 100px 0;
}

.cta-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 98, 31, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 98, 31, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-banner-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  background: var(--off-white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244, 98, 31, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* Info card */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--orange);
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--orange);
}

.contact-response-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.crb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.contact-response-badge strong {
  color: var(--white);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: #070f1a;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-contact-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ═══════════════════════════════════════════
   PREMIUM CUSTOM COMPONENTS & ANIMATIONS
═══════════════════════════════════════════ */

/* ── HERO FLOATING CAD GRAPHICS ── */
.hero-floating-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-floating-element--1 {
  top: 15%;
  right: 15%;
  animation: float1 8s ease-in-out infinite;
}

.hero-floating-element--2 {
  bottom: 25%;
  left: 8%;
  animation: float2 12s ease-in-out infinite;
}

.hero-floating-element--3 {
  bottom: 35%;
  right: 12%;
  animation: float1 10s ease-in-out infinite alternate;
}

.floating-badge-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 100px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.floating-badge-mini .badge-icon {
  color: var(--orange);
  font-weight: 800;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(12px, -12px) scale(1.04);
  }
}

/* ── CLIENT LOGOS MARQUEE ── */
.client-logos-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  margin-top: 16px;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.client-logos-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

.client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.client-logo-item:hover {
  color: rgba(255, 255, 255, 0.85);
}

.client-logo-svg {
  height: 28px;
  width: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-bar-header {
  text-align: center;
  margin-bottom: 12px;
}

/* ── SUCCESS METRICS DASHBOARD ── */
.metrics {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.standards-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.standard-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}

.standard-badge .badge-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.standard-badge .badge-desc {
  font-size: 13px;
  color: var(--text-light);
}

.metrics-dashboard {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.db-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.db-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

.db-status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.db-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.db-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}

.db-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 96, 28, 0.3);
}

.db-card-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.db-card-value-group {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.db-card-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.db-card-change {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.db-card-change.positive {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.progress-bar-container {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
  border-radius: 10px;
}

.db-card-footer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── BEFORE & AFTER BLUEPRINT SLIDER ── */
.takeoff-comparison {
  background: var(--white);
}

.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 1.666;
  /* Match 800x480 */
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-heavy);
  --position: 50%;
}

.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
  /* Will-change optimizes render speed of clip path during drag */
  will-change: clip-path;
}

.ba-blueprint-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ba-tag {
  position: absolute;
  bottom: 24px;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.ba-tag--before {
  right: 24px;
  background: rgba(13, 31, 51, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-200);
}

.ba-tag--after {
  left: 24px;
  background: rgba(255, 96, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--orange);
  z-index: 10;
  pointer-events: none;
}

.ba-handle-line {
  width: 2px;
  height: 100%;
  background: var(--orange);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px var(--orange-glow), var(--shadow-heavy);
}

.ba-range-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 15;
  cursor: ew-resize;
  -webkit-appearance: none;
}

/* ── TAKE-OFF COST CALCULATOR ── */
.calculator-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}

.calc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.calc-inputs-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-inputs-card .form-group {
  margin-bottom: 28px;
}

.calc-inputs-card .form-group:last-child {
  margin-bottom: 0;
}

.calc-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: var(--transition-fast);
}

.calc-input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.range-labels label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.range-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}

.calc-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 10px;
  outline: none;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.calc-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-limits {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 6px;
}

.calc-results-card {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-heavy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-results-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-light-glow) 0%, transparent 70%);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  z-index: 1;
}

.results-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.results-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 96, 28, 0.25);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  z-index: 1;
}

.result-tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.result-tile:hover {
  background: rgba(255, 255, 255, 0.05);
}

.result-tile-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.result-tile-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.result-tile-value.highlight {
  color: var(--orange);
}

.result-tile-value.success-color {
  color: #4ade80;
}

.result-tile-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.calc-cta-wrapper {
  z-index: 1;
}

.calc-cta-wrapper .btn {
  margin-bottom: 12px;
}

.calc-guarantee-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ── EXIT INTENT POPUP LEAD CAPTURE ── */
.exit-popup-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 22, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.exit-popup-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup-content {
  background: var(--white);
  width: 100%;
  max-width: 820px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  position: relative;
  transform: translateY(32px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.exit-popup-modal.active .exit-popup-content {
  transform: translateY(0) scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  color: var(--gray-300);
  transition: color var(--transition-fast);
  z-index: 10;
  line-height: 1;
}

.exit-popup-close:hover {
  color: var(--orange);
}

.exit-popup-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.exit-popup-visual {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exit-popup-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 96, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 96, 28, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ep-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 96, 28, 0.2);
  position: relative;
  z-index: 1;
}

.exit-popup-visual h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.exit-popup-visual p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ep-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.ep-bullets li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.exit-popup-form-side {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exit-popup-form-side h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.ep-form-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.ep-spam-disclaimer {
  display: block;
  font-size: 10px;
  color: var(--gray-300);
  margin-top: 14px;
  text-align: center;
}

/* ── FLOATING ACTION WIDGET & SCROLL TOP ── */
.floating-cta-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.floating-cta-widget.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(255, 96, 28, 0.35), var(--shadow-sm);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.floating-cta-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.03);
}

.floating-cta-icon {
  font-size: 16px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  z-index: 99;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, border-color var(--transition-fast), color var(--transition-fast);
}

.scroll-top-btn.visible {
  transform: translateY(0);
  opacity: 1;
}

.scroll-top-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.st-arrow {
  font-size: 18px;
  font-weight: 800;
}

/* Form error styles */
.invalid-input {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.error-msg {
  display: block;
  font-size: 11px !important;
  color: #ef4444 !important;
  font-weight: 600;
  margin-top: 4px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

  .about-img-frame {
    height: 340px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Metrics & Calculator responsive */
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .calc-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(11, 27, 43, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: 12px 16px;
    width: 100%;
  }

  .nav-cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* Hero */
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }

  .stat-card {
    min-width: 120px;
    padding: 12px 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
    gap: 12px;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .software-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Process */
  .process-line {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
  }

  .process-content {
    padding-top: 0;
  }

  /* Contact form */
  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Testimonial */
  .testimonial-slide {
    padding: 36px 28px 32px;
  }

  .testimonial-slide blockquote {
    font-size: 16px;
  }

  /* CTA banner */
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile style enhancements for metrics, calculator, and exit popup */
  .db-grid {
    grid-template-columns: 1fr;
  }

  .calc-results-card {
    padding: 28px 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .exit-popup-grid {
    grid-template-columns: 1fr;
  }

  .exit-popup-visual {
    display: none;
  }

  .exit-popup-form-side {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .software-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img-frame {
    height: 260px;
  }

  .about-accent-card {
    bottom: -16px;
    right: -8px;
    padding: 18px 20px;
  }
}

/* â”€â”€ Reduced motion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}