:root {
  --navy-950: #050d19;
  --navy-900: #071426;
  --navy-800: #0b1d35;
  --navy-700: #123057;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --cyan-light: #67e8f9;
  --text: #0f172a;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --line: #e2e8f0;
  --soft: #f5f8fc;
  --white: #fff;
  --success: #16a34a;
  --error: #dc2626;
  --shadow-sm: 0 8px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.16);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.next-page-shell {
  display: contents;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

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

img,
svg {
  display: block;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section {
  padding: 112px 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.eyebrow-dark {
  color: var(--cyan-light);
}

.eyebrow-dark::before {
  background: var(--cyan);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.12);
}

.hero .eyebrow::before {
  display: none;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.section-heading h2 span {
  color: var(--blue);
}

.section-heading p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading-centered h2 {
  margin-bottom: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #2778f6);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.38);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button-white {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 20, 38, 0.16);
}

.button-sm {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.83rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 68px;
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(7, 20, 38, 0.9);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 9px 24px rgba(37, 99, 235, 0.25);
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--cyan-light);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 30px);
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: #aebed2;
  font-size: 0.83rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
}

.nav-toggle .close-icon {
  display: none;
}

.nav-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.nav-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 810px;
  padding: 150px 0 0;
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(5, 13, 25, 0.5), transparent);
  content: "";
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-orb-one {
  top: -260px;
  right: -140px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.34), transparent 68%);
}

.hero-orb-two {
  bottom: -300px;
  left: -230px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.17), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: 65px;
}

.hero-content {
  padding-bottom: 66px;
}

.hero-content h1 {
  margin-bottom: 25px;
  font-size: clamp(2.75rem, 5.25vw, 4.72rem);
  font-weight: 800;
  letter-spacing: -0.057em;
  line-height: 1.04;
}

.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #a7c9ff 8%, #67e8f9 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 31px;
  color: #aebed2;
  font-size: 1.075rem;
  line-height: 1.78;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin-top: 35px;
  color: #b8c6d8;
  font-size: 0.77rem;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.13);
  stroke-width: 3;
}

.hero-visual {
  position: relative;
  min-width: 0;
  transform: perspective(1200px) rotateY(-1.5deg);
}

.dashboard-glow {
  position: absolute;
  inset: 8% 8%;
  border-radius: 40%;
  background: rgba(37, 99, 235, 0.36);
  filter: blur(70px);
}

.dashboard-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(12, 31, 55, 0.92);
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.window-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 18px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 30, 0.55);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fb7185;
}

.window-dots i:nth-child(2) {
  background: #fbbf24;
}

.window-dots i:nth-child(3) {
  background: #34d399;
}

.window-address {
  display: flex;
  flex: 1;
  max-width: 260px;
  height: 23px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: #7389a3;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.53rem;
}

.window-address span,
.secure-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}

.secure-dot {
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

.dashboard-body {
  display: flex;
  height: 430px;
}

.mock-sidebar {
  display: flex;
  width: 60px;
  flex-shrink: 0;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding-top: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 13, 26, 0.46);
}

.mock-logo {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 0.7rem;
  font-weight: 800;
}

.mock-sidebar span {
  width: 17px;
  height: 5px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.23);
}

.mock-sidebar span.active {
  height: 17px;
  background: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.mock-main {
  flex: 1;
  min-width: 0;
  padding: 21px;
}

.mock-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.mock-heading div:first-child {
  display: flex;
  flex-direction: column;
}

.mock-heading small {
  color: #627b99;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.mock-heading strong {
  margin-top: 2px;
  font-size: 0.95rem;
}

.mock-avatar {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: var(--cyan-light);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.52rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  margin-bottom: 13px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-card {
  position: relative;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-primary::after {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  content: "";
  filter: blur(16px);
}

.metric-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 7px;
  color: #91b4ff;
  background: rgba(37, 99, 235, 0.17);
}

.metric-icon.cyan {
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.13);
}

.metric-icon.violet {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.13);
}

.metric-icon svg {
  width: 13px;
  height: 13px;
}

.metric-card small,
.metric-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card small {
  color: #7187a2;
  font-size: 0.52rem;
}

.metric-card strong {
  margin: 1px 0 9px;
  font-size: 0.72rem;
}

.metric-card .trend {
  color: #55d7b0;
  font-size: 0.46rem;
  font-weight: 700;
}

