:root {
  --bg: #04060b;
  --bg-2: #0a1220;
  --panel: rgba(10, 14, 22, 0.84);
  --panel-strong: rgba(12, 18, 30, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #f4f6fb;
  --muted: #8c97ad;
  --muted-strong: #c4cfdf;
  --glow: rgba(88, 132, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(112, 139, 222, 0.1), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(54, 121, 168, 0.09), transparent 26%),
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.012), transparent 34%),
    linear-gradient(180deg, #010309 0%, #040d18 48%, #01040a 100%);
  overflow-x: hidden;
}

.services-section .container,
.feature-band .container,
.site-footer .container {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.4vw, 2rem);
}

h1,
h2,
h3,
h4,
.eyebrow {
  font-family: "Bebas Kai", "Bebas Neue", "Space Grotesk", sans-serif;
}

.btn,
.nav-links a,
.nav-text-link {
  font-family: "Space Grotesk", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.spotlight,
.noise-overlay,
.left-rail {
  position: fixed;
  pointer-events: none;
}

.spotlight {
  inset: 0;
  filter: blur(60px);
}

.spotlight-one {
  background: radial-gradient(circle at 26% 20%, rgba(89, 126, 222, 0.14), transparent 26%);
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.spotlight-two {
  background: radial-gradient(circle at 74% 16%, rgba(52, 128, 176, 0.09), transparent 22%);
}

.noise-overlay {
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 4px 4px, 88px 88px;
}

.left-rail {
  display: none;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1.1rem 0 0;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.78), rgba(7, 8, 12, 0.18), transparent);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
  gap: 1.25rem;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0.95rem clamp(1rem, 2vw, 1.5rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo-image {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(50vw, 420px);
}

.brand-mark {
  width: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  flex-shrink: 0;
}

.brand-mark span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f4f6fb;
  opacity: 0.92;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  font-family: "Inter", sans-serif;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.96);
}

.brand-copy small {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 246, 251, 0.36);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  justify-self: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1.2rem;
  min-height: 100%;
}

.nav-links a,
.nav-text-link {
  color: rgba(244, 246, 251, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
  border-radius: 0;
}

.nav-links a:hover {
  color: rgba(244, 246, 251, 0.98);
  background: transparent;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  background: rgba(143, 245, 255, 0.85);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-text-link:hover {
  color: rgba(244, 246, 251, 0.96);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: end;
}

.nav-status {
  align-items: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(223, 251, 255, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-ghost,
.btn-pill {
  border-radius: 999px;
}

.nav-actions .btn-ghost {
  color: #fff;
  padding: 0.78rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-actions .btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-text-link {
  padding: 0.35rem 0;
  border-radius: 0;
  background: transparent;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(9, 25, 14, 0.45);
  z-index: 60;
  text-decoration: none;
  animation: whatsapp-pop 2.1s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 18px 36px rgba(9, 25, 14, 0.56);
}

@keyframes whatsapp-pop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}

@keyframes whatsapp-pop-mobile {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.hero-section {
  position: relative;
  z-index: 1;
}

.hero-section .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 0;
  display: block;
}

.hero-copy-block {
  max-width: 100%;
  align-self: center;
}

.hero-banner {
  position: relative;
  min-height: auto;
  width: 100%;
  margin: 0 0 2.75rem;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(0.85rem, 2.2vw, 1.6rem) clamp(2.4rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: contrast(1.08) brightness(0.66) saturate(1.04);
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(4, 8, 21, 0.7) 0%, rgba(6, 10, 27, 0.48) 52%, rgba(7, 10, 24, 0.66) 100%),
    radial-gradient(circle at 24% 22%, rgba(41, 129, 198, 0.16), transparent 58%);
  z-index: 0;
  pointer-events: none;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hero-banner::before {
  top: 12%;
  right: 6%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(76, 110, 214, 0.16), transparent 72%);
  filter: blur(10px);
}

.hero-banner::after {
  left: 4%;
  bottom: 8%;
  width: 240px;
  height: 140px;
  background: radial-gradient(circle, rgba(38, 123, 178, 0.12), transparent 72%);
  filter: blur(12px);
}

.hero-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2.75rem, 5vw, 5rem);
  align-items: center;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.hero-banner-aside {
  display: flex;
  justify-content: flex-start;
}

.hero-banner-image,
.feature-panel-image,
.timeline-card-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-banner-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: min(100%, 380px);
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: screen;
  opacity: 0.86;
  filter: contrast(1.14) brightness(1.12) saturate(1.06);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 100%);
}

.hero-editorial-panel {
  width: min(100%, 380px);
  margin-left: 0;
  display: grid;
  gap: 1rem;
  align-content: space-between;
  justify-items: start;
}

.hero-editorial-copy {
  width: 100%;
  padding-left: 0;
}

.hero-editorial-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.8;
}

