/* Critical Slenio Preloader Styles (Instant Viewport Block) */
.slenio-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.slenio-loader__backdrop {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 0;
  will-change: opacity;
}

.slenio-loader__logo {
  position: relative;
  z-index: 1;
  width: clamp(105px, 11vw, 145px);
  height: auto;
  overflow: visible;
  transform-origin: center;
  will-change: transform, opacity;
  visibility: hidden;
}

.slenio-loader__outline .draw-path {
  fill: none;
  stroke: url(#slenioLoaderGradient);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.slenio-loader__fill {
  fill: url(#slenioLoaderGradient);
  opacity: 0;
}

/* ==========================================================================
   SLENIO — MASTER BRAND DESIGN SYSTEM
   - Primary Brand Color: #07546A (Petroleum Teal)
   - Primary Accent Color: #F97316 (Vibrant Energy Orange)
   - Supporting Neon Accent: #00F2FE / #38BDF8 (Luminous Cyan & Ice Blue)
   - Main Background: Crisp White (#ffffff)
   - Alternate Sections: Light Glacier Blue (#f0f9fb / #f0fdfa)
   - High-Contrast Dark Sections: Deep Ocean Midnight (#042530 / #073847 / #07546A)
   - Typography: Space Grotesk (Headings), Syne (Editorial Accent), Plus Jakarta Sans (Body), JetBrains Mono (Tech/Specs)
   - Controlled 5px–20px Border Radii & Fluid Micro-Interactions
   ========================================================================== */

:root {
  /* Core Brand Palette */
  --brand-primary: #07546A;
  --brand-dark: #042530;
  --brand-deep: #031c24;
  --brand-surface: #073847;
  --brand-panel: #0a495c;
  --brand-light: #e6f4f8;

  /* Primary Orange Accents */
  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;
  --accent-orange-light: #fdba74;
  --accent-orange-subtle: rgba(249, 115, 22, 0.12);

  /* Supporting Cyan / Ice Blue Accents */
  --accent-cyan: #00f2fe;
  --accent-cyan-light: #0284c7;
  --accent-blue: #38bdf8;
  --cyan-glow: rgba(0, 242, 254, 0.35);

  /* Light Sections Palette */
  --bg-body: #ffffff;
  --bg-neutral: #f8fafc;
  --bg-glacier-mint: #f0f9fb;
  --bg-glacier-border: rgba(7, 84, 106, 0.16);
  --bg-glacier-card: #ffffff;

  /* High-Contrast Dark Sections Palette */
  --bg-dark-contrast: #042530;
  --bg-dark-surface: #073847;
  --bg-dark-card: rgba(7, 56, 71, 0.85);
  --bg-dark-card-hover: rgba(10, 73, 92, 0.95);
  --bg-dark-border: rgba(0, 242, 254, 0.22);
  --bg-dark-border-orange: rgba(249, 115, 22, 0.3);
  --bg-dark-border-subtle: rgba(7, 84, 106, 0.35);
  --bg-dark-footer: #031c24;

  /* Light Mode Text Hierarchy */
  --text-main: #07546A;
  --text-dark-navy: #092635;
  --text-body: #334155;
  --text-dim: #475569;
  --text-muted: #64748b;

  /* Dark Mode Text Hierarchy */
  --text-dark-white: #ffffff;
  --text-dark-primary: #f1f5f9;
  --text-dark-dim: #94a3b8;
  --text-dark-muted: #64748b;

  /* Borders */
  --border-light: 1px solid #e2e8f0;
  --border-light-subtle: 1px solid rgba(7, 84, 106, 0.08);
  --border-mint: 1px solid rgba(7, 84, 106, 0.16);
  --border-dark: 1px solid rgba(0, 242, 254, 0.2);
  --border-dark-subtle: 1px solid rgba(7, 84, 106, 0.4);

  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-editorial: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Space Mono', monospace;

  /* Compact Sleek Border Radii */
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Glassmorphism & Transitions */
  --glass-blur: blur(16px);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
}

body {
  background-color: var(--bg-body);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
  background: rgba(249, 115, 22, 0.28);
  color: var(--brand-dark);
}

/* Background Subtle Dot Grid */
.dot-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(rgba(7, 84, 106, 0.06) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Blobs */
.holo-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.orb-top {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(7, 84, 106, 0.18) 0%, rgba(0, 242, 254, 0.12) 100%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.16;
  animation: holoFloatTop 22s ease-in-out infinite alternate;
}

.orb-bottom {
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(7, 84, 106, 0.12) 100%);
  bottom: 8%;
  right: -100px;
  opacity: 0.14;
  animation: holoFloatBottom 26s ease-in-out infinite alternate;
}

@keyframes holoFloatTop {
  0% {
    transform: translateX(-50%) translate(0, 0) scale(1);
  }

  50% {
    transform: translateX(-50%) translate(30px, 20px) scale(1.05);
  }

  100% {
    transform: translateX(-50%) translate(-20px, 35px) scale(0.95);
  }
}

@keyframes holoFloatBottom {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-25px, -20px) scale(1.05);
  }

  100% {
    transform: translate(20px, -30px) scale(0.95);
  }
}