.chart-panel {
  padding: 13px 14px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.028);
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.63rem;
  font-weight: 700;
}

.chart-head small {
  color: #657d9a;
  font-size: 0.46rem;
  font-weight: 500;
}

.chart {
  position: relative;
  height: 142px;
  margin-top: 7px;
}

.chart > svg {
  position: absolute;
  inset: 8px 0 17px;
  width: 100%;
  height: calc(100% - 25px);
  overflow: visible;
}

.chart-area {
  fill: url("#chartFill");
  stroke: none;
}

.chart-path {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-lines {
  position: absolute;
  inset: 9px 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines i {
  height: 1px;
  background: rgba(255, 255, 255, 0.055);
}

.chart-labels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #536b88;
  font-size: 0.4rem;
}

.activity-row {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.activity-row > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 9px;
}

.activity-row i {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
}

.activity-row i.green {
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.08);
}

.activity-row i.blue {
  background: #60a5fa;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.08);
}

.activity-row span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.activity-row strong,
.activity-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-row strong {
  font-size: 0.48rem;
}

.activity-row small {
  color: #58708d;
  font-size: 0.39rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(14, 36, 63, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(15px);
}

.floating-card > span,
.floating-card > svg {
  display: grid;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 8px;
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.13);
  font-size: 0.64rem;
  font-weight: 800;
}

.floating-card > svg {
  padding: 8px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.floating-card strong {
  font-size: 0.62rem;
}

.floating-card small {
  color: #7990aa;
  font-size: 0.48rem;
}

.floating-code {
  top: 16%;
  left: -39px;
  animation: float 5s ease-in-out infinite;
}

.floating-cloud {
  right: -37px;
  bottom: 18%;
  animation: float 5.5s 0.8s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: -22px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #bbf7d0;
  background: rgba(22, 101, 52, 0.55);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-proof p {
  margin: 0;
  color: #7f96b1;
  font-size: 0.76rem;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #a7b7ca;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

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

/* About */
.split-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
}

.about-copy {
  padding-top: 38px;
}

.about-copy p {
  margin-bottom: 18px;
  color: #42526a;
  font-size: 1.05rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  margin-top: 63px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  position: relative;
  padding: 30px 25px 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.value-card:hover {
  border-color: #c6d7ff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.value-card > svg {
  width: 37px;
  height: 37px;
  margin-bottom: 28px;
  color: var(--blue);
  stroke-width: 1.5;
}

.value-number {
  position: absolute;
  top: 18px;
  right: 21px;
  color: #d9e1ed;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.01rem;
  line-height: 1.4;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: flex-start;
  flex-direction: column;
  padding: 27px 24px 23px;
  overflow: hidden;
  border: 1px solid #e5eaf1;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.025);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card::after {
  position: absolute;
  top: -40px;
  right: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.055);
  content: "";
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.09);
  transform: translateY(-7px);
}

.service-card:hover::after {
  transform: scale(1.4);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 14px;
  color: var(--blue);
  background: linear-gradient(135deg, #edf4ff, #e8fbfe);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 11px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.service-card p {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.72;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-card:hover a svg {
  transform: translateX(4px);
}

/* Why */
.why {
  position: relative;
  overflow: hidden;
}

.why-orb {
  position: absolute;
  right: -20%;
  bottom: -60%;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 66%);
}

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

.why .section-heading h2 {
  color: var(--white);
}

.why .section-heading h2 span {
  color: #90c6ff;
}

.why .section-heading p {
  color: #9eb0c7;
}

.benefit-list {
  display: grid;
  margin-top: 35px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 22px;
}

.benefit-list > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c1cddd;
  font-size: 0.84rem;
}

.benefit-list svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  padding: 4px;
  border-radius: 50%;
  color: var(--cyan-light);
  background: rgba(6, 182, 212, 0.12);
  stroke-width: 3;
}

.stats-panel {
  display: grid;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  backdrop-filter: blur(12px);
}

.stat-card {
  min-height: 180px;
  padding: 29px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: rgba(6, 16, 30, 0.42);
}

.stat-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 2.4rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-card strong span {
  color: var(--cyan);
}

.stat-card p {
  margin-bottom: 15px;
  color: #b7c5d6;
  font-size: 0.82rem;
  font-weight: 700;
}