.hero-editorial-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.3rem;
  justify-content: flex-start;
}

.hero-editorial-stats div {
  min-width: 92px;
}

.hero-editorial-stats strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #ffffff;
  font-family: "Bebas Kai", "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.hero-editorial-stats span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, 290px);
  justify-content: center;
  gap: 1.1rem;
  grid-auto-rows: 480px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 246, 251, 0.88);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.display-2 {
  font-size: 70px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  max-width: none;
}

.hero-copy,
.section-heading p,
.service-card p,
.feature-panel p,
.timeline-item p,
.contact-panel p,
.screen-window p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}


.trust-copy {
  color: rgba(244, 246, 251, 0.44);
  font-size: 0.95rem;
}

.btn-light.btn-pill {
  padding-block: 0.95rem;
  color: #fff;
  font-weight: 600;
  border-color: transparent;
  background: linear-gradient(180deg, #eef3ff, #dbe6ff);
  color: #10131b;
  box-shadow: 0 16px 30px rgba(80, 114, 255, 0.2);
}

.btn-light.btn-pill:hover {
  color: #10131b;
  background: linear-gradient(180deg, #f8fbff, #e4ecff);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: min(100%, 1180px);
  margin-inline: auto;
}

.hero-metrics strong,
.screen-stats strong,
.mini-stat strong,
.timeline-item strong {
  display: block;
  font-size: 1.15rem;
}

.metric-value {
  font-variant-numeric: tabular-nums;
}

.hero-metrics span,
.screen-stats span,
.mini-stat span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.device-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.device-board {
  position: relative;
  width: min(880px, 100%);
  aspect-ratio: 1.28 / 1;
  transform: rotate(-12deg) translateY(-20px);
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(118, 140, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(18, 22, 32, 0.96), rgba(11, 14, 21, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 38px 90px rgba(0, 0, 0, 0.34),
    0 0 120px rgba(118, 140, 255, 0.08);
}

.device-board::after {
  content: "";
  position: absolute;
  inset: auto 10% -10px 10%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(118, 140, 255, 0.05), rgba(255, 168, 122, 0.18), rgba(118, 140, 255, 0.05));
  filter: blur(6px);
}

.screen-main {
  position: absolute;
  top: 25%;
  left: 17%;
  width: 48%;
}

.screen-window {
  padding: 1.1rem;
  border-radius: 26px;
  border: 1px solid rgba(17, 19, 25, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 240, 0.96));
  color: #0d0d0d;
  box-shadow: 0 22px 50px rgba(29, 37, 58, 0.12);
}

.window-bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.window-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(19, 21, 29, 0.14);
}

.window-content h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
  color: #161821;
}

.mini-badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 22, 32, 0.06);
  color: #262a36;
  font-size: 0.75rem;
  font-weight: 700;
}

.screen-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.screen-stats div {
  min-width: 72px;
}

.side-console {
  position: absolute;
  top: 18%;
  right: 5%;
  width: 32%;
}

.console-card {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(20, 24, 34, 0.9), rgba(12, 15, 23, 0.98));
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.console-pill {
  width: 68px;
  height: 16px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.console-card h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: rgba(244, 246, 251, 0.88);
}

.console-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.console-card li:first-child {
  padding-top: 0;
  border-top: none;
}

.console-card strong {
  color: rgba(244, 246, 251, 0.88);
}

.floating-tool {
  position: absolute;
  left: 12%;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(245, 247, 255, 0.96), rgba(219, 228, 255, 0.92));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.tool-a {
  top: 40%;
}