/* --------------------------------------------------------------------------
   Layout & Container Structure
   -------------------------------------------------------------------------- */
.skew-container {
  will-change: transform;
  transform-origin: center center;
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background-color: var(--bg-body);
  color: var(--text-body);
}

.section-mint-alt {
  background-color: var(--bg-glacier-mint);
  border-top: var(--border-mint);
  border-bottom: var(--border-mint);
  color: var(--text-body);
}

.section-dark-contrast {
  background-color: var(--bg-dark-contrast);
  background-image: radial-gradient(rgba(0, 242, 254, 0.03) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  color: var(--text-dark-primary);
  border-top: var(--border-dark-subtle);
  border-bottom: var(--border-dark-subtle);
}

/* Section Headers */
.sec-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.sec-header-left {
  max-width: 760px;
  margin-bottom: 48px;
}

.sub-cyan {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.section-dark-contrast .sub-cyan {
  color: var(--accent-orange);
}

.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-dark-navy);
  margin-bottom: 16px;
}

.section-dark-contrast .sec-title {
  color: var(--text-dark-white);
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.section-dark-contrast .sec-desc {
  color: var(--text-dark-dim);
}

/* Gradient Highlights */
.orange-gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyan-gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-dark-contrast .cyan-gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   Header (Frosted Glass with #07546A Brand Color)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--border-light-subtle);
  padding: 16px 0;
  transition: var(--transition-fast);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name {
  color: #07546A;
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .brand-logo-img {
  transform: rotate(8deg) scale(1.08);
}

.brand-dot {
  color: #f97316;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: #07546A;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #07546A;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  color: #07546A;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* --------------------------------------------------------------------------
   Buttons (No shadow/glow on orange buttons; clean lifting on hover)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
}

/* Primary Orange Button (Clean lift, NO shadow/glow) */
.btn-cyan-glow,
.btn-orange-glow {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: none !important;
}

.btn-cyan-glow:hover,
.btn-orange-glow:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
  color: #ffffff;
}

/* Outline Buttons */
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: var(--text-dark-white);
  box-shadow: none !important;
}

.btn-outline:hover {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.14);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(7, 84, 106, 0.3);
  color: #07546A;
  box-shadow: none !important;
}

.btn-outline-dark:hover {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.08);
  color: #ea580c;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: var(--radius-xs);
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Hero Section (Dark Contrast Background + Clean 2-Column Architecture)
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 90px 0 85px;
  position: relative;
  background-color: var(--bg-dark-contrast);
  background-image: radial-gradient(rgba(0, 242, 254, 0.03) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  color: var(--text-dark-primary);
  border-bottom: var(--border-dark-subtle);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.hero-copy {
  max-width: 660px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-dark-white);
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-dark-dim);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right Visual (Dot Morph Canvas - NO circular border behind dots) */
.hero-visual {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  justify-self: end;
  isolation: isolate;
  user-select: none;
  touch-action: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 47%, rgba(0, 242, 254, 0.14), transparent 50%),
    radial-gradient(circle at 42% 56%, rgba(249, 115, 22, 0.10), transparent 65%);
  filter: blur(32px);
  z-index: -2;
  pointer-events: none;
}

#dotMorphCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

.visual-caption {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  min-width: 140px;
  text-align: center;
  color: #e0f2fe;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  background: rgba(7, 56, 71, 0.85);
  padding: 4px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(0, 242, 254, 0.22);
}

.visual-caption span {
  display: block;
  will-change: transform, opacity;
}

/* --------------------------------------------------------------------------
   Impact Metrics Bento Grid Section (Crisp White Background)
   Modeled after User Reference Image
   -------------------------------------------------------------------------- */
.section-stats-bento {
  padding: 75px 0 65px;
  background-color: #ffffff;
  border-bottom: var(--border-light-subtle);
  position: relative;
}

.bento-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr 1fr;
  grid-template-rows: minmax(180px, auto) minmax(180px, auto);
  gap: 20px;
}

.bento-stat-card {
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(7, 84, 106, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}

.bento-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
  border-color: rgba(7, 84, 106, 0.25);
}

/* Bento Color Tints (Soft Pastel Blue & Peach) */
.bento-tint-blue {
  background: linear-gradient(145deg, #f2f7fd 0%, #eaf2fc 100%);
}

.bento-tint-blue:hover {
  background: linear-gradient(145deg, #e4effb 0%, #dce8f8 100%);
}

.bento-tint-peach {
  background: linear-gradient(145deg, #fef6f0 0%, #faeee4 100%);
}

.bento-tint-peach:hover {
  background: linear-gradient(145deg, #faece1 0%, #f4e2d4 100%);
}

/* Bento Grid Card Placements matching Reference Image */
.bento-stat-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.bento-stat-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 380px;
  justify-content: space-between;
}

.bento-stat-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.bento-stat-card:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}

.bento-stat-card:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}

.bento-stat-card:nth-child(6) {
  grid-column: 3 / 5;
  grid-row: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.bento-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.bento-val {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #07546A;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 3;
}

.bento-desc {
  font-size: 0.96rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
  max-width: 250px;
  position: relative;
  z-index: 3;
}

.bento-card-wide .bento-desc {
  max-width: 220px;
}

/* Bento Visual Graphics */
.bento-globe-visual {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bento-globe-svg {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  opacity: 0.85;
}

.bento-sphere-visual {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.bento-sphere-svg {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Marquee Strip
   -------------------------------------------------------------------------- */
.marquee-section {
  padding: 32px 0;
  background: #ffffff;
  border-bottom: var(--border-light-subtle);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.marquee-track-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: scrollMarquee 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 22px;
  border-radius: var(--radius-xs);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: #07546A;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
}

.client-pill:hover {
  border-color: #f97316;
  background: #f0f6f8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  color: #ea580c;
}

.client-pill i {
  width: 16px;
  height: 16px;
  color: #f97316;
}

/* --------------------------------------------------------------------------
   Services Section (Light Glacier Mint Theme - Grey/Blue Hover Tint)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid rgba(7, 84, 106, 0.14);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background-color: #ecf3f6;
  border-color: rgba(7, 84, 106, 0.35);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
  transform: translateY(-4px);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(7, 84, 106, 0.08);
  border: 1px solid rgba(7, 84, 106, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07546A;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: #07546A;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-num-badge {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: #f97316;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark-navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-checklist {
  list-style: none;
  border-top: 1px solid rgba(7, 84, 106, 0.12);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
}

.service-checklist li i {
  width: 16px;
  height: 16px;
  color: #f97316;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Engineering Protocols & Capability Matrix (Contrasted Dark Section #042530)
   -------------------------------------------------------------------------- */
.protocols-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.protocol-row {
  display: grid;
  grid-template-columns: 70px 1.2fr 2fr 1.2fr;
  align-items: center;
  gap: 24px;
  background: rgba(7, 56, 71, 0.75);
  border: 1px solid rgba(0, 242, 254, 0.16);
  border-radius: var(--radius-sm);
  padding: 24px 30px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.protocol-row:hover {
  background: rgba(10, 73, 92, 0.92);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  transform: translateX(4px);
}

.prot-num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: #f97316;
}

.prot-name {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark-white);
  letter-spacing: -0.01em;
}

.prot-desc {
  font-size: 0.92rem;
  color: var(--text-dark-dim);
  line-height: 1.55;
}

.prot-tech {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.prot-badge {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #fdba74;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Platforms Section (Light Mode #ffffff - Grey/Blue Hover Tint)
   -------------------------------------------------------------------------- */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card:hover {
  background-color: #ecf3f6;
  border-color: rgba(7, 84, 106, 0.35);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
  transform: translateY(-4px);
}

.wp-flagship-card {
  border-color: rgba(7, 84, 106, 0.35);
  background: linear-gradient(180deg, #f0f9fb 0%, #ffffff 40%);
}

.wp-flagship-card:hover {
  background: linear-gradient(180deg, #e4eff3 0%, #eaf2f5 100%);
}

.platform-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.platform-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.platform-badge.flagship {
  background: rgba(7, 84, 106, 0.12);
  color: #07546A;
  border: 1px solid rgba(7, 84, 106, 0.3);
}

.platform-badge.commerce {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.platform-badge.editorial {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.platform-symbol {
  font-size: 1.2rem;
  color: #f97316;
}

.platform-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark-navy);
  margin-bottom: 14px;
}

.platform-body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 26px;
}

.platform-specs-list {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-specs-list span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   Testimonials Section (Contrasted Dark Section - Grey/Black Shadows)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(7, 56, 71, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.16);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(10, 73, 92, 0.95);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f97316;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 1.02rem;
  color: var(--text-dark-primary);
  line-height: 1.65;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 242, 254, 0.14);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark-white);
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-dark-dim);
}

/* --------------------------------------------------------------------------
   FAQ Accordion (Light Glacier Mint Theme - Grey/Blue Hover Tint)
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(7, 84, 106, 0.16);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  background: #f0f6f8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-item.open {
  background: #ffffff;
  border-color: #f97316;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f97316;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 26px 22px;
  font-size: 0.96rem;
  color: var(--text-dim);
  line-height: 1.65;
  border-top: 1px solid rgba(7, 84, 106, 0.08);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --------------------------------------------------------------------------
   Let's Collaborate / Contact Section (Contrasted Dark Section #042530)
   -------------------------------------------------------------------------- */
.contact-box {
  background: rgba(7, 56, 71, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.16);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-direct-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cd-icon {
  width: 44px;
  height: 44px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
}

.cd-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  text-transform: uppercase;
}

.cd-val {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark-white);
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.f-input {
  background: rgba(3, 28, 36, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: var(--radius-xs);
  padding: 13px 16px;
  color: var(--text-dark-white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: var(--transition-fast);
  outline: none;
}

.f-input:focus {
  border-color: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
  background: rgba(7, 56, 71, 0.95);
}

.form-status-msg {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: #f97316;
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   Footer (Deep Midnight Ocean #031c24)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark-footer);
  background-image: radial-gradient(rgba(0, 242, 254, 0.06) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  color: var(--text-dark-dim);
  border-top: var(--border-dark-subtle);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-col .brand-name {
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-dark-dim);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-dark-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #f97316;
  transform: translateX(3px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--text-dark-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-dark-white);
}

/* --------------------------------------------------------------------------
   3D Tilt & Scroll Lift Physics Dynamics
   -------------------------------------------------------------------------- */
.card-3d-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  will-change: transform;
}

.glare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    justify-self: center;
    margin: 0 auto;
    width: min(100%, 460px);
  }

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

  .bento-stat-card:nth-child(1) {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-stat-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .bento-stat-card:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-stat-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-stat-card:nth-child(5) {
    grid-column: 2;
    grid-row: auto;
  }

  .bento-stat-card:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .protocol-row {
    grid-template-columns: 50px 1fr 1fr;
  }

  .prot-tech {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .bento-stats-grid {
    grid-template-columns: 1fr;
  }

  .bento-stat-card:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
  }

  .bento-stat-card:nth-child(6) {
    flex-direction: column;
    align-items: flex-start;
  }

  .bento-sphere-visual {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .services-grid,
  .platforms-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .protocol-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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