/*
Theme Name: FleetPulse Divi Child
Theme URI: https://fleetpulse.mariapps.com/
Description: A child theme for Divi
Author: Your Name
Author URI: https://fleetpulse.mariapps.com/
Template: Divi
Version: 1.0.0
Text Domain: divi-child
*/

/* ==========================================================================
   Global Styles
   ========================================================================== */
:root {
  --navy: #04121f;
  --deep: #072c46;
  --marine: #0a5e91;
  --green: #119b72;
  --aqua: #24c6ce;
  --ice: #beeff2;
  --cloud: #f4f8fa;
  --white: #ffffff;
  --slate: #617587;
  --warm: #f2a84a;
  --mx: -100px;
  --my: -100px;
  --px: 0;
  --py: 0;
}

* {
  box-sizing: border-box;
}
html {
  background: var(--navy);
}
header .et_pb_section, header .et_pb_row {
  padding: 0;
  margin: 0;
}
.loader-image {
  height: 75px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: #ffff;
  color: var(--white);
  font-family: "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, Arial, sans-serif !important;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-active {
  overflow: hidden;
}
button, input, textarea {
  font: inherit;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img, video {
  display: block;
}
::selection {
  color: var(--navy);
  background: var(--aqua);
}
:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
}

.cursor-orbit {
  position: fixed;
  z-index: 2000;
  left: var(--mx);
  top: var(--my);
  width: 18px;
  height: 18px;
  border: 1px solid rgba(36,198,206,.78);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .22s ease,height .22s ease,background .22s ease;
  box-shadow: 0 0 28px rgba(36,198,206,.18);
}
.cursor-orbit::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--aqua);
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
}
body:has(a:hover,button:hover) .cursor-orbit {
  width: 44px;
  height: 44px;
  background: rgba(36,198,206,.08);
}
.intro-sequence {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background: #020b13;
  transition: opacity .65s ease .12s, visibility .65s ease .12s;
  animation: introFallback 0s 2.5s forwards;
}
@keyframes introFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.intro-sequence .pulse-mark {
  width: min(620px,72vw);
  height: 50px;
  fill: none;
  stroke: var(--aqua);
  stroke-width: 1.4;
  stroke-dasharray: 800;
  animation: introPulse 1.3s cubic-bezier(.2,.8,.2,1) forwards;
}
.intro-sequence span {
  font-size: clamp(26px,3vw,46px);
  font-weight: 640;
  letter-spacing: -.04em;
  opacity: 0;
  animation: introName .7s ease .45s forwards;
}
.intro-sequence>i {
  width: min(620px,72vw);
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--aqua),transparent);
  transform: scaleX(0);
  animation: introHorizon 1s ease .65s forwards;
}
.intro-done {
  opacity: 0;
  visibility: hidden;
}
@keyframes introPulse {
  from {
    stroke-dashoffset: 800;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes introName {
  to {
    opacity: 1;
    transform: translateY(-5px);
  }
}
@keyframes introHorizon {
  to {
    transform: scaleX(1);
    opacity: .45;
  }
}

/* ==========================================================================
   Site Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  padding: 0 50px !important;
  z-index: 500;
  left: 50%;
/*   top: 20px; */
  transform: translateX(-50%);
  width: 100vw;
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 20px !important;
  background: rgb(8 29 45);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
  box-shadow: 0 18px 60px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.12);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
}
.brand-lockup {
  width: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
  padding: 6px 15px 6px 10px;
  overflow: hidden;
  border-radius: 17px;
}
.brand-symbol {
  position: relative;
  width: 250px;
/*   height: 46px; */
  height: 60px;	
  flex: none;
  overflow: hidden;
}
.brand-symbol img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 200px;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
  transition: transform .35s ease;
}
.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.brand-copy b {
  color: #07182c;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.brand-copy b span {
  color: #119b72;
}
.brand-copy small {
  margin-top: 6px;
  color: #667d90;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 12px 15px;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 560;
  white-space: nowrap;
  transition: color .3s ease,background .3s ease,box-shadow .3s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--aqua);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .3s ease,transform .3s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.105);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
  --tx: 0px;
  --ty: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 720;
  font-size: 15px;
  letter-spacing: -.01em;
  transform: translate(var(--tx),var(--ty));
  transition: transform .22s ease,background .3s ease,border .3s ease,box-shadow .3s ease,color .3s ease;
}
.button svg,
.mobile-demo svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform .3s ease;
}
.button:hover svg,
.mobile-demo:hover svg {
  transform: translateX(4px);
}
.button:active {
  transform: translate(var(--tx),var(--ty)) scale(.97);
}
.button-small {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 13px;
}
.nav-cta {
  color: #02111d;
  border-color: rgba(255,255,255,.75);
  background: linear-gradient(135deg,#fff,#c7f4f3);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(36,198,206,.16);
}
.nav-cta:hover {
  background: linear-gradient(135deg,#fff,#8ee5e5);
  box-shadow: 0 14px 42px rgba(36,198,206,.28);
}
.button-primary {
  color: #02111d;
  border-color: rgba(255,255,255,.3);
  background: linear-gradient(135deg,#7ce9e8,#21c4cc 58%,#19ad9a);
  box-shadow: 0 16px 48px rgba(36,198,206,.3),inset 0 1px 0 rgba(255,255,255,.55);
}
.button-primary:hover {
  background: linear-gradient(135deg,#a2f4f0,#37d2d6 58%,#22bfa6);
  box-shadow: 0 22px 64px rgba(36,198,206,.4);
}
.button-ghost {
  color: white;
  border-color: rgba(255,255,255,.38);
  background: linear-gradient(135deg,rgba(255,255,255,.14),rgba(255,255,255,.065));
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16),0 14px 40px rgba(0,0,0,.16);
}
.button-ghost:hover {
  border-color: rgba(190,239,242,.72);
  background: linear-gradient(135deg,rgba(190,239,242,.22),rgba(255,255,255,.09));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 18px 46px rgba(0,0,0,.22);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: white;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  background: #020b13;
  transition: opacity .4s ease,visibility .4s ease;
}
.mobile-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(2,11,19,.94),rgba(2,11,19,.65));
}
.menu-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.menu-open {
  visibility: visible;
  opacity: 1;
}
.menu-close,
.modal-close {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  font-size: 28px;
  cursor: pointer;
}
.mobile-menu-inner {
  position: relative;
  z-index: 3;
  min-height: 100%;
  padding: 12vh 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.mobile-menu-inner>button:not(.mobile-demo) {
  border: 0;
  background: transparent;
  padding: 9px 0;
  font-size: clamp(34px,10vw,62px);
  font-weight: 600;
  letter-spacing: -.05em;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity .42s ease calc(var(--i)*.08s),transform .42s ease calc(var(--i)*.08s);
}
.menu-open .mobile-menu-inner>button {
  opacity: 1;
  transform: none;
}
.mobile-demo {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--aqua);
  background: none;
  color: var(--aqua);
  font-weight: 700;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section (#overview)
   ========================================================================== */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}
.line-mask span {
  color: var(--marine);
}
.line-mask span em {
  background: linear-gradient(90deg, #33BFC4 0%, #2060AB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-video {
  width: 50%;
  height: auto;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-film,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-film {
  z-index: -5;
  object-fit: cover;
  transform: scale(1.015) translate(calc(var(--px)*-8px),calc(var(--py)*-5px));
  transition: transform 1s ease-out;
}
.hero-overlay {
  z-index: -4;
  background: linear-gradient(90deg,rgba(2,10,18,.94) 0%,rgba(2,11,19,.76) 42%,rgba(2,13,22,.22) 77%),linear-gradient(0deg,rgba(2,10,18,.9),transparent 52%,rgba(2,10,18,.2));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 80% 28%,rgba(242,168,74,.14),transparent 24%),linear-gradient(115deg,transparent 48%,rgba(36,198,206,.08),transparent);
  animation: heroLight 11s ease-in-out infinite alternate;
}
@keyframes heroLight {
  to {
    transform: translateX(3%);
    opacity: .68;
  }
}
.hero-route {
  position: absolute;
  z-index: 2;
  right: 4%;
  top: 31%;
  width: 40%;
  height: 31%;
  border-top: 1px solid rgba(36,198,206,.52);
  border-radius: 50%;
  transform: rotate(-7deg);
  opacity: .68;
}
.hero-route span {
  position: absolute;
  right: 2%;
  top: -8px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(36,198,206,.09),0 0 26px var(--aqua);
}
.hero-route i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  animation: routePoint 6s linear infinite;
}
.hero-route i:nth-of-type(2) {
  animation-delay: 2s;
}
.hero-route i:nth-of-type(3) {
  animation-delay: 4s;
}
@keyframes routePoint {
  0% {
    left: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.hero-content {
  width: 50%;
  padding: 80px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.eyebrow {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9px;
  font-weight: 760;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  opacity: 0;
  animation: heroEnter .7s ease 1.65s forwards;
}
.hero-eyebrow>span {
  width: 28px;
  height: 1px;
  background: var(--aqua);
}
.hero h1 {
  margin: 25px 0 24px;
  font-size: clamp(60px,7.1vw,80px);
  line-height: .91;
  letter-spacing: -.072em;
  font-weight: 540;
  color: #fff;
}
.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}
.line-mask>span {
  display: block;
  transform: translateY(115%);
  animation: headlineReveal 1s cubic-bezier(.16,1,.3,1) 1.7s forwards;
}
.line-mask:nth-child(2)>span {
  animation-delay: 1.84s;
}
.hero h1 em,
.data-film-content em,
.product-showcase-heading em,
.signal-content em,
.use-case-heading em,
.method-heading em,
.business-heading em,
.final-content em {
  font-family: Georgia,serif;
  font-weight: 400;
  color: var(--ice);
}
@keyframes headlineReveal {
  to {
    transform: none;
  }
}
.hero-content>p {
  max-width: 610px;
  margin: 0;
  color: rgba(244,248,250,.72);
  font-size: 15px;
  line-height: 1.72;
  opacity: 0;
  transform: translateY(18px);
  animation: heroEnter .8s ease 2.12s forwards;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroEnter .8s ease 2.28s forwards;
}
@keyframes heroEnter {
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-product-card {
  position: absolute;
  z-index: 5;
  right: 4.2vw;
  bottom: 11vh;
  width: min(410px,31vw);
  padding: 7px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 17px;
  background: rgba(4,18,31,.72);
  backdrop-filter: blur(11px);
  box-shadow: 0 35px 100px rgba(0,0,0,.36);
  transform: perspective(1100px) rotateY(-5deg) translate(calc(var(--px)*7px),calc(var(--py)*6px));
  transition: transform .7s ease;
  opacity: 0;
  animation: productCardIn .9s cubic-bezier(.16,1,.3,1) 2.45s forwards;
}
@keyframes productCardIn {
  from {
    opacity: 0;
    transform: perspective(1100px) rotateY(-5deg) translateY(28px);
  }
  to {
    opacity: 1;
  }
}
.mini-browser {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
}
.mini-browser>span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.mini-browser small {
  margin-left: 6px;
  color: rgba(255,255,255,.45);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.hero-product-card>img {
  width: 100%;
  border-radius: 11px;
}
.product-card-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 9px 5px;
  color: rgba(255,255,255,.56);
  font-size: 8px;
}
.product-card-status>i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #31c69d;
  box-shadow: 0 0 0 4px rgba(49,198,157,.12);
}
.product-card-status span {
  margin-left: auto;
  color: var(--aqua);
}
.hero-foot {
  position: absolute;
  z-index: 5;
  left: max(4.5vw,34px);
  bottom: 4.5vh;
  display: flex;
  gap: 28px;
}
.hero-foot span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.52);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.hero-foot i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
}
.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  color: rgba(255,255,255,.44);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 7px;
  cursor: pointer;
}
.scroll-cue>i {
  display: block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}
.scroll-cue b {
  display: block;
  width: 1px;
  height: 12px;
  background: var(--aqua);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% {
    transform: translateY(-13px);
  }
  100% {
    transform: translateY(38px);
  }
}

/* ==========================================================================
   Source Ribbon / Trust Bar
   ========================================================================== */
.source-ribbon {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 5vw;
  background: #f5fafb;
  color: var(--navy);
  border-bottom: 1px solid #dfe9eb;
}
.source-ribbon>span {
  color: var(--marine);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 760;
}
.source-ribbon>div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5f7787;
  font-size: 10px;
  white-space: nowrap;
}
.source-ribbon i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(17,155,114,.09);
}

