:root {
  --bg: #030712;
  --bg-soft: #07111f;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(125, 211, 252, 0.42);
  --text: #f8fafc;
  --muted: rgba(226, 232, 240, 0.7);
  --muted-strong: rgba(226, 232, 240, 0.88);
  --orange: #f59e0b;
  --orange-strong: #f97316;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #34d399;
  --purple: #a78bfa;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --shadow-glow: 0 26px 110px rgba(34, 211, 238, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 14%, rgba(245, 158, 11, 0.12), transparent 28rem),
    linear-gradient(180deg, #030712 0%, #06111f 48%, #030712 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
select,
input[type="submit"] {
  cursor: pointer;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

::selection {
  color: #08111f;
  background: var(--cyan);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.cursor-glow {
  position: fixed;
  z-index: 999;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  pointer-events: none;
  background: var(--cyan);
  box-shadow: 0 0 48px 18px rgba(34, 211, 238, 0.2);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.navbar {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), var(--container));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.58);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.navbar.scrolled {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(3, 7, 18, 0.88);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.38);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(112px, 10vw, 146px);
  min-width: 112px;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.24));
}

.brand img,
.hero-brand-visual img,
.core-logo img {
  max-width: 100%;
  max-height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), #93c5fd);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: #06111f;
  background: linear-gradient(135deg, #67e8f9, #bfdbfe);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: 120px 20px 70px;
}

.infinite-grid {
  --mouse-x: 50%;
  --mouse-y: 50%;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% -12%, rgba(249, 115, 22, 0.22), transparent 34%),
    radial-gradient(circle at 10% 105%, rgba(59, 130, 246, 0.24), transparent 38%),
    var(--bg);
}

.grid-base,
.grid-active {
  position: absolute;
  inset: -80px;
  z-index: 0;
  color: rgba(148, 163, 184, 0.72);
  pointer-events: none;
  background-image:
    linear-gradient(currentColor 1px, transparent 1px),
    linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 40px 40px;
  animation: infiniteGrid 7s linear infinite;
}

.grid-base {
  opacity: 0.05;
}

.grid-active {
  opacity: 0.42;
  mask-image: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), #000, transparent);
  -webkit-mask-image: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), #000, transparent);
}

@keyframes infiniteGrid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 40px 40px, 40px 40px;
  }
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(3, 7, 18, 0.1), rgba(3, 7, 18, 0.95)),
    radial-gradient(circle at center, transparent 0%, rgba(3, 7, 18, 0.6) 82%);
}

.hero-orbs,
.orb {
  position: absolute;
  pointer-events: none;
}

.orb {
  border-radius: 50%;
  filter: blur(110px);
}

.orb-orange {
  top: -16%;
  right: -12%;
  width: 40vw;
  height: 40vw;
  background: rgba(249, 115, 22, 0.22);
}

.orb-blue {
  bottom: -18%;
  left: -15%;
  width: 44vw;
  height: 44vw;
  background: rgba(59, 130, 246, 0.24);
}

.orb-cyan {
  top: 12%;
  right: 22%;
  width: 24vw;
  height: 24vw;
  background: rgba(34, 211, 238, 0.16);
}

.container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

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

.infinite-hero-content {
  width: min(var(--container), 100%);
  min-height: calc(100svh - 190px);
  text-align: center;
  pointer-events: none;
}

.hero-content {
  width: 100%;
}

.infinite-hero-content .hero-content {
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(34, 211, 238, 0.07);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12);
}

.pulse-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(52, 211, 153, 0.38);
  border-radius: inherit;
  content: "";
  animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

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

