:root {
  --ink: #0a152f;
  --muted: #5c6a80;
  --line: #dce7f1;
  --paper: #f7fbff;
  --white: #ffffff;
  --blue: #1766c2;
  --blue-dark: #0c3975;
  --green: #16a43c;
  --green-soft: #dff7e7;
  --cyan: #10b5d8;
  --gold: #f4b942;
  --shadow: 0 24px 70px rgba(10, 21, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(247, 251, 255, 0.84);
  border-bottom: 1px solid rgba(220, 231, 241, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(10, 21, 47, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(23, 102, 194, 0.16);
  background: #eefafa;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.brand small {
  margin-top: 4px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #243756;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.64fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  min-height: 92vh;
  padding: 122px clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.82) 48%, rgba(224, 246, 255, 0.78)),
    url("assets/software-workspace.jpg") right center / 52% 100% no-repeat,
    radial-gradient(circle at 80% 20%, rgba(22, 164, 60, 0.12), transparent 30%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 1) 0%, rgba(247, 251, 255, 0.94) 42%, rgba(247, 251, 255, 0.58) 100%),
    linear-gradient(180deg, rgba(10, 21, 47, 0.06), rgba(10, 21, 47, 0));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 72px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 251, 255, 0), var(--paper));
}

.hero-media {
  position: absolute;
  inset: 76px 0 auto auto;
  width: min(54vw, 720px);
  height: min(70vh, 620px);
  opacity: 0.86;
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  top: 50%;
  right: -54px;
  width: min(38vw, 460px);
  height: min(38vw, 420px);
  aspect-ratio: 1.25;
  object-fit: cover;
  object-position: top center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px 0 0 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  animation: logoFloat 7s ease-in-out infinite;
}

.signal {
  position: absolute;
  border: 1px solid rgba(23, 102, 194, 0.14);
  border-radius: 50%;
}

.signal-one {
  right: 28px;
  top: 18px;
  width: 440px;
  height: 440px;
  animation: slowSpin 18s linear infinite;
}

.signal-two {
  right: 140px;
  top: 138px;
  width: 300px;
  height: 300px;
  border-color: rgba(22, 164, 60, 0.16);
  animation: slowSpin 24s linear infinite reverse;
}

.signal-three {
  right: -40px;
  top: 250px;
  width: 180px;
  height: 180px;
  border-color: rgba(16, 181, 216, 0.18);
  animation: pulseRing 4s ease-in-out infinite;
}

.hero-content,
.delivery-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.15vw, 5.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: #31425e;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(23, 102, 194, 0.24);
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.secondary {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(23, 102, 194, 0.18);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(23, 102, 194, 0.14);
  border-radius: 999px;
  color: #243756;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-badges svg,
.trust-strip svg,
.service-mark svg,
.project-type svg,
.process-grid svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.delivery-panel {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.panel-topline strong {
  color: var(--green);
}

.panel-grid {
  display: grid;
  gap: 10px;
}

.panel-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(247, 251, 255, 0.9);
}

.panel-grid span {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #e8f2ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.panel-grid strong {
  font-size: 1rem;
}

.panel-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -18px clamp(18px, 5vw, 72px) 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: 0 18px 44px rgba(10, 21, 47, 0.08);
}

.trust-strip div {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: var(--white);
}

.trust-strip svg {
  margin-bottom: 8px;
  color: var(--blue);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  scroll-margin-top: 92px;
  padding: 98px clamp(18px, 5vw, 72px);
}