/* ==========================================================================
   Scroll Reveal Utilities + Section Kicker Label
   ========================================================================== */
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 760;
}
.section-kicker>span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(97,117,135,.3);
  border-radius: 50%;
  color: var(--aqua);
}
.section-kicker.light {
  color: rgba(255,255,255,.48);
}

/* ==========================================================================
   Capabilities Section (#capabilities - data film + floating source icons)
   ========================================================================== */
.data-film-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020b13;
}
.data-film,
.data-film-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.data-film {
  object-fit: cover;
  opacity: .67;
  transform: scale(1.06);
}
.data-film-shade {
  background: linear-gradient(90deg,rgba(2,10,18,.98),rgba(2,11,19,.78) 46%,rgba(2,12,20,.34)),linear-gradient(0deg,rgba(2,10,18,.82),transparent 50%,rgba(2,10,18,.3));
}
.data-film-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin-left: max(6vw,38px);
  padding: 150px 0;
}
.data-film-content h2 {
  margin: 35px 0 26px;
  font-size: clamp(54px,6vw,94px);
  line-height: .95;
  letter-spacing: -.066em;
  font-weight: 530;
  color: #fff;
}
.data-film-content h2 em {
  display: block;
}
.data-film-content>p {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  font-size: 15px;
}
.transformation-steps {
  display: grid;
  grid-template-columns: auto 70px auto 70px auto;
  gap: 13px;
  align-items: center;
  margin-top: 50px;
}
.transformation-steps span {
  font-size: 10px;
  color: rgba(255,255,255,.68);
}
.transformation-steps span:last-child {
  color: var(--aqua);
  font-weight: 720;
}
.transformation-steps>i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}
.transformation-steps b {
  position: absolute;
  width: 40%;
  height: 1px;
  background: var(--aqua);
  animation: flowAcross 2.6s ease-in-out infinite;
}
@keyframes flowAcross {
  from {
    left: -40%;
  }
  to {
    left: 100%;
  }
}
.floating-sources {
  position: absolute;
  z-index: 4;
  right: 8vw;
  top: 50%;
  width: 40vw;
  height: 480px;
  transform: translateY(-50%);
}
@media (min-resolution: 1.5dppx) {
	.banner-heading {
    font-size: 40px !important;
    line-height: 1 !important;
    margin: 20px 0 15px 0 !important;
}
	.banner-subtext {    
    margin: 0 0 15px !important;
}
	
  .banner-blue-box {
    width: 80% !important;   
    }
	.banner-blue-text{
		font-size: 14px !important;
	}
	.banner-step-icon {
		width: 30px !important;
		height: 30px !important;
	}
	.banner-step span {
		font-size: 14px !important;
	}
	.site-header{
		padding-top: 0 !important;
	}
  .product-tab.active .tab-label {   
    line-height: 1 !important;
  }
	
  .floating-sources {
    right: 0;
	      width: 45vw !important;
  }
  .data-film-content {
    width: 50vw !important;
  }
}

