@charset "UTF-8";

@font-face {
  font-family: "Manrope Variable";
  src: url("../assets/fonts/manrope-variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Variable";
  src: url("../assets/fonts/space-grotesk-variable.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --navy-1000: #030d1d;
  --navy-950: #06152d;
  --navy-900: #0a2142;
  --navy-800: #103764;
  --ink: #07192f;
  --muted: #66768a;
  --line: #d9e5ef;
  --line-dark: rgba(255, 255, 255, 0.13);
  --blue: #159cff;
  --cyan: #59dbff;
  --violet: #7f72ff;
  --mint: #57e6b0;
  --surface: #f4f8fc;
  --surface-2: #eaf2f9;
  --white: #ffffff;
  --whatsapp: #25d366;
  --display: "Space Grotesk Variable", "Arial Narrow", sans-serif;
  --body: "Manrope Variable", "Segoe UI", Arial, sans-serif;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --container: 1200px;
  --shadow: 0 24px 80px rgba(5, 28, 58, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(21, 156, 255, 0.4);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

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

.section-soft {
  background: var(--surface);
}

.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  height: 76px;
  border-color: rgba(7, 25, 47, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 45px rgba(5, 28, 58, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 208px;
  padding: 8px 10px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(6, 21, 45, 0.06);
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.main-nav > a,
.nav-dropdown > button {
  position: relative;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  transition: color 0.25s ease;
}

.site-header.is-scrolled .main-nav > a,
.site-header.is-scrolled .nav-dropdown > button,
.site-header.header-solid .main-nav > a,
.site-header.header-solid .nav-dropdown > button {
  color: #4e627a;
}

.main-nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: right 0.25s ease;
}

.main-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--white);
}

.site-header.is-scrolled .main-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover,
.site-header.header-solid .main-nav > a:hover,
.site-header.header-solid .nav-dropdown > button:hover {
  color: var(--ink);
}

.main-nav > a:hover::after,
.nav-dropdown > button:hover::after,
.main-nav > a.active::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > button svg {
  width: 14px;
  transition: transform 0.25s ease;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 580px;
  padding: 16px;
  border: 1px solid rgba(10, 33, 66, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 80px rgba(4, 21, 45, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  backdrop-filter: blur(20px);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover > button svg,
.nav-dropdown.is-open > button svg {
  transform: rotate(180deg);
}

.dropdown-panel a {
  padding: 13px 14px;
  border-radius: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.dropdown-panel a:hover {
  background: var(--surface);
  color: #0876c6;
  transform: translateX(3px);
}

.dropdown-panel .mini-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(21, 156, 255, 0.13), rgba(127, 114, 255, 0.12));
  color: var(--blue);
  display: grid;
  place-items: center;
}

.dropdown-panel .mini-icon svg {
  width: 18px;
  height: 18px;
}

.dropdown-panel strong,
.dropdown-panel small {
  display: block;
}

.dropdown-panel strong {
  font-size: 0.77rem;
}

.dropdown-panel small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.63rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: linear-gradient(135deg, #0d88e4, var(--blue) 55%, #40c5ff);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 0.84rem;
  font-weight: 750;
  box-shadow: 0 14px 34px rgba(21, 156, 255, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(21, 156, 255, 0.34);
  filter: saturate(1.12);
}

.button svg {
  width: 17px;
  transition: transform 0.3s ease;
}

.button:hover svg {
  transform: translate(3px, -3px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 0.76rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button-outline:hover {
  border-color: rgba(21, 156, 255, 0.4);
  box-shadow: 0 13px 30px rgba(5, 28, 58, 0.08);
}

.menu-toggle {
  display: none;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #70ceff;
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #55c9ff, #9c8dff 65%, #73efff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 160px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(21, 156, 255, 0.2), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(127, 114, 255, 0.13), transparent 32%),
    linear-gradient(135deg, var(--navy-1000), var(--navy-950) 52%, #0c305b);
  color: var(--white);
}

.grid-field {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(110, 205, 255, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 205, 255, 0.17) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 30% 35%, #000, transparent 72%);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(21, 156, 255, 0.07);
  filter: blur(70px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 68px;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy .display-title {
  max-width: 680px;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.04rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.hero-signals span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-frame {
  position: relative;
  height: 610px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px 44px 160px 44px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.38);
  transform: perspective(1200px) rotateY(-2deg);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  border-radius: 34px 34px 148px 34px;
  object-fit: cover;
  object-position: 63% center;
}

.hero-frame::after {
  position: absolute;
  content: "";
  inset: 12px;
  border-radius: 34px 34px 148px 34px;
  background: linear-gradient(140deg, rgba(3, 13, 29, 0.1), transparent 46%, rgba(21, 156, 255, 0.08));
  pointer-events: none;
}

.signal-card {
  position: absolute;
  z-index: 4;
  min-width: 188px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  animation: float 5.2s ease-in-out infinite;
}

.signal-card-a {
  left: -44px;
  bottom: 85px;
}

.signal-card-b {
  right: -28px;
  top: 82px;
  animation-delay: -2.4s;
}

.signal-card .signal-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(21, 156, 255, 0.16), rgba(127, 114, 255, 0.12));
  color: var(--blue);
  display: grid;
  place-items: center;
}

.signal-card strong,
.signal-card small {
  display: block;
}

.signal-card strong {
  font-family: var(--display);
  font-size: 0.82rem;
}

.signal-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

.hero-orbit {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 34px;
  bottom: -18px;
  border: 10px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(21, 156, 255, 0.1);
}

.tech-marquee {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.tech-track {
  width: max-content;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 30s linear infinite;
}

.tech-track span {
  color: rgba(255, 255, 255, 0.52);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(89, 219, 255, 0.09);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 23px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading.center > p:last-child {
  margin-inline: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-7px);
  border-color: rgba(21, 156, 255, 0.35);
  box-shadow: var(--shadow);
}

.bento-card:nth-child(1),
.bento-card:nth-child(4) {
  grid-column: span 7;
}

.bento-card:nth-child(2),
.bento-card:nth-child(3) {
  grid-column: span 5;
}

.bento-card:nth-child(5),
.bento-card:nth-child(6) {
  grid-column: span 6;
}

.bento-card.featured {
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-color: transparent;
}

.bento-card::before {
  position: absolute;
  content: "";
  width: 240px;
  height: 240px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 156, 255, 0.17), transparent 70%);
}

.bento-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(21, 156, 255, 0.14), rgba(127, 114, 255, 0.13));
  color: var(--blue);
  display: grid;
  place-items: center;
}

.featured .service-icon {
  background: rgba(255, 255, 255, 0.11);
  color: var(--cyan);
}

.bento-top > span:last-child {
  color: #a4b3c2;
  font-family: var(--display);
  font-size: 0.68rem;
}

.bento-card h3 {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 58px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.bento-card p {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.6);
}

.card-link {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.featured .card-link {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--cyan);
}

.bento-card:hover .card-link {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}

.innovation-band {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.innovation-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 90px;
  align-items: center;
}

.innovation-copy > p:not(.eyebrow) {
  margin: 25px 0 33px;
  color: rgba(255, 255, 255, 0.61);
  line-height: 1.78;
}

.innovation-stack {
  display: grid;
  gap: 12px;
}

.innovation-item {
  padding: 24px 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.innovation-item:hover {
  transform: translateX(-7px);
  border-color: rgba(89, 219, 255, 0.28);
  background: rgba(21, 156, 255, 0.09);
}

.innovation-item .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(21, 156, 255, 0.12);
  color: var(--cyan);
}

.innovation-item h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 560;
}

.innovation-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.76rem;
}

.innovation-item > span:last-child {
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.64rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.audience-panel {
  position: relative;
  min-height: 630px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
}

.audience-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-panel::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(to top, rgba(3, 13, 29, 0.96), rgba(3, 13, 29, 0.08) 72%);
}

.audience-content {
  position: absolute;
  z-index: 2;
  inset: auto 36px 38px;
}

.audience-content .audience-label {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.audience-content h3 {
  max-width: 450px;
  margin: 13px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.audience-content p {
  max-width: 470px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.text-link {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 750;
}

.text-link svg {
  width: 16px;
  color: var(--cyan);
  transition: transform 0.3s ease;
}

.text-link:hover svg {
  transform: translate(3px, -3px);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(21, 156, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-1000), var(--navy-800));
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-details {
  display: grid;
  gap: 11px;
}

.contact-details a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.83rem;
  transition: color 0.25s ease;
}

.contact-details a:hover {
  color: var(--cyan);
}

.contact-details .service-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

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

.contact-form label {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.33);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(89, 219, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  font-size: 0.65rem;
}

.form-status.is-ready {
  color: var(--mint);
}

.floating-contact {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  position: relative;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 35px rgba(4, 21, 45, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-contact .float-whatsapp {
  background: var(--whatsapp);
}

.floating-contact .float-email {
  background: linear-gradient(135deg, #087ed0, var(--blue));
}

.floating-contact a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 44px rgba(4, 21, 45, 0.28);
}

.floating-contact a::before {
  position: absolute;
  right: calc(100% + 10px);
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--navy-950);
  color: var(--white);
  content: attr(data-label);
  font-size: 0.66rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.floating-contact a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-footer {
  padding: 58px 0 25px;
  background: #020b18;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 250px 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand {
  width: 220px;
  padding: 9px;
  border-radius: 13px;
  background: var(--white);
}

.footer-copy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.76rem;
}

.footer-column h3 {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cyan);
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.62rem;
}

/* Service pages */
.service-hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(21, 156, 255, 0.18), transparent 33%),
    linear-gradient(135deg, var(--navy-1000), #0b2c55);
  color: var(--white);
}

.service-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.breadcrumbs {
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.46);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.68rem;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.service-hero .display-title {
  font-size: clamp(3rem, 5.1vw, 5.5rem);
}

.service-hero-lead {
  margin: 25px 0 31px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.service-hero-image {
  position: relative;
  height: 525px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px 34px 120px 34px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34);
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px 25px 108px 25px;
  object-fit: cover;
}

.service-hero-image::after {
  position: absolute;
  content: "";
  inset: 11px;
  border-radius: 25px 25px 108px 25px;
  background: linear-gradient(135deg, transparent, rgba(21, 156, 255, 0.12));
}

.service-icon-large {
  position: absolute;
  z-index: 3;
  left: -26px;
  bottom: 44px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.service-icon-large .icon {
  width: 36px;
  height: 36px;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(5, 28, 58, 0.08);
}

.outcome-item {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.outcome-item:last-child {
  border-right: 0;
}

.outcome-item span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-item h3 {
  margin: 11px 0 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 560;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 100px;
}

.service-intro-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.service-intro-copy p {
  color: var(--muted);
}

.service-intro-copy .service-note {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(21, 156, 255, 0.22);
  border-radius: 14px;
  background: rgba(21, 156, 255, 0.07);
  color: #48627d;
  font-size: 0.76rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.deliverable {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.deliverable:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 156, 255, 0.35);
  background: var(--white);
}

.deliverable .service-icon {
  width: 45px;
  height: 45px;
  border-radius: 13px;
}

.deliverable h3 {
  margin: 28px 0 8px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 570;
}

.deliverable p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card {
  padding: 27px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.process-card span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.66rem;
}

.process-card h3 {
  margin: 38px 0 9px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 560;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.related-card h3 {
  margin: 32px 0 8px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 560;
}

.related-card p {
  min-height: 70px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.76rem;
}

.related-card a {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 750;
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 560;
}

.faq-item button i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-style: normal;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 60px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  transition: padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 25px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.2,.8,.2,1), transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: 200px 1fr auto; gap: 18px; }
  .brand { width: 190px; }
  .main-nav { gap: 17px; }
  .nav-actions .button { display: none; }
  .hero-layout,
  .service-hero-layout { gap: 38px; }
  .hero-frame { height: 555px; }
  .innovation-grid,
  .contact-layout { gap: 60px; }
  .footer-grid { gap: 45px; }
}

@media (max-width: 880px) {
  .container { width: min(760px, calc(100% - 36px)); }
  .section { padding: 92px 0; }
  .site-header,
  .site-header.is-scrolled,
  .site-header.header-solid { height: 72px; }
  .nav-shell { display: flex; justify-content: space-between; }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.07);
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.header-solid .menu-toggle {
    border-color: var(--line);
    background: var(--surface);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.3s ease;
  }

  .site-header.is-scrolled .menu-toggle span,
  .site-header.header-solid .menu-toggle span { background: var(--ink); }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 0;
    padding: 105px 22px 35px;
    background: rgba(3, 13, 29, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  }

  .main-nav.is-open { transform: none; }
  .main-nav > a,
  .nav-dropdown > button,
  .site-header.is-scrolled .main-nav > a,
  .site-header.is-scrolled .nav-dropdown > button,
  .site-header.header-solid .main-nav > a,
  .site-header.header-solid .nav-dropdown > button {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    justify-content: space-between;
    text-align: left;
    font-size: 1.05rem;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-dropdown.is-open .dropdown-panel {
    max-height: 580px;
    padding: 10px 0;
  }

  .dropdown-panel a { color: var(--white); }
  .dropdown-panel small { color: rgba(255, 255, 255, 0.42); }
  .dropdown-panel a:hover { background: rgba(255, 255, 255, 0.06); }
  .nav-actions { margin-left: auto; }

  .hero { min-height: auto; padding: 128px 0 90px; }
  .hero-layout,
  .service-hero-layout,
  .innovation-grid,
  .contact-layout,
  .service-intro-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 740px; }
  .hero-frame { max-width: 680px; height: 570px; }
  .tech-marquee { margin-top: 65px; }

  .bento-card:nth-child(n) { grid-column: span 6; }
  .innovation-grid { gap: 55px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-panel { min-height: 570px; }

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

  .service-hero { min-height: auto; padding: 120px 0 85px; }
  .service-hero-image { max-width: 680px; }
  .outcome-strip { grid-template-columns: 1fr; }
  .outcome-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .outcome-item:last-child { border-bottom: 0; }
  .service-intro-grid { gap: 50px; }
  .service-intro-copy { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 540px); }
  .section { padding: 76px 0; }
  .brand { width: 174px; }
  .nav-actions { display: none; }
  .display-title { font-size: clamp(3rem, 14vw, 4.6rem); }
  .section-title { font-size: clamp(2.3rem, 11vw, 3.4rem); }

  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-frame { height: 430px; border-radius: 30px 30px 105px 30px; }
  .hero-frame img,
  .hero-frame::after { border-radius: 21px 21px 93px 21px; }
  .signal-card { min-width: 154px; padding: 11px; }
  .signal-card-a { left: 7px; bottom: 28px; }
  .signal-card-b { right: 3px; top: 30px; }
  .tech-track { min-height: 66px; }

  .bento-card:nth-child(n) { grid-column: span 12; }
  .bento-card { min-height: 295px; padding: 25px; }
  .bento-card h3 { margin-top: 44px; }
  .innovation-item { grid-template-columns: 44px 1fr; }
  .innovation-item > span:last-child { display: none; }
  .audience-panel { min-height: 500px; }
  .audience-content { inset: auto 25px 27px; }
  .audience-content h3 { font-size: 2.35rem; }

  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-intro { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: 14px; bottom: 14px; }
  .floating-contact a { width: 52px; height: 52px; border-radius: 16px; }

  .service-hero .display-title { font-size: clamp(3rem, 13vw, 4.6rem); }
  .service-hero-image { height: 410px; }
  .service-icon-large { left: 18px; bottom: 26px; }
  .deliverables-grid,
  .process-grid,
  .related-grid { grid-template-columns: 1fr; }
  .deliverable { min-height: 190px; }
  .faq-answer p { padding-right: 15px; }
}

@media (pointer: coarse), (max-width: 880px) {
  .cursor-glow { display: none; }
}

@media (pointer: fine) and (min-width: 881px) {
  .cursor-glow { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* Professional glass refinement */
:root {
  --glass-white: rgba(255, 255, 255, 0.72);
  --glass-white-strong: rgba(255, 255, 255, 0.88);
  --glass-dark: rgba(6, 21, 45, 0.66);
  --glass-border: rgba(255, 255, 255, 0.62);
  --glass-shadow: 0 24px 70px rgba(5, 28, 58, 0.13);
  --icon-shadow: 0 14px 34px rgba(21, 156, 255, 0.22);
}

body {
  background:
    radial-gradient(circle at 8% 20%, rgba(89, 219, 255, 0.08), transparent 24%),
    radial-gradient(circle at 92% 55%, rgba(127, 114, 255, 0.07), transparent 25%),
    #f7fafe;
}

.site-header {
  padding-block: 8px;
  background: linear-gradient(180deg, rgba(3, 13, 29, 0.48), rgba(3, 13, 29, 0.16));
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.site-header.is-scrolled,
.site-header.header-solid {
  padding-block: 7px;
  background: rgba(247, 251, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 40px rgba(5, 28, 58, 0.1);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
}

.nav-shell {
  grid-template-columns: 218px 1fr auto;
}

.brand {
  width: 214px;
  height: 60px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 32px rgba(4, 21, 45, 0.11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand img {
  width: 260px;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-header.is-scrolled .brand,
.site-header.header-solid .brand {
  height: 52px;
  border-color: rgba(10, 33, 66, 0.08);
  box-shadow: 0 9px 28px rgba(5, 28, 58, 0.08);
}

.main-nav {
  gap: 10px;
}

.main-nav > a,
.nav-dropdown > button {
  padding: 10px 13px;
  border-radius: 12px;
  font-weight: 720;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.main-nav > a::after,
.nav-dropdown > button::after {
  display: none;
}

.main-nav > a:hover,
.nav-dropdown > button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.site-header.is-scrolled .main-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover,
.site-header.header-solid .main-nav > a:hover,
.site-header.header-solid .nav-dropdown > button:hover,
.main-nav > a.active {
  background: rgba(21, 156, 255, 0.09);
  color: #0876c6;
}

.dropdown-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(247, 251, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 30px 90px rgba(4, 21, 45, 0.2);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
}

.dropdown-panel a {
  border: 1px solid transparent;
}

.dropdown-panel a:hover {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 9px 24px rgba(5, 28, 58, 0.07);
}

.dropdown-panel .mini-icon {
  width: 43px;
  height: 43px;
  flex-basis: 43px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(211, 235, 255, 0.72));
  color: #078bea;
  box-shadow: 0 10px 26px rgba(21, 156, 255, 0.18);
}

.dropdown-panel .mini-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.15;
}

.button {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  background: linear-gradient(135deg, #087ed2 0%, #159cff 52%, #5fdcff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 15px 38px rgba(21, 156, 255, 0.27);
}

.button::before {
  position: absolute;
  content: "";
  width: 42%;
  height: 180%;
  top: -40%;
  left: -60%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(18deg);
  transition: left 0.55s ease;
}

.button:hover::before {
  left: 120%;
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 30px rgba(5, 28, 58, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.icon {
  stroke-width: 2.15;
}

.hero-frame,
.service-hero-image {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 45px 120px rgba(0, 0, 0, 0.38),
    0 0 70px rgba(21, 156, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.hero-signals span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.signal-card {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(247, 251, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.signal-card .signal-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(200, 229, 255, 0.78));
  box-shadow: var(--icon-shadow);
}

.signal-card .signal-icon .icon {
  width: 24px;
  height: 24px;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(89, 219, 255, 0.14), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(127, 114, 255, 0.1), transparent 30%),
    linear-gradient(145deg, #edf5fb, #f8fbfe);
}

.bento-card {
  border-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.83), rgba(242, 248, 253, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 55px rgba(5, 28, 58, 0.08);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.bento-card:hover {
  border-color: rgba(89, 219, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 30px 80px rgba(5, 28, 58, 0.15),
    0 0 0 1px rgba(21, 156, 255, 0.08);
}

.bento-card.featured {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 88% 10%, rgba(89, 219, 255, 0.2), transparent 35%),
    linear-gradient(145deg, rgba(6, 21, 45, 0.94), rgba(16, 55, 100, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 26px 72px rgba(4, 21, 45, 0.2);
}

.service-icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(202, 232, 255, 0.72));
  color: #078bea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    var(--icon-shadow);
}

.service-icon .icon {
  width: 29px;
  height: 29px;
  stroke-width: 2.25;
  filter: drop-shadow(0 5px 8px rgba(21, 156, 255, 0.18));
}

.featured .service-icon,
.innovation-item .service-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(21, 156, 255, 0.12));
  color: #72e2ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 15px 34px rgba(0, 0, 0, 0.18),
    0 0 30px rgba(89, 219, 255, 0.1);
}

.card-link {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(5, 28, 58, 0.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card-link .icon {
  width: 20px;
  height: 20px;
}

.featured .card-link {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.innovation-item,
.process-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.innovation-item:hover {
  border-color: rgba(89, 219, 255, 0.42);
  background: rgba(21, 156, 255, 0.13);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.audience-content {
  inset: auto 26px 26px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(3, 13, 29, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 22px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.contact-form {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 34px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.floating-contact a {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 17px 42px rgba(4, 21, 45, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.floating-contact a .icon {
  width: 27px;
  height: 27px;
  stroke-width: 2.25;
}

.footer-brand {
  width: 230px;
  height: 82px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.footer-brand img {
  width: 280px;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
}

.outcome-strip {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 22px 70px rgba(5, 28, 58, 0.1);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.deliverable,
.related-card {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 16px 48px rgba(5, 28, 58, 0.07);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.deliverable:hover,
.related-card:hover {
  border-color: rgba(89, 219, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--glass-shadow);
}

.service-icon-large {
  width: 92px;
  height: 92px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 27px;
  background: rgba(247, 251, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 24px 64px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(21, 156, 255, 0.15);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.service-icon-large .icon {
  width: 42px;
  height: 42px;
  stroke-width: 2.25;
}

.faq-list {
  border-top: 0;
}

.faq-item {
  margin-bottom: 11px;
  padding-inline: 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 12px 36px rgba(5, 28, 58, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.faq-item button i {
  width: 39px;
  height: 39px;
  flex-basis: 39px;
  border-color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(202, 232, 255, 0.7));
  box-shadow: 0 9px 24px rgba(21, 156, 255, 0.13);
}

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: 202px 1fr auto; }
  .brand { width: 198px; }
  .brand img { width: 248px; }
}

@media (max-width: 880px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.header-solid { padding-block: 6px; }

  .brand,
  .site-header.is-scrolled .brand,
  .site-header.header-solid .brand {
    width: 190px;
    height: 54px;
  }

  .brand img { width: 238px; }

  .main-nav > a,
  .nav-dropdown > button,
  .site-header.is-scrolled .main-nav > a,
  .site-header.is-scrolled .nav-dropdown > button,
  .site-header.header-solid .main-nav > a,
  .site-header.header-solid .nav-dropdown > button {
    border-radius: 0;
    background: transparent;
  }

  .dropdown-panel {
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 600px) {
  .brand,
  .site-header.is-scrolled .brand,
  .site-header.header-solid .brand {
    width: 178px;
    height: 50px;
  }

  .brand img { width: 226px; }
  .audience-content { inset: auto 16px 16px; padding: 22px; }
  .floating-contact a { width: 54px; height: 54px; border-radius: 18px; }
  .service-icon { width: 57px; height: 57px; }
  .service-icon .icon { width: 27px; height: 27px; }
}

/* Interaction and readability polish */
@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(7px);
    clip-path: inset(0 0 42% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes eyebrowLine {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.js [data-reveal] .display-title,
.js [data-reveal] .section-title {
  opacity: 0;
}

.js [data-reveal].is-visible .display-title,
.js [data-reveal].is-visible .section-title {
  animation: titleReveal 0.92s cubic-bezier(.16, 1, .3, 1) 0.08s both;
}

.js [data-reveal].is-visible .eyebrow::before {
  transform-origin: left center;
  animation: eyebrowLine 0.7s cubic-bezier(.16, 1, .3, 1) 0.15s both;
}

.gradient-text {
  background-size: 210% auto;
  animation: gradientFlow 6s ease-in-out infinite;
}

@media (min-width: 881px) {
  .dropdown-panel {
    z-index: 30;
    border-color: rgba(129, 205, 255, 0.24);
    background:
      radial-gradient(circle at 10% 0%, rgba(21, 156, 255, 0.18), transparent 34%),
      rgba(3, 13, 29, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 34px 100px rgba(2, 11, 24, 0.38);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
  }

  .dropdown-panel a {
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.035);
  }

  .dropdown-panel a:hover {
    border-color: rgba(89, 219, 255, 0.26);
    background: rgba(21, 156, 255, 0.13);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  }

  .dropdown-panel small {
    color: rgba(255, 255, 255, 0.52);
  }

  .dropdown-panel .mini-icon {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(21, 156, 255, 0.12));
    color: #64dfff;
    box-shadow: 0 11px 28px rgba(0, 0, 0, 0.2);
  }
}

.audience-panel {
  min-height: 650px;
  background: var(--navy-950);
  display: grid;
  grid-template-rows: minmax(390px, 1fr) auto;
}

.audience-panel img {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
}

.audience-panel::after {
  inset: 0 0 auto;
  height: 65%;
  background: linear-gradient(to top, rgba(3, 13, 29, 0.45), transparent 56%);
  pointer-events: none;
}

.audience-content {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  inset: auto;
  padding: 30px 34px 32px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 0%, rgba(21, 156, 255, 0.16), transparent 34%),
    rgba(3, 13, 29, 0.97);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.audience-content h3 {
  max-width: 500px;
  font-size: clamp(1.85rem, 2.7vw, 2.8rem);
}

.faq-answer {
  opacity: 0;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(.2, .8, .2, 1), opacity 0.28s ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  grid-template-rows: 1fr;
}

.faq-item button i {
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-open button i {
  color: #ffffff;
  background: linear-gradient(135deg, #0786df, #4bcfff);
  box-shadow: 0 12px 30px rgba(21, 156, 255, 0.25);
  transform: rotate(180deg);
}

@media (max-width: 880px) {
  .site-header {
    overflow: visible;
  }

  .nav-shell {
    position: relative;
  }

  .menu-toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 9px) 14px auto;
    width: auto;
    max-height: calc(100dvh - 94px);
    padding: 18px;
    border: 1px solid rgba(115, 198, 255, 0.24);
    border-radius: 24px;
    background:
      radial-gradient(circle at 90% 0%, rgba(21, 156, 255, 0.2), transparent 34%),
      rgba(3, 13, 29, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 30px 90px rgba(2, 11, 24, 0.42);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.32s cubic-bezier(.2, .8, .2, 1);
    backdrop-filter: blur(28px) saturate(145%);
    -webkit-backdrop-filter: blur(28px) saturate(145%);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a,
  .nav-dropdown > button,
  .site-header.is-scrolled .main-nav > a,
  .site-header.is-scrolled .nav-dropdown > button,
  .site-header.header-solid .main-nav > a,
  .site-header.header-solid .nav-dropdown > button {
    padding: 15px 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
  }

  .main-nav > a:hover,
  .nav-dropdown > button:hover,
  .main-nav > a.active {
    border-color: rgba(89, 219, 255, 0.18);
    background: rgba(21, 156, 255, 0.12);
    color: #ffffff;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 0.4s cubic-bezier(.2, .8, .2, 1), padding 0.35s ease, opacity 0.25s ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-dropdown:not(.is-open) .dropdown-panel {
    max-height: 0 !important;
    padding-block: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .nav-dropdown.is-open .dropdown-panel {
    max-height: 620px !important;
    padding: 9px 0 4px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown-panel a {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.88);
  }

  .dropdown-panel a:hover {
    border-color: rgba(89, 219, 255, 0.2);
    background: rgba(21, 156, 255, 0.12);
    color: #ffffff;
  }

  .dropdown-panel small {
    color: rgba(255, 255, 255, 0.5);
  }

  .audience-panel {
    min-height: 610px;
    grid-template-rows: minmax(340px, 1fr) auto;
  }
}

@media (max-width: 600px) {
  .main-nav {
    inset-inline: 8px;
    padding: 14px;
    border-radius: 21px;
  }

  .audience-panel {
    min-height: 570px;
    grid-template-rows: minmax(300px, 1fr) auto;
  }

  .audience-content {
    padding: 25px 24px 27px;
  }

  .audience-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 880px) {
  .main-nav {
    overflow-x: hidden;
  }

  .nav-dropdown,
  .dropdown-panel,
  .dropdown-panel a {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .dropdown-panel {
    left: auto;
    right: auto;
    margin: 0;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-panel {
    padding: 9px 3px 4px !important;
  }

  .dropdown-panel a,
  .dropdown-panel a:hover,
  .dropdown-panel a:focus-visible {
    margin: 0;
    transform: none;
  }

  .dropdown-panel a > span:last-child {
    min-width: 0;
  }

  .dropdown-panel strong,
  .dropdown-panel small {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@keyframes marqueeCentered {
  from { transform: translateX(-50%); }
  to { transform: translateX(-100%); }
}

@media (min-width: 881px) {
  .tech-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .tech-track {
    position: relative;
    left: 50%;
    animation-name: marqueeCentered;
  }
}

@media (max-width: 880px) {
  .nav-dropdown {
    margin-inline: 0;
    padding-inline: 0;
  }

  .dropdown-panel,
  .nav-dropdown.is-open .dropdown-panel {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    transform: none !important;
  }

  .nav-dropdown.is-open .dropdown-panel {
    padding: 9px 0 4px !important;
  }

  .dropdown-panel a {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
  }
}