.hero,
.trust-strip {
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

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

.section-heading h2,
.solutions-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:last-child,
.solutions-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.service-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(10, 21, 47, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 20px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.service-card:hover {
  border-color: rgba(23, 102, 194, 0.35);
  box-shadow: 0 22px 52px rgba(10, 21, 47, 0.1);
  transform: translateY(-4px);
}

.projects {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(233, 246, 252, 0.9)),
    linear-gradient(90deg, rgba(23, 102, 194, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 102, 194, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.project-card {
  position: relative;
  display: grid;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(10, 21, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  box-shadow: 0 28px 70px rgba(10, 21, 47, 0.13);
  transform: translateY(-4px);
}

.project-card.featured {
  grid-row: span 3;
  min-height: 642px;
}

.project-graphic,
.project-photo {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  background: linear-gradient(135deg, #091b36, #0d4e9d);
}

.project-card.featured .project-graphic,
.project-card.featured .project-photo {
  min-height: 330px;
}

.project-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover .project-photo img {
  transform: scale(1.05);
}

.project-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(9, 27, 54, 0), rgba(9, 27, 54, 0.58));
}

.project-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 21, 47, 0.58);
  font-size: 0.83rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.project-overlay svg {
  width: 16px;
  height: 16px;
}

.project-graphic::before {
  position: absolute;
  inset: 20px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.dashboard-graphic span {
  position: absolute;
  left: 44px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  animation: graphSlide 3.5s ease-in-out infinite;
}

.dashboard-graphic span:nth-child(1) {
  top: 78px;
  width: 58%;
}

.dashboard-graphic span:nth-child(2) {
  top: 126px;
  width: 72%;
  animation-delay: 260ms;
}

.dashboard-graphic span:nth-child(3) {
  top: 174px;
  width: 44%;
  animation-delay: 520ms;
}

.dashboard-graphic i {
  position: absolute;
  right: 52px;
  bottom: 52px;
  width: 150px;
  height: 150px;
  border: 18px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--green);
  border-right-color: var(--cyan);
  border-radius: 50%;
  animation: slowSpin 5s linear infinite;
}

.commerce-graphic span,
.cloud-graphic span {
  position: absolute;
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.commerce-graphic span:nth-child(1) {
  top: 46px;
  left: 40px;
  width: 108px;
  height: 88px;
  animation: cardLift 3.8s ease-in-out infinite;
}

.commerce-graphic span:nth-child(2) {
  top: 70px;
  left: 168px;
  width: 86px;
  height: 64px;
  animation: cardLift 3.8s ease-in-out infinite 340ms;
}

.commerce-graphic span:nth-child(3) {
  right: 42px;
  bottom: 44px;
  width: 154px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
}

.ai-graphic {
  display: grid;
  place-items: center;
}

.ai-graphic span {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  animation: nodeDrift 4.5s ease-in-out infinite;
}

.ai-graphic span:nth-child(1) {
  transform: translate(-86px, -34px);
}

.ai-graphic span:nth-child(2) {
  transform: translate(78px, -44px);
  animation-delay: 300ms;
}

.ai-graphic span:nth-child(3) {
  transform: translate(-22px, 62px);
  animation-delay: 600ms;
}

.ai-graphic span:nth-child(4) {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  transform: translate(0, 0);
  animation-delay: 900ms;
}

.cloud-graphic span:nth-child(1) {
  top: 54px;
  left: 48px;
  width: 190px;
  height: 78px;
}

.cloud-graphic span:nth-child(2) {
  top: 82px;
  right: 58px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(22, 164, 60, 0.28);
  animation: pulseRing 3.5s ease-in-out infinite;
}

.cloud-graphic span:nth-child(3) {
  right: 70px;
  bottom: 52px;
  width: 170px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
}

.project-content {
  padding: 26px;
}

.project-type {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-content h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.1;
}

.project-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.project-content ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 0;
  color: #263956;
  font-weight: 700;
  list-style: none;
}

.project-content li {
  position: relative;
  padding-left: 20px;
}

.project-content li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.service-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 9px;
  color: var(--blue);
  background: #e8f2ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-mark svg {
  width: 22px;
  height: 22px;
}

.service-card:nth-child(2n) .service-mark {
  color: var(--green);
  background: var(--green-soft);
}

.service-card h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-card p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.solutions {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: linear-gradient(180deg, var(--white), #f4fbff);
}

.solutions-copy {
  max-width: 740px;
}

.solutions-copy p {
  margin-top: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #263956;
  font-weight: 700;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  content: "";
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--green), inset 0 0 0 7px var(--white);
}

.system-visual {
  overflow: hidden;
  border: 1px solid rgba(220, 231, 241, 0.82);
  border-radius: 16px;
  background: #091b36;
  box-shadow: 0 28px 80px rgba(10, 21, 47, 0.18);
}

.system-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.72;
}

.screen-header {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.screen-header span:nth-child(2) {
  background: var(--green);
}

.screen-header span:nth-child(3) {
  background: #ffffff;
}

.screen-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(16px, 3vw, 28px);
}

.metric-card,
.activity-feed {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-card.wide {
  grid-column: 1 / -1;
}

.metric-card span {
  display: block;
  color: #a9bdd4;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.meter {
  height: 10px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.meter i {
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.activity-feed {
  grid-column: 1 / -1;
  display: grid;
  align-content: center;
  gap: 12px;
}

.activity-feed span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.activity-feed span:nth-child(1) {
  width: 92%;
}

.activity-feed span:nth-child(2) {
  width: 68%;
}

.activity-feed span:nth-child(3) {
  width: 82%;
}

.activity-feed span:nth-child(4) {
  width: 54%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.process-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
}

.process-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(10, 21, 47, 0.95), rgba(12, 57, 117, 0.92)),
    url("assets/team-delivery.jpg") center right / cover no-repeat;
  color: var(--white);
}

.contact-copy p {
  max-width: 660px;
  margin-top: 18px;
  color: #c5d4e7;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf3ff;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: #eaf3ff;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(16, 181, 216, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: #c5d4e7;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #d8e6f6;
  background: #081427;
}

.site-footer div {
  display: grid;
  gap: 5px;
  max-width: 920px;
}

.site-footer span {
  color: #98aac2;
  line-height: 1.55;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.site-footer small {
  margin-top: 8px;
  color: #7f91aa;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(calc(-50% - 10px)) translateX(-8px);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes graphSlide {
  0%,
  100% {
    transform: scaleX(0.82);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes cardLift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes nodeDrift {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

@media (max-width: 1020px) {
  .hero,
  .solutions,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-media {
    width: 100%;
    opacity: 0.32;
  }

  .hero-media img {
    width: min(82vw, 520px);
  }

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

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

  .project-card.featured {
    grid-row: auto;
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    padding: 112px 18px 42px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.15rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin: 0 18px;
  }

  .section {
    padding: 72px 18px;
  }

  .section-heading {
    gap: 16px;
  }

  .service-grid,
  .project-grid,
  .process-grid,
  .screen-body {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.featured {
    min-height: auto;
  }

  .project-card.featured .project-graphic,
  .project-card.featured .project-photo,
  .project-photo,
  .project-graphic {
    min-height: 220px;
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .process-grid span {
    margin-bottom: 28px;
  }

  .metric-card.wide,
  .activity-feed {
    grid-column: auto;
  }

  .contact {
    background:
      linear-gradient(135deg, rgba(10, 21, 47, 0.97), rgba(12, 57, 117, 0.94)),
      url("assets/team-delivery.jpg") center / cover no-repeat;
  }

  .contact-form {
    padding: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