.floating-sources span {
  width: 275px;
  position: absolute;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
  animation: sourceFloat 5s ease-in-out infinite;
}
.floating-sources span img {
  border: 1px solid #ffffff73;
  border-radius: 20px;
}
.floating-sources span:nth-child(1) {
  left: 0%;
  top: 0%;
}
.floating-sources span:nth-child(2) {
  right: 0;
  top: 4%;
  animation-delay: -1s;
}
.floating-sources span:nth-child(3) {
  right: 4%;
  top: 47%;
  animation-delay: -2s;
}
.floating-sources span:nth-child(4) {
  left: 1%;
  bottom: 24%;
  animation-delay: -3s;
}
.floating-sources span:nth-child(5) {
  right: 10%;
  bottom: -25%;
  animation-delay: -4s;
}
.floating-sources span:nth-child(6) {
  right: 60%;
  bottom: -20%;
  animation-delay: -5s;
}
@keyframes sourceFloat {
  50% {
    transform: translateY(-9px);
  }
}

/* ==========================================================================
   Signal Section (context/evidence chain)
   ========================================================================== */
.signal-section {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #03111e;
}
.signal-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  filter: hue-rotate(-18deg) saturate(.75);
  transform: scale(1.15);
}
.signal-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,rgba(4,18,31,.08),rgba(2,10,18,.86) 72%);
}
.signal-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  padding: 120px 30px;
  text-align: center;
}
.signal-content .section-kicker {
  justify-content: center;
}
.signal-content h2 {
  margin: 36px auto 50px;
  max-width: 1060px;
  font-size: clamp(52px,7vw,98px);
  line-height: .96;
  letter-spacing: -.066em;
  font-weight: 530;
  color: #fff;
}
.signal-content em {
  display: block;
}
.evidence-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.evidence-chain span {
  padding: 11px 15px;
  border: 1px solid rgba(190,239,242,.14);
  border-radius: 10px;
  background: rgba(4,18,31,.58);
  color: rgba(255,255,255,.65);
  font-size: 9px;
}
.evidence-chain i {
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg,rgba(36,198,206,.2),var(--aqua));
  position: relative;
}
.evidence-chain i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 12px var(--aqua);
}