h1 {
  max-width: 850px;
  margin: 26px 0 24px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.91;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.infinite-hero-content h1 {
  max-width: none;
  margin: 18px 0 20px;
  font-size: clamp(3.15rem, 6vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: -0.067em;
  text-shadow: 0 22px 90px rgba(15, 23, 42, 0.72);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 span,
h2 span {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-content > p {
  width: min(680px, 100%);
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.8;
}

.infinite-hero-content .hero-content > p {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  color: var(--muted-strong);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

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

.infinite-hero-content .hero-actions {
  justify-content: center;
  pointer-events: auto;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(100%, 1040px);
  margin: 34px auto 0;
  pointer-events: auto;
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
}

.hero-metrics div::before {
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-metrics span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.55;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.42);
  outline-offset: 3px;
}

.button-primary {
  border: 1px solid rgba(34, 211, 238, 0.72);
  color: #06111f;
  background: linear-gradient(135deg, #e0f2fe, var(--cyan) 48%, #60a5fa);
  box-shadow: 0 0 42px rgba(34, 211, 238, 0.2);
}

.button-primary:hover {
  box-shadow: 0 0 56px rgba(34, 211, 238, 0.34);
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-brand-visual {
  display: none;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-brand-visual img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.hero-dashboard {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  width: min(100%, 1040px);
  min-height: 520px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 22% 18%, rgba(34, 211, 238, 0.18), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(245, 158, 11, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.044));
  box-shadow: var(--shadow-glow), var(--shadow);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}

.hero-dashboard::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.hero-dashboard::after {
  position: absolute;
  top: -25%;
  right: -35%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  content: "";
  background: rgba(34, 211, 238, 0.16);
  filter: blur(80px);
  pointer-events: none;
}

.dashboard-header,
.dashboard-core,
.orbit-map,
.dashboard-kpis {
  position: relative;
  z-index: 1;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-header span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.dashboard-header span:nth-child(1) {
  background: #fb7185;
}

.dashboard-header span:nth-child(2) {
  background: #f59e0b;
}

.dashboard-header span:nth-child(3) {
  background: #34d399;
}

.dashboard-header small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dashboard-core {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.18);
}

.core-logo {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 24px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), rgba(255, 255, 255, 0.035));
}

.core-logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.3));
}

.dashboard-core small,
.dashboard-kpis small,
.orbit-node small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-core strong {
  display: block;
  margin: 5px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.dashboard-core p {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.6;
}

.orbit-map {
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(0, 0, 0, 0.16);
  background-size: 34px 34px;
}

.orbit-line {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 210px;
  height: 210px;
}

.orbit-two {
  width: 285px;
  height: 155px;
  border-color: rgba(245, 158, 11, 0.18);
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-node {
  position: absolute;
  width: 132px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.115);
  border-radius: 18px;
  background: rgba(3, 7, 18, 0.74);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.orbit-node b {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.92rem;
}

.node-infra {
  top: 26px;
  left: 28px;
}

.node-erp {
  top: 62px;
  right: 26px;
}

.node-ai {
  right: 48px;
  bottom: 36px;
}

.node-growth {
  bottom: 52px;
  left: 42px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dashboard-kpis div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.052);
}

.kpi-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 10px;
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  font-size: 0.76rem;
}

.dashboard-kpis strong {
  display: block;
  margin-bottom: 6px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-trust span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-panel,
.stat-card,
.service-card,
.about-stack article,
.project-card,
.process-card,
.testimonial-card,
.contact-card,
.contact-form {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 24px;
  border-radius: var(--radius-xl);
  transform: perspective(1100px) rotateY(-7deg) rotateX(4deg);
}

.hero-panel::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.22), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(245, 158, 11, 0.18), transparent 32%);
  pointer-events: none;
}

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

.panel-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
}

.panel-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.panel-topbar span:nth-child(1) {
  background: #fb7185;
}

.panel-topbar span:nth-child(2) {
  background: #facc15;
}

.panel-topbar span:nth-child(3) {
  background: #34d399;
}

.panel-topbar small {
  margin-left: auto;
  color: var(--muted);
  font-weight: 800;
}

.system-score {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.system-score small,
.signal-card small,
.panel-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.system-score strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.status-pill {
  align-self: flex-start;
  padding: 8px 12px;
  border: 1px solid rgba(52, 211, 153, 0.32);
  border-radius: 999px;
  color: var(--green);
  background: rgba(52, 211, 153, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 180px;
  margin: 34px 0 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.18);
}

.signal-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.signal-rings {
  position: relative;
  min-height: 126px;
}

.signal-rings span {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ring 2.4s ease-in-out infinite;
}

.signal-rings span:nth-child(1) {
  width: 52px;
  height: 52px;
  background: rgba(34, 211, 238, 0.14);
}

.signal-rings span:nth-child(2) {
  width: 88px;
  height: 88px;
  animation-delay: 300ms;
}

.signal-rings span:nth-child(3) {
  width: 124px;
  height: 124px;
  animation-delay: 600ms;
}

@keyframes ring {
  50% {
    border-color: rgba(245, 158, 11, 0.45);
    transform: translate(-50%, -50%) scale(1.04);
  }
}

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

.panel-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.panel-grid strong {
  display: block;
  margin-top: 7px;
  letter-spacing: -0.04em;
}

.section {
  position: relative;
  padding: 108px 20px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.section-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.075);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.7vw, 5.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.section-copy .button {
  margin-top: 16px;
}

.about-section {
  overflow: hidden;
}

.about-section::before {
  position: absolute;
  top: 6%;
  left: -18%;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  content: "";
  background: rgba(14, 165, 233, 0.12);
  filter: blur(130px);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.about-proof {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 0%, rgba(249, 115, 22, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-glow), var(--shadow);
  backdrop-filter: blur(18px);
}

.about-proof::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  content: "";
  pointer-events: none;
}

.about-proof-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 24px;
  background: rgba(3, 7, 18, 0.42);
}