.tool-b {
  top: 50%;
  left: 10%;
  width: 56px;
  height: 38px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.feature-panel h2,
.contact-panel h2 {
  font-size: 60px;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.service-card,
.feature-panel,
.timeline-card,
.contact-panel {
  position: relative;
  height: 100%;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 20, 29, 0.9), rgba(10, 13, 20, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card::before,
.feature-panel::before,
.timeline-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 35%);
  pointer-events: none;
}

.service-card {
  --service-solid:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #e4ebf7 0%, #d6dfef 100%);
  --service-solid-hover:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(180deg, #cad7eb 0%, #b9c8df 100%);
  --service-ink: #1b2940;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  width: 290px;
  height: 480px;
  min-height: 480px;
  border-radius: 30px;
  border: none;
  background: var(--service-solid);
  color: var(--service-ink);
  box-shadow: 0 18px 34px rgba(7, 11, 24, 0.16);
  isolation: isolate;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.services-mosaic > .service-card {
  grid-column: auto;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(0deg, rgba(17, 25, 48, 0.03), rgba(17, 25, 48, 0.03));
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--service-solid-hover);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-copy {
  display: grid;
  grid-template-rows: minmax(2.8rem, auto) 1fr;
  gap: 0.75rem;
  min-height: 210px;
  align-content: start;
}

.service-tone-1 {
  --service-accent: #6f8fc2;
  --service-solid: linear-gradient(135deg, #6C47CA 0%, #310899 100%);
  --service-solid-hover: linear-gradient(135deg, #7b59dc 0%, #3a0ab5 100%);
  --service-ink: #f4f6fb;
}

.service-tone-2 {
  --service-accent: #47A7CA;
  --service-solid: linear-gradient(135deg, #47A7CA 0%, #121D66 100%);
  --service-solid-hover: linear-gradient(135deg, #56b7db 0%, #16257e 100%);
  --service-ink: #f4f6fb;
}

.service-tone-1,
.service-tone-2,
.service-tone-3,
.service-tone-4,
.service-tone-5,
.service-tone-6,
.service-tone-7,
.service-tone-8 {
  border-radius: 32px;
}

.service-tone-3 {
  --service-accent: #6f8fc2;
  --service-solid: linear-gradient(135deg, #6C47CA 0%, #310899 100%);
  --service-solid-hover: linear-gradient(135deg, #7b59dc 0%, #3a0ab5 100%);
  --service-ink: #f4f6fb;
}

.service-tone-4 {
  --service-accent: #8b7cff;
  --service-solid: linear-gradient(135deg, #6366F1 0%, #312E81 100%);
  --service-solid-hover: linear-gradient(135deg, #7376ff 0%, #39359b 100%);
  --service-ink: #f4f6fb;
}

.service-tone-5 {
  --service-accent: #61c48b;
  --service-solid: linear-gradient(135deg, #0F9D7A 0%, #124734 100%);
  --service-solid-hover: linear-gradient(135deg, #17b68d 0%, #16523b 100%);
  --service-ink: #f4f6fb;
}

.service-tone-6 {
  --service-accent: #f2b84b;
  --service-solid: linear-gradient(135deg, #B8860B 0%, #5B3A06 100%);
  --service-solid-hover: linear-gradient(135deg, #cd9814 0%, #6a4308 100%);
  --service-ink: #f4f6fb;
}

.service-tone-7 {
  --service-accent: #53b3ff;
  --service-solid: linear-gradient(135deg, #2563EB 0%, #0F2A5F 100%);
  --service-solid-hover: linear-gradient(135deg, #3173ff 0%, #153471 100%);
  --service-ink: #f4f6fb;
}

.service-tone-8 {
  --service-accent: #f06f9d;
  --service-solid: linear-gradient(135deg, #BE185D 0%, #57113A 100%);
  --service-solid-hover: linear-gradient(135deg, #d2226a 0%, #681546 100%);
  --service-ink: #f4f6fb;
}

.service-card:hover,
.feature-panel:hover,
.timeline-card:hover,
.contact-panel:hover {
  transform: translateY(-6px);
}

.service-card:hover {
  box-shadow: 0 24px 42px rgba(7, 11, 24, 0.2);
}

.service-card:hover::before {
  opacity: 0.22;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover .card-icon {
  transform: translateY(-4px) scale(1.03);
  background: #ffffff;
  box-shadow:
    0 16px 28px rgba(7, 11, 24, 0.16);
}

.service-card:hover .service-kicker,
.service-card:hover .service-tag {
  background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon-svg {
  transform: translateY(-1px);
}

.service-card-top,
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.service-card-top {
  padding-bottom: 0.85rem;
  border-bottom: none;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: none;
  justify-content: space-between;
}

.service-kicker,
.service-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-kicker {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(244, 246, 251, 0.96);
  font-size: 0.68rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.card-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: color-mix(in srgb, var(--service-accent, #4A5F94) 82%, #0f172a 18%);
  box-shadow: 0 12px 20px rgba(7, 11, 24, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.card-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  background: radial-gradient(circle, color-mix(in srgb, var(--service-accent, #9db4ff) 20%, transparent 80%), transparent 68%);
  opacity: 0.68;
  z-index: 0;
  animation: serviceGlow 4.2s ease-in-out infinite;
}

.service-icon-svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  stroke: currentColor;
  animation: serviceIconFloat 3.6s ease-in-out infinite;
  transition: transform 0.35s ease;
}

.service-card h3,
.timeline-card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.service-card h3 {
  color: rgba(244, 246, 251, 0.96);
  display: flex;
  align-items: flex-start;
}

.service-card p {
  margin: 0;
  color: color-mix(in srgb, var(--service-ink, #14224c) 78%, transparent);
  line-height: 1.7;
}

.feature-band {
  position: relative;
  overflow: visible;
}

.feature-band::before,
.feature-band::after {
  display: none;
}

.about-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-story-copy {
  display: grid;
  gap: 1.5rem;
  align-content: center;
}

.story-eyebrow {
  width: fit-content;
  background: rgba(121, 255, 187, 0.08);
  border-color: rgba(121, 255, 187, 0.16);
  color: #9fffc8;
  box-shadow: none;
}

.about-story-copy h2 {
  margin: 0;
  max-width: 19ch;
  font-size: 60px;
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: rgba(244, 246, 251, 0.98);
}

.about-story-copy > p {
  max-width: 34rem;
  color: rgba(222, 231, 248, 0.72);
  font-size: 1rem;
  line-height: 1.9;
}

.story-flow {
  display: grid;
  gap: 1.15rem;
  padding-top: 0.6rem;
}

.story-line {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.05rem 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.story-line:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.story-line:hover {
  transform: translateX(10px);
  border-color: rgba(159, 255, 200, 0.22);
}

.story-line-label {
  color: rgba(159, 255, 200, 0.78);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-line h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: rgba(244, 246, 251, 0.96);
}

.story-line p {
  margin: 0;
  max-width: 32rem;
  color: rgba(218, 228, 248, 0.68);
  font-size: 0.96rem;
  line-height: 1.8;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding-top: 0.9rem;
}

.story-metrics strong {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(244, 246, 251, 0.96);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-metrics span {
  display: block;
  color: rgba(214, 223, 239, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-story-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  min-height: 520px;
  height: 520px;
  align-self: center;
  overflow: hidden;
}

.about-story-media {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.tech-object-stage {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  animation: techStageFloat 10s ease-in-out infinite;
}

.tech-grid {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(121, 255, 187, 0.12);
  background:
    linear-gradient(rgba(121, 255, 187, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 255, 187, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  transform: perspective(900px) rotateX(70deg);
  opacity: 0.48;
  animation: techGridPulse 7s ease-in-out infinite;
}

.tech-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(121, 255, 187, 0.2);
}

.orbit-one {
  width: 74%;
  height: 74%;
  transform: rotate(18deg);
  animation: techOrbitSpin 18s linear infinite;
}

.orbit-two {
  width: 54%;
  height: 54%;
  border-color: rgba(58, 116, 255, 0.24);
  transform: rotate(-28deg);
  animation: techOrbitSpinReverse 14s linear infinite;
}

.tech-cube {
  position: absolute;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(121, 255, 187, 0.24), rgba(121, 255, 187, 0.03)),
    linear-gradient(180deg, #18233a 0%, #0d1526 100%);
  border: 1px solid rgba(121, 255, 187, 0.26);
  box-shadow:
    0 30px 48px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 54px rgba(121, 255, 187, 0.14);
}

.tech-cube-main {
  width: 260px;
  height: 260px;
  transform: rotate(18deg) translateY(-12px);
  animation: techCubeDrift 8.5s ease-in-out infinite;
}

.tech-cube-main::before,
.tech-cube-main::after,
.tech-cube-small::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 18px;
  border: 1px solid rgba(121, 255, 187, 0.14);
}

.tech-cube-main::after {
  inset: 30%;
  border-radius: 14px;
  border-color: rgba(58, 116, 255, 0.22);
}

.tech-cube-small {
  width: 120px;
  height: 120px;
  right: 14%;
  bottom: 18%;
  transform: rotate(-12deg);
  border-radius: 18px;
  animation: techCubeDriftSmall 7s ease-in-out infinite;
}

.tech-core-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(121, 255, 187, 0.32), rgba(121, 255, 187, 0.08) 42%, transparent 72%);
  filter: blur(24px);
  animation: techGlowPulse 6s ease-in-out infinite;
}

.service-tag {
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(244, 246, 251, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
}

.service-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--service-ink, #14224c);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--service-accent, #9db4ff);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--service-accent, #9db4ff) 30%, transparent);
  animation: servicePulse 2.2s ease-out infinite;
}

.contact-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(121, 154, 255, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(57, 150, 207, 0.24), transparent 34%),
    linear-gradient(135deg, #172546 0%, #0e1730 46%, #143b55 100%);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

.contact-panel::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 60%);
}

.contact-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 246, 251, 0.92);
}

.contact-panel p {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(244, 246, 251, 0.74);
}

.contact-panel .btn-light.btn-pill {
  background: linear-gradient(180deg, #ffffff, #dbe9ff);
  box-shadow: 0 18px 34px rgba(10, 20, 45, 0.26);
}

.contact-story-head {
  max-width: 980px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.contact-story-head h2 {
  margin: 1rem 0 1rem;
  font-size: 65px;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.contact-story-head p {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  color: rgba(244, 246, 251, 0.66);
  font-size: 1.02rem;
  line-height: 1.8;
}

.contact-story-stack {
  display: grid;
  gap: 6.5rem;
}

.contact-story-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: center;
  padding-block: 0.8rem;
}

.contact-story-row.reveal {
  opacity: 0;
  transform: translate3d(-56px, 18px, 0);
  transition:
    opacity 0.9s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-story-row.contact-story-row-reverse.reveal {
  transform: translate3d(56px, 18px, 0);
}

.contact-story-row.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.contact-story-row-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-story-row-reverse .contact-story-copy {
  order: 2;
}

.contact-story-row-reverse .contact-story-visual {
  order: 1;
}

.contact-story-copy,
.contact-story-visual {
  will-change: transform;
}

.contact-story-copy {
  position: relative;
}

.contact-story-copy h3 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.96;
  color: rgba(244, 246, 251, 0.98);
}

.contact-story-copy p {
  margin: 0 0 1.5rem;
  color: rgba(244, 246, 251, 0.66);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-story-list {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.contact-story-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(244, 246, 251, 0.8);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-story-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79ffbb;
  box-shadow: 0 0 16px rgba(121, 255, 187, 0.4);
}

.contact-story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #9fffc8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-story-link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease, transform 0.25s ease;
}

.contact-story-link:hover::after {
  width: 34px;
  transform: translateX(3px);
}

.contact-story-visual {
  position: relative;
  max-width: 460px;
  width: 100%;
}

.contact-story-row .contact-story-visual {
  justify-self: end;
}

.contact-story-row-reverse .contact-story-visual {
  justify-self: start;
}

.contact-story-visual::before {
  content: "";
  position: absolute;
  inset: auto 10% -16px 10%;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121, 255, 187, 0.2), transparent 70%);
  filter: blur(14px);
  opacity: 0.6;
}

.contact-story-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
  filter: grayscale(0.35);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.contact-story-row:hover .contact-story-image {
  transform: scale(1.04);
  filter: grayscale(0);
}


.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section .container-fluid {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.contact-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: stretch;
  min-height: 680px;
  width: 100%;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(9, 12, 20, 0.96), rgba(8, 11, 18, 0.98));
  box-shadow: none;
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 15, 0.78) 0%, rgba(6, 9, 15, 0.56) 36%, rgba(6, 9, 15, 0.22) 68%, rgba(6, 9, 15, 0.46) 100%),
    radial-gradient(circle at 18% 18%, rgba(78, 114, 210, 0.18), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(165, 86, 197, 0.18), transparent 28%);
  z-index: 1;
}

.contact-cta-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 0.62;
  filter: saturate(1) brightness(0.78);
}

.contact-cta-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 2vw, 2rem) clamp(1rem, 2vw, 2rem) clamp(1rem, 3vw, 3.5rem);
  color: rgba(244, 246, 251, 0.96);
  display: grid;
  align-content: center;
}

.contact-cta-meta {
  margin-bottom: 1.2rem;
  color: #9f7cff;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-cta-copy h2 {
  margin: 0 0 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 65px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: rgba(244, 246, 251, 0.98);
}

.contact-cta-copy p {
  margin: 0 0 1.8rem;
  color: rgba(244, 246, 251, 0.66);
  font-size: 1.2rem;
  line-height: 1.55;
}

.contact-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
}

.contact-cta-links span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(159, 124, 255, 0.12);
  color: rgba(230, 221, 255, 0.94);
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.contact-cta-side {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 2rem) clamp(1.2rem, 3vw, 3.5rem) clamp(1rem, 2vw, 2rem) clamp(1rem, 2vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta-side-block {
  display: grid;
  justify-items: start;
  gap: 0.55rem;
  width: 100%;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta-side-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-side-label {
  color: rgba(180, 194, 221, 0.66);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-side-value {
  width: fit-content;
  color: rgba(244, 246, 251, 0.96);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-cta-side-block p {
  margin: 0;
  max-width: 24rem;
  color: rgba(244, 246, 251, 0.68);
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-side-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-side-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(244, 246, 251, 0.8);
  font-size: 0.96rem;
  line-height: 1.6;
}

.contact-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9f7cff;
}

.contact-cta-button,
.contact-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-cta-button {
  min-width: 220px;
  background: linear-gradient(180deg, #ffffff, #e9edf6);
  color: #14161d;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.contact-cta-button:hover {
  color: #14161d;
}

.contact-cta-secondary {
  color: rgba(244, 246, 251, 0.84);
  background: rgba(255, 255, 255, 0.06);
}

.contact-cta-secondary:hover {
  color: rgba(244, 246, 251, 0.96);
  background: rgba(255, 255, 255, 0.1);
}

.contact-cta-arc.arc-one {
  width: 860px;
  height: 860px;
  right: -320px;
  bottom: -390px;
  border-color: rgba(246, 221, 236, 0.08);
}

.contact-cta-arc.arc-two {
  width: 720px;
  height: 720px;
  right: -240px;
  bottom: -320px;
  border-color: rgba(216, 150, 207, 0.12);
}

.contact-cta-arc.arc-three {
  width: 560px;
  height: 560px;
  right: -140px;
  bottom: -220px;
  border-color: rgba(165, 86, 197, 0.22);
}

.contact-cta-button:hover,
.contact-cta-secondary:hover {
  transform: translateY(-2px);
}

.contact-cta-visual {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  margin-right: clamp(-2rem, -4vw, -0.5rem);
  z-index: 2;
}

.contact-cta-arc {
  position: absolute;
  border-radius: 50%;
  border: 72px solid;
  pointer-events: none;
}

.contact-cta-arc.arc-one {
  width: 860px;
  height: 860px;
  right: -320px;
  bottom: -390px;
  border-color: rgba(217, 148, 190, 0.16);
}

.contact-cta-arc.arc-two {
  width: 720px;
  height: 720px;
  right: -240px;
  bottom: -320px;
  border-color: rgba(209, 123, 182, 0.22);
}

.contact-cta-arc.arc-three {
  width: 560px;
  height: 560px;
  right: -140px;
  bottom: -220px;
  border-color: rgba(165, 86, 197, 0.34);
}

.contact-cta-image {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(100%, 700px);
  max-height: 640px;
  object-fit: contain;
  object-position: bottom right;
  filter: saturate(1.02) contrast(1.02);
}

.site-footer {
  position: relative;
  z-index: 1;
}

.footer-shell {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-brand-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo-image {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(50vw, 420px);
}

.footer-brand-row > div {
  width: 100%;
  max-width: 520px;
}

.footer-brand h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.95;
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-title {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: rgba(244, 246, 251, 0.96);
}

.footer-links a,
.footer-bottom-links a {
  color: rgba(244, 246, 251, 0.74);
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  color: rgba(244, 246, 251, 1);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}


.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-panel-image {
  margin-bottom: 0;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-card-image {
  margin-bottom: 0;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@keyframes floatGlow {
  from {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 4%, 0) scale(1.05);
  }
}

@keyframes serviceIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes serviceGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}

@keyframes servicePulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 28%, transparent);
  }
  70% {
    box-shadow: 0 0 0 9px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes techStageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes techGridPulse {
  0%,
  100% {
    opacity: 0.26;
  }
  50% {
    opacity: 0.42;
  }
}

@keyframes techOrbitSpin {
  from {
    transform: rotate(18deg);
  }
  to {
    transform: rotate(378deg);
  }
}

@keyframes techOrbitSpinReverse {
  from {
    transform: rotate(-28deg);
  }
  to {
    transform: rotate(-388deg);
  }
}

@keyframes techCubeDrift {
  0%,
  100% {
    transform: rotate(18deg) translateY(-12px);
  }
  50% {
    transform: rotate(26deg) translateY(-24px);
  }
}

@keyframes techCubeDriftSmall {
  0%,
  100% {
    transform: rotate(-12deg) translateY(0);
  }
  50% {
    transform: rotate(-22deg) translateY(-12px);
  }
}

@keyframes techGlowPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1199.98px) {
  .hero-banner {
    min-height: auto;
  }

  .hero-banner-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-banner-aside {
    justify-content: flex-start;
  }

  .hero-editorial-panel {
    width: min(100%, 520px);
    margin-left: 0;
  }

  .hero-banner::after {
    display: none;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    min-height: 560px;
  }

  .contact-cta-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-cta-side {
    padding-top: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-story-row,
  .contact-story-row-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 991.98px) {
  .left-rail {
    display: none;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .hero-banner {
    min-height: auto;
  }

  .hero-editorial-panel {
    width: 100%;
  }

  .services-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cta-copy h2 {
    font-size: clamp(2.8rem, 8vw, 4.4rem);
  }

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

  .footer-brand-row {
    flex-direction: column;
  }

}

@media (max-width: 767.98px) {
  .floating-whatsapp {
    right: 0.8rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    animation: whatsapp-pop-mobile 2.1s ease-in-out infinite;
  }

  .floating-whatsapp:hover {
    transform: scale(1.06);
  }

  .top-nav {
    padding-top: 0.85rem;
  }

  .nav-shell {
    padding-inline: 0.9rem;
  }

  .brand-logo-image {
    height: 44px;
    max-width: 68vw;
  }

  .nav-actions .btn-ghost {
    padding: 0.75rem 1rem;
  }

  .about-story-copy h2 {
    max-width: none;
  }

  .story-line {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.95rem 0 1.05rem;
  }

  .story-metrics {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-story-visual {
    min-height: 420px;
  }

  .contact-story-stack {
    gap: 3rem;
  }

  .contact-story-head h2 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }


  .contact-story-index {
    font-size: 3.6rem;
  }

  .contact-cta-card {
    padding: 1.25rem 0 0;
    border-radius: 0;
  }

  .contact-cta-copy {
    padding: 0.35rem 0.35rem 0 0.35rem;
  }

  .contact-cta-side {
    padding: 1.25rem 0.35rem 0 0.35rem;
    gap: 1.1rem;
  }

  .contact-cta-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .contact-cta-copy p {
    font-size: 1rem;
  }

  .contact-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta-button,
  .contact-cta-secondary {
    width: 100%;
  }

  .hero-banner {
    margin-bottom: 3rem;
    padding: 1rem 0 2.5rem;
  }

  .display-2 {
    font-size: clamp(2.75rem, 13vw, 3.95rem);
    max-width: 100%;
  }

  .hero-banner-grid {
    gap: 1.25rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .services-mosaic {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 100%;
    max-width: 290px;
    height: auto;
    min-height: auto;
  }

  .hero-banner-image,
  .story-panel,
  .service-card,
  .contact-panel {
    border-radius: 22px;
  }

  .hero-editorial-stats span,
  .trust-copy {
    font-size: 0.82rem;
  }

  .hero-metrics {
    gap: 1rem;
    padding-top: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}