.stat-card small {
  color: #5e7693;
  font-size: 0.61rem;
  text-transform: uppercase;
}

/* Technologies */
.tech-layout {
  display: grid;
  max-width: 1040px;
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tech-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 7px 25px rgba(15, 23, 42, 0.035);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tech-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.tech-card-wide {
  grid-column: span 2;
}

.tech-card-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}

.tech-card-head > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: #edf4ff;
  font-size: 0.68rem;
  font-weight: 800;
}

.tech-card-head h3 {
  margin: 0;
  font-size: 0.98rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badges span {
  padding: 7px 9px;
  border: 1px solid #e5eaf1;
  border-radius: 7px;
  color: #536278;
  background: #f8fafc;
  font-size: 0.69rem;
  font-weight: 600;
}

/* Process */
.process-list {
  position: relative;
  display: grid;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-list::before {
  position: absolute;
  z-index: 0;
  top: 43px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a8c1ef, #a8c1ef, transparent);
  content: "";
}

.process-item {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 27px 25px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.035);
}

.process-number {
  color: #d4deec;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.process-dot {
  position: absolute;
  top: 33px;
  right: 26px;
  width: 12px;
  height: 12px;
  border: 3px solid #b9d0ff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px #edf4ff;
}

.process-item h3 {
  margin: 31px 0 10px;
  font-size: 1.02rem;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Projects */
.project-heading-row {
  display: grid;
  align-items: end;
  margin-bottom: 50px;
  grid-template-columns: 1fr 0.7fr;
  gap: 50px;
}

.project-heading-row .section-heading h2 {
  margin-bottom: 0;
}

.project-heading-row > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.project-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  position: relative;
  display: grid;
  min-height: 150px;
  align-items: end;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition:
    color 0.22s ease,
    background 0.22s ease;
}

.project-card:nth-child(3n) {
  border-right: 0;
}

.project-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.project-card > span {
  position: absolute;
  top: 17px;
  left: 24px;
  color: #b6c2d2;
  font-size: 0.67rem;
  font-weight: 800;
}

.project-card h3 {
  max-width: 230px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.project-card > svg {
  position: absolute;
  right: 22px;
  bottom: 23px;
  width: 19px;
  height: 19px;
  color: var(--blue);
  transition: transform 0.2s ease;
}

.project-card:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #1f78e9);
}

.project-card:hover > span,
.project-card:hover > svg {
  color: var(--white);
}

.project-card:hover > span {
  opacity: 0.6;
}

.project-card:hover > svg {
  transform: translateX(4px);
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #1556d5, #0b75d6 54%, #05a8c7);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, white 1px, transparent 1px);
  background-size: 42px 42px, 58px 58px;
}

.cta-band::after {
  position: absolute;
  top: -220px;
  right: -80px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.04),
    0 0 0 160px rgba(255, 255, 255, 0.025);
  content: "";
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 75px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

.cta-content h2 {
  max-width: 760px;
  margin-bottom: 17px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.cta-content h2 span {
  color: #baf5ff;
}

.cta-content > div:first-child > p:last-child {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 11px;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 15% 85%, rgba(37, 99, 235, 0.055), transparent 27%),
    var(--white);
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 85px;
}

.contact-info {
  position: sticky;
  top: 110px;
}

.contact-details {
  margin: 35px 0;
  border-top: 1px solid var(--line);
}

.contact-details > div {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px 1fr;
  gap: 15px;
}

.contact-details span {
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-details strong {
  overflow-wrap: anywhere;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
}

.response-note {
  display: flex;
  gap: 14px;
  padding: 19px;
  border: 1px solid #dce9ff;
  border-radius: 15px;
  background: #f5f9ff;
}

.response-note > svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--blue);
}

.response-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.response-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

.form-card {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.09);
}

.form-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-card-head > div {
  display: flex;
  flex-direction: column;
}

.form-card-head span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card-head h3 {
  margin: 4px 0 0;
  font-size: 1.22rem;
}

.form-step {
  padding: 7px 10px;
  border-radius: 7px;
  background: #eff5ff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 17px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
}

.field label span {
  color: var(--blue);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  color: var(--text);
  background: #fbfdff;
  outline: none;
  font-size: 0.84rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field input,
.field select {
  height: 47px;
  padding: 0 13px;
}

.field textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a0adbd;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.09);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: var(--error);
  font-size: 0.65rem;
  line-height: 1.3;
}