.about-proof-header span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-proof-header strong {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  letter-spacing: -0.05em;
}

.about-proof-header small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.about-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.about-stack article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.about-stack article::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.11), transparent 46%),
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 34%);
  pointer-events: none;
}

.about-stack article:hover {
  border-color: rgba(56, 189, 248, 0.36);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.105), rgba(255, 255, 255, 0.052));
  transform: translateY(-3px);
}

.about-stack span {
  display: inline-flex;
  grid-row: span 3;
  margin-bottom: 16px;
  color: var(--orange);
  font-weight: 900;
}

.mini-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.075);
  font-weight: 900;
}

.about-stack h3 {
  position: relative;
  margin-bottom: 10px;
  letter-spacing: -0.035em;
}

.about-stack p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.stats-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

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

.stat-card {
  padding: 28px;
  border-radius: 22px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.105), rgba(255, 255, 255, 0.052));
  transform: translateY(-6px);
}

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

.icon-wrap {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 32px;
  padding: 14px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 18px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
}

.icon-wrap svg,
.process-icon svg,
.mini-icon svg,
.hero-metric-icon svg,
.visual-icon svg,
.kpi-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  padding: 11px;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 16px;
  color: var(--orange);
  background: rgba(245, 158, 11, 0.08);
}

.hero-metric-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 12px;
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), #93c5fd);
}

.visual-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 4px;
  padding: 8px;
  border-radius: 13px;
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
}

.service-card h3,
.process-card h3,
.project-card h3 {
  margin-bottom: 13px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

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

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  transform: translateY(-50%);
}

.work-section,
.contact-section {
  overflow: hidden;
}

.work-section::before,
.contact-section::before {
  position: absolute;
  content: "";
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  filter: blur(140px);
  pointer-events: none;
}

.work-section::before {
  top: 10%;
  right: -24%;
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -16px 0 28px;
}

.visual-strip div {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.visual-strip span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 4px;
  border-radius: 13px;
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  font-weight: 900;
}

.visual-strip strong {
  letter-spacing: -0.025em;
}

.visual-strip small {
  color: var(--muted);
  line-height: 1.45;
}

.contact-section::before {
  bottom: 0;
  left: -24%;
  background: rgba(34, 211, 238, 0.12);
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-xl);
}

.project-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.86)),
    radial-gradient(circle at 18% 16%, rgba(34, 211, 238, 0.22), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
}

.project-one {
  grid-row: span 2;
}

.project-two,
.project-three {
  min-height: 360px;
}

.project-content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}

.project-content > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
}

.project-content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.08;
}

.project-content p {
  max-width: 62ch;
  font-size: 0.94rem;
  line-height: 1.72;
}

.project-two .project-content p,
.project-three .project-content p {
  font-size: 0.9rem;
  line-height: 1.68;
}

.project-results {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
}

.project-results b {
  color: var(--green);
}

.project-results small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.process-card::before {
  position: absolute;
  top: 34px;
  right: -28px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 50%;
  content: "";
}

.process-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.testimonials-section {
  padding-top: 40px;
}

.testimonials-carousel {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonials-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: center;
  flex: 0 0 100%;
  overflow: hidden;
  width: 100%;
  padding: clamp(44px, 6vw, 72px);
  border-radius: var(--radius-xl);
  text-align: center;
}

.testimonial-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    radial-gradient(circle at 16% 12%, rgba(34, 211, 238, 0.16), transparent 34%),
    radial-gradient(circle at 86% 84%, rgba(245, 158, 11, 0.13), transparent 32%);
  pointer-events: none;
}

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

.quote-mark {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 0;
  color: rgba(34, 211, 238, 0.34);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(7rem, 12vw, 11rem);
  line-height: 0.72;
  text-shadow: 0 0 42px rgba(34, 211, 238, 0.2);
  transform: translateX(-50%);
}

.testimonial-card p {
  position: relative;
  margin-bottom: 30px;
  color: var(--muted-strong);
  font-size: clamp(1.12rem, 2.2vw, 1.8rem);
  line-height: 1.6;
  letter-spacing: -0.035em;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-inline: auto;
  text-align: left;
}