/* ==========================================================================
   Use Case Section (not used on current homepage template)
   ========================================================================== */
.use-case-section {
  padding: 150px max(4.5vw,26px) 170px;
  background: #f4f8fa;
  color: var(--navy);
  overflow: hidden;
}
.use-case-heading {
  max-width: 1100px;
  margin: 0 auto 100px;
  text-align: center;
}
.use-case-heading .section-kicker {
  justify-content: center;
}
.use-case-heading h2 {
  margin: 34px 0 0;
  font-size: clamp(52px,6.5vw,90px);
  line-height: .97;
  letter-spacing: -.064em;
  font-weight: 530;
}
.use-case-heading em {
  color: var(--marine);
}
.cinematic-cases {
  max-width: 1380px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 85px;
}
.cinematic-case {
  min-height: 780px;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 55px;
  align-items: center;
}
.case-reverse {
  grid-template-columns: 1.24fr .76fr;
}
.case-reverse .case-film-wrap {
  order: 2;
}
.case-reverse .case-story {
  order: 1;
}
.case-film-wrap {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-radius: 30px;
  background: #04121f;
  box-shadow: 0 35px 100px rgba(4,18,31,.16);
}
.case-film {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s ease;
}
.cinematic-case:hover .case-film {
  transform: scale(1.055);
}
.portrait-film .case-film {
  object-position: center;
}
.case-film-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,rgba(2,10,18,.86),transparent 48%),linear-gradient(90deg,rgba(2,10,18,.15),transparent);
}
.case-media-label {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(4,18,31,.58);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.7);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.case-media-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 14px var(--aqua);
}
.case-number {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 28px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .16em;
}
.case-story>span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 8px;
  font-weight: 760;
}
.case-story>h3 {
  margin: 20px 0 22px;
  font-size: clamp(38px,4.4vw,63px);
  line-height: 1;
  letter-spacing: -.057em;
  font-weight: 540;
}
.case-story>p {
  max-width: 650px;
  margin: 0;
  color: #617789;
  line-height: 1.75;
  font-size: 13px;
}
.case-screen {
  position: relative;
  margin-top: 38px;
  padding: 6px;
  border: 1px solid #d9e4e7;
  border-radius: 16px;
  background: #e8eef0;
  box-shadow: 0 25px 70px rgba(4,18,31,.12);
  overflow: hidden;
  transform: perspective(1200px) rotateX(1deg);
}
.case-screen-bar {
  height: 27px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
}
.case-screen-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #becbd0;
}
.case-screen-bar small {
  margin-left: 7px;
  color: #718690;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.case-screen>img {
  width: 100%;
  border-radius: 9px;
}

/* ==========================================================================
   How It Works Section (#how-it-works)
   ========================================================================== */
.method-section {
  position: relative;
  padding: 160px max(4.5vw,28px);
  overflow: hidden;
  background: white;
  color: var(--navy);
}
.method-orbit {
  position: absolute;
  right: -13vw;
  top: -17vw;
  width: 52vw;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  opacity: .13;
  filter: saturate(.6) hue-rotate(20deg);
}
.method-heading {
  position: relative;
  max-width: 1020px;
  margin: 0 auto 85px;
  text-align: center;
}
.method-heading .section-kicker {
  justify-content: center;
}
.method-heading h2 {
  margin: 34px 0 22px;
  font-size: clamp(52px,6.7vw,94px);
  line-height: .95;
  letter-spacing: -.066em;
  font-weight: 530;
}
.method-heading em {
  color: var(--marine);
}
.method-heading>p {
  color: #617789;
  font-size: 15px;
}
.method-visual {
  position: relative;
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  gap: 36px;
  align-items: center;
}
.method-image-frame {
  padding: 8px;
  border: 1px solid #dbe5e8;
  border-radius: 23px;
  background: #eef3f4;
  box-shadow: 0 35px 100px rgba(4,18,31,.1);
  overflow: hidden;
}
.method-image-frame img {
  width: 100%;
  border-radius: 15px;
}
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.method-steps article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 24px;
  border: 1px solid #0a5e91;
  border-radius: 16px;
  background: #f8fbfb;
  transition: transform .35s,border .35s,box-shadow .35s;
}
.method-steps article:hover {
  transform: translateX(-8px);
  border-color: rgba(17,155,114,.28);
  box-shadow: 0 16px 45px rgba(4,18,31,.07);
}
.method-steps article>span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4f5f0;
  color: var(--marine);
  font-size: 8px;
}
.method-steps strong {
  font-size: 17px;
}
.method-steps p {
  margin: 7px 0 0;
  color: #657b89;
  font-size: 11px;
  line-height: 1.55;
}

/* ==========================================================================
   Operations Film Section (not used on current homepage template)
   ========================================================================== */