.field-meta {
  display: flex;
  justify-content: space-between;
}

.field-meta > small:last-child {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.62rem;
}

.checkbox-field {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 0 9px;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.checkbox-field label {
  margin: 0;
  color: #536278;
  font-weight: 500;
  line-height: 1.6;
}

.checkbox-field .field-error {
  grid-column: 2;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.submit-button {
  position: relative;
  min-width: 220px;
  margin-top: 24px;
  border: 0;
}

.submit-button.loading {
  cursor: wait;
}

.submit-button.loading span,
.submit-button.loading svg {
  opacity: 0;
}

.button-loader {
  position: absolute;
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.submit-button.loading .button-loader {
  display: block;
}

.form-status {
  display: none;
  margin: 15px 0 0;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.76rem;
  font-weight: 600;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #166534;
  background: #ecfdf3;
}

.form-status.error {
  color: #991b1b;
  background: #fef2f2;
}

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

/* Footer */
.site-footer {
  color: #9eb0c7;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  padding-top: 75px;
  padding-bottom: 62px;
  grid-template-columns: 1.5fr 0.7fr 1fr 1fr;
  gap: 70px;
}

.footer-brand > p {
  max-width: 340px;
  margin: 13px 0 20px;
  font-size: 0.78rem;
  line-height: 1.75;
}

.footer-brand .footer-tagline {
  margin: 20px 0 0;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  color: #c5d1df;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.socials a:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #879bb4;
  font-size: 0.73rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--cyan-light);
  font-weight: 700;
}

.footer-cta svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: #657b95;
  font-size: 0.67rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

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

.scroll-top {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: 140px 0 90px;
  background: var(--soft);
}

.legal-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-shell {
    gap: 20px;
  }

  .primary-nav {
    gap: 17px;
  }

  .nav-link {
    font-size: 0.76rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 40px;
  }

  .floating-code {
    left: -16px;
  }

  .floating-cloud {
    right: -14px;
  }

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

  .service-card {
    min-height: 290px;
  }

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

  .contact-layout {
    gap: 50px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(84vw, 390px);
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 100px 30px 35px;
    background: rgba(7, 20, 38, 0.99);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .primary-nav::after {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    color: #8da2bc;
    background: rgba(255, 255, 255, 0.035);
    content: "Code. Solve. Succeed.";
    font-size: 0.72rem;
    text-align: center;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 740px;
    padding-bottom: 15px;
  }

  .hero-visual {
    max-width: 700px;
    margin: 30px auto 0;
  }

  .hero-proof {
    margin-top: 65px;
  }

  .split-layout,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-copy {
    padding-top: 0;
  }

  .why-layout {
    gap: 55px;
  }

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

  .tech-card-wide {
    grid-column: span 1;
  }

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

  .process-list::before {
    display: none;
  }

  .project-heading-row {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .project-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .project-card:nth-child(2n) {
    border-right: 0;
  }

  .project-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .project-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cta-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .contact-info {
    position: static;
  }

  .contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 25px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2 {
    font-size: 2.08rem;
  }

  .section-heading-centered {
    align-items: flex-start;
    margin-bottom: 38px;
    text-align: left;
  }

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

  .hero-content h1 {
    font-size: 2.63rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.72;
  }

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

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

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

  .dashboard-body {
    height: 365px;
  }

  .mock-main {
    padding: 15px 12px;
  }

  .metric-card {
    padding: 9px;
  }

  .metric-icon {
    margin-bottom: 8px;
  }

  .chart {
    height: 114px;
  }

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

  .activity-row > div:nth-child(2) {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .floating-badge {
    right: 12px;
    width: 43px;
    height: 43px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 45px;
    padding: 28px 0;
  }

  .hero-proof > div {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.61rem;
  }

  .value-grid,
  .services-grid,
  .benefit-list,
  .stats-panel,
  .tech-layout,
  .process-list,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    margin-top: 42px;
  }

  .service-card {
    min-height: 295px;
  }

  .stat-card {
    min-height: 155px;
  }

  .project-card {
    min-height: 125px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .project-card:last-child {
    border-bottom: 0 !important;
  }

  .cta-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .form-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 0;
  }

  .scroll-top {
    right: 15px;
    bottom: 15px;
  }

  .legal-card {
    padding: 30px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