.testimonial-author img {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 2px solid rgba(34, 211, 238, 0.5);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.08), 0 16px 42px rgba(0, 0, 0, 0.26);
}

.testimonial-author small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.testimonials-controls {
  position: absolute;
  top: 50%;
  right: clamp(12px, 3vw, 24px);
  left: clamp(12px, 3vw, 24px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
  transform: translateY(-50%);
}

.testimonial-nav {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--text);
  background: rgba(3, 7, 18, 0.58);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  border-color: rgba(34, 211, 238, 0.48);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.testimonial-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.assumption-table {
  position: relative;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: left;
  background: rgba(3, 7, 18, 0.34);
}

.assumption-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.assumption-table th,
.assumption-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.55;
  vertical-align: top;
}

.assumption-table th {
  color: var(--text);
  font-weight: 900;
  background: rgba(34, 211, 238, 0.08);
}

.assumption-table tr:last-child td {
  border-bottom: 0;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius-xl);
}

.contact-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.12), transparent 34%),
    radial-gradient(circle at 92% 70%, rgba(34, 211, 238, 0.14), transparent 34%);
  pointer-events: none;
}

.contact-card > * {
  position: relative;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  display: inline-flex;
  width: fit-content;
  color: var(--muted-strong);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 26px;
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
  outline: none;
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form select option {
  color: #0f172a;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.62);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.footer {
  padding: 70px 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.1), transparent 34rem),
    rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.footer nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.footer-bottom {
  display: flex;
  width: min(var(--container), calc(100% - 40px));
  justify-content: space-between;
  gap: 18px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.98);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

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

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .two-column,
  .about-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .infinite-hero-content {
    text-align: center;
  }

  .infinite-hero-content .hero-content {
    margin-inline: auto;
  }

  .infinite-hero-content .hero-actions {
    justify-content: center;
  }

  .hero-content > p,
  .infinite-hero-content .hero-content > p {
    margin-inline: auto;
  }

  .hero-metrics {
    margin-inline: auto;
  }

  .hero-dashboard {
    width: min(620px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }

  .hero-brand-visual {
    display: none;
  }

  .hero-panel {
    width: min(620px, 100%);
    transform: none;
  }

  .about-proof {
    width: min(720px, 100%);
    margin-inline: auto;
  }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 28px;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    transition: max-height 240ms ease, padding 240ms ease, border-color 240ms ease;
  }

  .menu-open .nav-menu {
    max-height: 420px;
    padding: 14px;
    border-color: var(--border);
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

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

  .cards-grid,
  .stats-grid,
  .visual-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-one {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .navbar {
    top: 12px;
    width: min(calc(100% - 20px), var(--container));
    min-height: 62px;
    padding-left: 12px;
  }

  .brand {
    width: 108px;
    min-width: 108px;
  }

  .brand-logo {
    width: 100%;
    max-height: 44px;
  }

  .hero {
    padding: 124px 16px 70px;
  }

  .hero-brand-visual {
    display: none;
  }

  .eyebrow {
    justify-content: center;
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .hero-actions,
  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust,
  .hero-actions {
    width: 100%;
  }

  .hero-dashboard {
    min-height: auto;
    padding: 20px;
    border-radius: 28px;
  }

  .dashboard-core {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .core-logo {
    margin: 0 auto;
  }

  .orbit-map {
    min-height: 360px;
  }

  .orbit-node {
    width: 124px;
  }

  .node-infra {
    top: 22px;
    left: 18px;
  }

  .node-erp {
    top: 72px;
    right: 16px;
  }

  .node-ai {
    right: 18px;
    bottom: 48px;
  }

  .node-growth {
    bottom: 68px;
    left: 16px;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .hero-trust span {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-panel {
    min-height: auto;
    padding: 20px;
  }

  .system-score,
  .signal-card {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-metrics,
  .cards-grid,
  .stats-grid,
  .visual-strip,
  .panel-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 16px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .service-card,
  .contact-form,
  .stat-card {
    padding: 22px;
  }

  .about-proof {
    padding: 14px;
    border-radius: 26px;
  }

  .about-proof-header,
  .about-stack article {
    padding: 18px;
  }

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

  .about-stack span {
    grid-row: auto;
  }

  .project-card {
    min-height: 360px;
  }

  .testimonial-card {
    min-height: 390px;
    padding: 58px 24px 34px;
  }

  .quote-mark {
    top: 18px;
    font-size: 7rem;
  }

  .testimonials-controls {
    position: static;
    justify-content: center;
    margin-top: 20px;
    transform: none;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author img {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .testimonial-nav {
    width: 44px;
    height: 44px;
  }
}