.operations-film {
  display: grid;
  grid-template-columns: 1.65fr .7fr;
  min-height: 760px;
  background: #020b13;
}
.operations-panel {
  position: relative;
  overflow: hidden;
}
.operations-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,rgba(2,10,18,.9),transparent 62%);
}
.operations-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.operations-panel:hover .operations-video {
  transform: scale(1.04);
}
.operations-panel>div {
  position: absolute;
  z-index: 3;
  left: 7%;
  right: 7%;
  bottom: 8%;
}
.operations-panel span {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 8px;
}
.operations-panel h2 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(38px,4.7vw,70px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 530;
  color: #fff;
}
.operations-data {
  border-left: 1px solid rgba(255,255,255,.1);
}
.operations-data h2 {
  font-size: clamp(32px,3.5vw,52px);
}

/* ==========================================================================
   Business Value Section (benefits list)
   ========================================================================== */
.business-value {
  position: relative;
  padding: 150px max(5vw,30px);
  overflow: hidden;
  background: #04121f;
}
.business-value::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: -15vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(36,198,206,.07);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9vw rgba(36,198,206,.016);
}
.business-heading {
  position: relative;
  margin-bottom: 90px;
}
.business-heading h2 {
  margin: 34px 0 0;
  font-size: clamp(50px,6.5vw,90px);
  line-height: .97;
  letter-spacing: -.064em;
  font-weight: 530;
  color: #fff;
  text-align: center;
}
.business-heading em {
  display: block;
}
.benefit-list {
  position: relative;
  max-width: 1380px;
  margin: auto;
  border-top: 1px solid rgba(255,255,255,.12);
}
.benefit-list article {
  display: grid;
  grid-template-columns: 65px 1fr .8fr 45px;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: padding .35s,background .35s;
}
.benefit-list article:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: linear-gradient(90deg,rgba(36,198,206,.06),transparent);
}
.benefit-list article>span {
  color: rgba(255,255,255,.28);
  font-size: 0;
}
.benefit-list h3 {
  margin: 0;
  font-size: clamp(25px,3vw,43px);
  letter-spacing: -.045em;
  font-weight: 520;
  color: #fff;
}
.benefit-list p {
  margin: 0;
  color: rgba(255,255,255,.46);
  line-height: 1.6;
  font-size: 12px;
}
.benefit-list article>i {
  display: none !important;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  font-style: normal;
  transition: background .3s,transform .3s;
}
.benefit-list article>i svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.benefit-list article:hover>i {
  background: var(--aqua);
  color: var(--navy);
  transform: translateX(4px);
}

/* ==========================================================================
   Final CTA Section (#contact)
   ========================================================================== */
.final-cta {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 150px 30px;
  overflow: hidden;
  isolation: isolate;
}
.final-film,
.final-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.final-film {
  z-index: -3;
  object-fit: cover;
}
.final-shade {
  z-index: -2;
  background: linear-gradient(0deg,rgba(2,10,18,.95),rgba(2,13,22,.33) 58%,rgba(2,10,18,.48)),linear-gradient(90deg,rgba(2,10,18,.5),transparent 65%);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 75% 24%,rgba(242,168,74,.16),transparent 22%);
}
.destination-route {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 23%;
  height: 120px;
  border-top: 1px solid rgba(36,198,206,.55);
  border-radius: 50%;
  transform: rotate(-3deg);
}
.destination-route span {
  position: absolute;
  right: 2%;
  top: -8px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(36,198,206,.08),0 0 30px rgba(36,198,206,.5);
}
.destination-route i {
  position: absolute;
  left: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  animation: routePoint 7s linear infinite;
}
.final-content {
  position: relative;
  max-width: 1100px;
  text-align: center;
}
.final-content h2 {
  margin: 28px 0 25px;
  font-size: clamp(58px,8vw,90px);
  line-height: .91;
  letter-spacing: -.07em;
  font-weight: 530;
  color: #fff;
}
.final-content em {
  display: block;
}
.final-content>p {
  max-width: 700px;
  margin: 0 auto;
  color: #ffff;
  font-size: 16px;
  line-height: 1.7;
}
.final-content>div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  position: relative;
  padding: 70px max(5vw,30px) 28px;
  overflow: hidden;
  background: #020b13;
  border-top: 1px solid rgba(190,239,242,.08);
}
.footer-main {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}
.footer-brand>img {
  width: 176px;
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  padding: 7px 0;
}
.footer-brand p {
  max-width: 270px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.6;
}
.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.footer-main nav a {
  position: relative;
  width: max-content;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}
.footer-main nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--aqua);
  transition: right .3s;
}
.footer-main nav a:hover {
  color: white;
}
.footer-main nav a:hover::after {
  right: 0;
}
.mariapps-brand {
  text-align: right;
}
.mariapps-brand span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.35);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.mariapps-brand img {
  width: 120px;
  height: 82px;
  object-fit: contain;
  margin: auto;
}
.footer-bottom {
  max-width: 1320px;
  margin: 60px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.28);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ==========================================================================
   Demo Request Modal Popup
   ========================================================================== */
.pulse-mark {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease,visibility .35s ease;
}
.modal-open {
  visibility: visible;
  opacity: 1;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(1,8,13,.78);
  backdrop-filter: blur(11px);
  cursor: default;
}
.demo-modal {
  position: relative;
  width: min(760px,calc(100% - 30px));
  max-height: calc(100svh - 30px);
  overflow: auto;
  padding: 54px;
  border-radius: 28px;
  background: #f7fafb;
  color: var(--navy);
  box-shadow: 0 50px 150px rgba(0,0,0,.48);
  transform: translateY(30px) scale(.98);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.modal-open .demo-modal {
  transform: none;
}
.demo-modal .modal-close {
  color: var(--navy);
  border-color: rgba(4,18,31,.12);
  background: rgba(4,18,31,.03);
}
.demo-modal h2 {
  margin: 16px 0 10px;
  font-size: clamp(36px,5vw,58px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 700;
}
.demo-modal>p {
  color: var(--slate);
  line-height: 1.6;
  max-width: 540px;
}
.demo-modal form {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.demo-modal label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-modal input,
.demo-modal textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d4e0e4;
  border-radius: 10px;
  background: white;
  color: var(--navy);
  outline: none;
  resize: vertical;
  transition: border .25s,box-shadow .25s;
}
.demo-modal input:focus,
.demo-modal textarea:focus {
  border-color: var(--aqua);
}
.wide {
  grid-column: 1/-1;
}
.demo-modal form .wpcf7-response-output {
  grid-column: 1 / -1;
}

.demo-modal {
  max-height: 90vh;
  overflow-y: auto;
}
.demo-modal::-webkit-scrollbar {
  width: 6px;
}

.modal-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.success-state {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--navy);
  font-size: 30px;
}
.success-state p {
  color: var(--slate);
  margin: 0 0 28px;
}

/* ==========================================================================
   Global Readability / Typography Refinements (cross-section font tweaks)
   ========================================================================== */
.hero-overlay {
  background: linear-gradient(90deg,rgba(2,10,18,.96) 0%,rgba(2,11,19,.82) 46%,rgba(2,13,22,.24) 80%),linear-gradient(0deg,rgba(2,10,18,.9),transparent 54%,rgba(2,10,18,.34));
}
.hero {
  background: radial-gradient(circle at 76% 30%, rgba(55, 183, 211, .18), transparent 35%),
        radial-gradient(circle at 46% 70%, rgba(91, 167, 188, .10), transparent 31%),
        linear-gradient(124deg, #f9fcfd 0%, #eef7fa 48%, #e5f1f6 100%);
}
.hero-content {
  top: 50%;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.45;
}
.hero h1 {
  max-width: 820px;
  margin: 28px 0 26px;
  font-size: clamp(64px,7vw,100px);
}
.hero-content>p {
  max-width: 690px;
  color: #0a5e91;
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions {
  gap: 14px;
  margin-top: 38px;
}
.hero-foot {
  left: max(5.5vw,42px);
  gap: 32px;
}
.hero-foot span {
  color: rgba(255,255,255,.68);
  font-size: 10.5px;
  font-weight: 650;
}
.scroll-cue {
  font-size: 9.5px;
}
.source-ribbon>span {
  font-size: 11px;
}
.source-ribbon>div {
  font-size: 12px;
}
.section-kicker {
  font-size: 11px;
}
.data-film-content>p {
  color: rgba(255,255,255,.72);
  font-size: 16.5px;
}
.transformation-steps span {
  font-size: 12px;
}
.floating-sources span {
  font-size: 10.5px;
}
.evidence-chain span {
  color: rgba(255,255,255,.78);
  font-size: 25px;
  font-weight: 600;
}
.case-media-label {
  font-size: 10px;
  font-weight: 650;
}
.case-number {
  font-size: 12px;
}
.case-story>span {
  font-size: 10.5px;
}
.case-story>p {
  color: #536b7c;
  font-size: 15.5px;
}
.case-screen-bar small {
  font-size: 9px;
}
.method-heading>p {
  color: #526b7c;
  font-size: 16.5px;
  line-height: 1.65;
}
.method-steps article>span {
  font-size: 10px;
  font-weight: 720;
}
.method-steps strong {
  font-size: 18px;
}
.method-steps p {
  color: #536b7c;
  font-size: 13.5px;
  line-height: 1.6;
}
.operations-panel span {
  font-size: 10.5px;
  font-weight: 650;
}
.benefit-list article>span {
  font-size: 0;
}
.benefit-list p {
  color: rgba(255,255,255,.64);
  font-size: 14.5px;
}
footer .et_pb_section {
  padding: 0 !important;
  margin: 0 !important;
}
.footer-brand p {
  color: rgba(255,255,255,.58);
  font-size: 13.5px;
}
.footer-main nav a {
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.mariapps-brand span {
  color: rgba(255,255,255,.52);
  font-size: 10px;
}
.footer-bottom {
  color: rgba(255,255,255,.44);
  font-size: 10px;
}
.demo-modal>p {
  font-size: 15px;
}
.demo-modal label span {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 750;
  color: #6c8393;
}
.demo-modal label span.wpcf7-not-valid-tip {
  font-size: 10px;
  color: #dc3232;
}

/* ==========================================================================
   Responsive Breakpoints (global, cross-section)
   ========================================================================== */
@media (max-width: 1100px) {
  .site-header {
    gap: 12px;
  }
  .brand-lockup {
    min-width: 194px;
  }
  .desktop-nav {
    gap: 3px;
  }
  .desktop-nav a {
    padding: 11px 10px;
    font-size: 12px;
  }
  .nav-cta {
    padding-inline: 16px;
  }
  .hero-content {
    width: min(760px,82vw);
  }
  .floating-sources {
    opacity: .55;
    right: -10vw;
  }
  .cinematic-case,
  .case-reverse {
    grid-template-columns: .82fr 1.18fr;
    gap: 32px;
  }
  .case-reverse .case-film-wrap {
    order: 2;
  }
  .case-film-wrap {
    height: 650px;
  }
  .method-visual {
    grid-template-columns: 1fr;
  }
  .method-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
  .method-steps article {
    grid-template-columns: 1fr;
  }
  .operations-film {
    grid-template-columns: 1.3fr .7fr;
  }
  .source-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 66px;
    padding: 7px;
    border-radius: 20px;
  }
  .desktop-nav,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .brand-lockup {
    width: auto;
    height: auto;
    min-width: 184px;
    min-height: 50px;
    padding: 4px 12px 4px 8px;
    border-radius: 14px;
  }
  .brand-symbol {
    width: 100%;
    height: 42px;
  }
  .brand-symbol img {
    width: 94px;
  }
  .brand-copy b {
    font-size: 19px;
  }
  .brand-copy small {
    font-size: 7.5px;
    margin-top: 5px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    left: 22px;
    width: calc(100% - 44px);
  }
  .hero h1 {
    font-size: clamp(52px,12vw,76px);
  }
  .hero-route {
    right: -15%;
    width: 70%;
    opacity: .42;
  }
  .hero-foot {
    left: 22px;
    right: 22px;
    gap: 18px;
    overflow-x: auto;
  }
  .hero-foot span {
    white-space: nowrap;
  }
  .scroll-cue {
    display: none;
  }
  .source-ribbon {
    padding-inline: 22px;
  }
  .data-film-content {
    margin-left: 24px;
    margin-right: 24px;
  }
  .floating-sources {
    display: none;
  }
  .evidence-chain {
    flex-wrap: wrap;
  }
  .evidence-chain i {
    width: 18px;
  }
  .cinematic-case,
  .case-reverse {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: auto;
  }
  .case-reverse .case-film-wrap,
  .case-reverse .case-story {
    order: initial;
  }
  .case-film-wrap {
    width: 100%;
    height: 640px;
  }
  .case-story {
    width: 100%;
  }
  .method-steps {
    grid-template-columns: 1fr;
  }
  .operations-film {
    grid-template-columns: 1fr;
  }
  .operations-panel {
    min-height: 620px;
  }
  .operations-data {
    min-height: 520px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .benefit-list article {
    grid-template-columns: 45px 1fr 45px;
  }
  .benefit-list p {
    grid-column: 2;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main nav {
    order: 3;
    grid-column: 1/-1;
  }
  .mariapps-brand {
    text-align: left;
  }
  .data-film-content {
    width: 100vw !important;
  }
  .product-showcase-heading {
    display: unset !important;
  }
}

@media (max-width: 560px) {
  .cursor-orbit {
    display: none;
  }
  .site-header {
    width: calc(100% - 18px);
  }
  .brand-lockup {
    min-width: 174px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-film {
    object-position: 56% center;
  }
  .hero h1 {
    font-size: 50px;
    line-height: .95;
  }
  .hero-content {
    top: 49%;
    transform: translateY(-45%);
  }
  .hero-content>p {
    font-size: 15.5px;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 350px;
    gap: 11px;
    margin-top: 30px;
  }
  .button {
    width: 100%;
    min-height: 56px;
    font-size: 14px;
  }
  .hero-foot {
    bottom: 20px;
  }
  .hero-foot span {
    font-size: 9px;
  }
  .hero-foot span:nth-child(n+3) {
    display: none;
  }
  .source-ribbon>span {
    display: none;
  }
  .source-ribbon {
    min-height: 72px;
    gap: 22px;
  }
  .source-ribbon>div {
    font-size: 11px;
  }
  .data-film-section {
    min-height: 850px;
  }
  .data-film-content {
    padding: 110px 0;
  }
  .data-film-content h2 {
    font-size: 47px;
  }
  .data-film-content>p {
    font-size: 15.5px;
  }
  .transformation-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .transformation-steps span {
    font-size: 11.5px;
  }
  .transformation-steps>i {
    width: 1px;
    height: 28px;
    margin-left: 8px;
  }
  .transformation-steps b {
    width: 1px;
    height: 40%;
    animation: flowDown 2.6s ease-in-out infinite;
  }
  @keyframes flowDown {
    from {
      top: -40%;
    }
    to {
      top: 100%;
    }
  }
  .use-case-heading h2,
  .method-heading h2,
  .business-heading h2 {
    font-size: 46px;
  }
  .signal-section {
    min-height: 760px;
  }
  .signal-content {
    padding-inline: 18px;
  }
  .signal-content h2 {
    font-size: 47px;
  }
  .evidence-chain span {
    font-size: 10px;
    padding: 10px;
  }
  .use-case-section {
    padding: 105px 16px;
  }
  .use-case-heading {
    margin-bottom: 65px;
  }
  .cinematic-cases {
    gap: 90px;
  }
  .case-film-wrap {
    height: 560px;
    border-radius: 22px;
  }
  .case-story>h3 {
    font-size: 39px;
  }
  .case-story>p {
    font-size: 15px;
  }
  .case-screen {
    margin-top: 28px;
  }
  .method-section {
    padding: 110px 16px;
  }
  .method-heading>p {
    font-size: 15px;
  }
  .method-image-frame {
    padding: 5px;
    border-radius: 16px;
  }
  .method-steps article:hover {
    transform: none;
  }
  .method-steps p {
    font-size: 13.5px;
  }
  .operations-panel {
    min-height: 560px;
  }
  .operations-panel h2 {
    font-size: 42px;
  }
  .operations-data {
    min-height: 500px;
  }
  .business-value {
    padding: 110px 18px;
  }
  .benefit-list article {
    grid-template-columns: 30px 1fr 38px;
    gap: 10px;
    padding: 27px 0;
  }
  .benefit-list h3 {
    font-size: 27px;
  }
  .benefit-list p {
    font-size: 14px;
  }
  .final-cta {
    min-height: 850px;
    padding: 120px 18px;
  }
  .final-content h2 {
    font-size: 54px;
  }
  .final-content>p {
    font-size: 15.5px;
  }
  .final-content>div {
    flex-direction: column;
    max-width: 350px;
    margin: 34px auto 0;
  }
  .demo-modal {
    padding: 46px 22px 28px;
    border-radius: 22px;
  }
  .demo-modal form {
    grid-template-columns: 1fr;
  }
  .demo-modal label,
  .wide {
    grid-column: 1;
  }
  .modal-close {
    top: 14px;
    right: 14px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .mariapps-brand {
    order: 2;
  }
  .footer-main nav {
    order: 3;
  }
  .footer-bottom {
    display: block;
    line-height: 1.8;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .intro-sequence {
    display: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .cursor-orbit {
    display: none;
  }
  .hero-film,
  .case-film,
  .operations-video {
    transform: none !important;
  }
}
@media (pointer: coarse) {
  .cursor-orbit {
    display: none;
  }
}

/* ==========================================================================
   Common Styles
   ========================================================================== */
.common-banner {
  background: #08274A;
  min-height: 60vh;
  display: flex;
}
.common-banner h1 {
  color: #ffff;
  font-size: 75px;
}
.common-banner .et_pb_row {
  margin-bottom: 0;
}
.wcc-btn-revisit-wrapper .wcc-revisit-help-text {
  color: #000;
}

/* ==========================================================================
   Privacy Policy
   ========================================================================== */
.privacy-section a {
  color: #1C75BC;
}
.privacy-section .table.table-bordered,
.privacy-section .table.table-bordered th,
.privacy-section .table.table-bordered td {
  border: 1px solid #1C75BC;
  color: #666 !important;
}
.privacy-policy-intro h3 {
  font-weight: 600;
  font-size: 25px;
}
.privacy-policy-text h4 {
  font-weight: 800;
}
.privacy-policy-text h5 strong {
  font-weight: 400 !important;
}
.privacy-policy-intro p, .privacy-policy-text p, .privacy-policy-text ul li, .privacy-policy-intro ol li, .privacy-policy-text ol li, .privacy-policy-text .wpcf7-response-output, .schedule-demo .cf7-col label span, .cookie-policy-text p {
  color: #666 !important;
}
.cookie-policy-text h3 {
  margin-top: 25px;
}
.cookie-policy-text a {
  color: #2ea3f2;
}

/* ==========================================================================
   Schedule a Demo
   ========================================================================== */
.cf7-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.schedule-demo .cf7-row {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}
.schedule-demo .cf7-row.full {
  flex-direction: column;
}
.schedule-demo .cf7-col {
  flex: 1;
}
.schedule-demo input[type="text"],
.schedule-demo input[type="email"],
.schedule-demo input[type="number"],
.schedule-demo input[type="tel"],
.schedule-demo select,
.schedule-demo textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 8px 0;
  font-size: 15px;
  background: transparent;
  outline: none;
  box-shadow: none;
}
.schedule-demo ::placeholder {
  color: #000;
  opacity: 1;
  font-size: 14px;
}
.schedule-demo input:focus,
.schedule-demo textarea:focus {
  border-bottom-color: #000;
}
.schedule-demo .wpcf7-form-control-wrap {
  display: block;
}
@media (max-width: 768px) {
  .schedule-demo .cf7-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==========================================================================
   Demo Page
   ========================================================================== */
.schedule-demo-intro-content h3 {
  font-size: 50px;
  font-weight: 700;
}
.schedule-demo-intro-content p {
  font-size: 16px;
  padding-top: 25px;
  font-weight: 400;
  color: #000;
}
.schedule-demo .cf7-row {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}
.schedule-demo .cf7-row.full {
  flex-direction: column;
}
.schedule-demo .cf7-col {
  flex: 1;
}
.schedule-demo input[type="text"],
.schedule-demo input[type="email"],
.schedule-demo input[type="number"],
.schedule-demo input[type="tel"],
.schedule-demo select,
.schedule-demo textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 8px 0;
  font-size: 15px;
  background: transparent;
  outline: none;
  box-shadow: none;
}
.schedule-demo ::placeholder {
  color: #000;
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
}
.schedule-demo select {
  color: #000;
}
.schedule-demo input:focus,
.schedule-demo textarea:focus,
.schedule-demo select:focus {
  border-bottom-color: #000;
}
.schedule-demo .wpcf7-form-control-wrap {
  display: block;
}
.schedule-demo .cf7-consent {
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}
.schedule-demo .cf7-consent a {
  color: #000;
  text-decoration: underline;
}
.schedule-demo .cf7-consent input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.8);
}
@media (max-width: 768px) {
  .schedule-demo .cf7-row {
    flex-direction: column;
    gap: 20px;
  }
}
.schedule-demo-intro {
  padding: 4% 0 !important;
}
.schedule-demo-intro-left h2 {
  font-size: 80px;
  font-weight: 700;
}
.schedule-demo-intro-left p {
  font-size: 16px;
  padding-top: 25px;
  font-weight: 400;
  color: #000;
}
.footer-submit {
  background: var(--marine) !important;
  padding: .3em 1.2em .3em 1.2em !important;
  border-radius: 10px !important;
}
.footer-submit:hover {
  background-color: var(--marine) !important;
  opacity: 0.9 !important;
  padding: .3em 1.2em .3em 1.2em !important;
  border-radius: 10px !important;
}
.schedule-demo .cf7-submit {
  margin-top: 30px;
}

.schedule-demo-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450 !important;
  color: #46b450 !important;
}

.schedule-demo-form .wpcf7 form.failed .wpcf7-response-output,
.schedule-demo-form .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232 !important;
  color: #dc3232 !important;
}

.schedule-demo-form .wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28 !important;
  color: #f56e28 !important;
}

.schedule-demo-form .wpcf7 form.invalid .wpcf7-response-output,
.schedule-demo-form .wpcf7 form.unaccepted .wpcf7-response-output,
.schedule-demo-form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900 !important;
  color: #ffb900 !important;
}