:root {
  --navy-950: #04153e;
  --navy-900: #062464;
  --navy-800: #0b3488;
  --blue-500: #2f6bff;
  --blue-400: #4c82ff;
  --cyan-300: #64d5ff;
  --white: #ffffff;
  --ink: #10172f;
  --muted: #69748f;
  --surface: #f4f7fc;
  --border: rgba(15, 37, 84, 0.08);
  --card-shadow: 0 24px 60px rgba(7, 28, 74, 0.1);
  --hero-shadow: 0 40px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
}

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

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8, 35, 102, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #1a3f97;
}

.brand-has-logo {
  gap: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.brand-inline-logo {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.brand-inline-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 1.2em;
  object-fit: contain;
}

.brand-inline-logo .brand-text,
.brand-inline-logo .brand-badge {
  font-size: inherit;
}

.brand-text {
  color: #17419e;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  color: #2867ff;
  font-size: 0.82rem;
  border: 2px solid rgba(55, 108, 255, 0.2);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #586177;
}

.main-nav > a,
.nav-dropdown-toggle {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--blue-500);
  transition: transform 0.25s ease;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: #17419e;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

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

.nav-dropdown-toggle::before {
  content: "▾";
  order: 2;
  font-size: 0.68rem;
  color: #7b8599;
  transform: translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 25;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(13, 37, 96, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 44px rgba(9, 28, 78, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: #5a647d;
  font-size: 0.72rem;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #17419e;
  background: rgba(42, 105, 255, 0.08);
}

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

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2a69ff, #1950e7);
  box-shadow: 0 14px 30px rgba(41, 92, 240, 0.3);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(41, 92, 240, 0.36);
}

.button-ghost {
  color: #23418f;
  background: rgba(42, 105, 255, 0.08);
  border-color: rgba(42, 105, 255, 0.12);
}

.button-ghost:hover {
  background: rgba(42, 105, 255, 0.13);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary.dark {
  color: #17377e;
  border-color: rgba(23, 55, 126, 0.12);
  background: #ffffff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.68rem;
}

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

.header-login {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(25, 80, 231, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #16398d;
}

.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background:
    radial-gradient(circle at 18% 42%, rgba(36, 100, 255, 0.32), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(84, 178, 255, 0.18), transparent 18%),
    linear-gradient(115deg, #021239 6%, #05215d 48%, #082c77 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.98fr 1.12fr;
  align-items: center;
  gap: 18px;
  min-height: 336px;
  padding: 26px 0 14px;
}

.hero-pattern {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  animation: cosmicFloat 9s ease-in-out infinite;
}

.hero-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(44, 112, 255, 0.55) 1.5px, transparent 1.5px)
      0 0 / 16px 16px;
  mask-image: radial-gradient(circle, #000 30%, transparent 74%);
}

.hero-pattern-left {
  display: none;
}

.hero-pattern-right {
  display: none;
}

.hero-copy {
  color: var(--white);
  max-width: 430px;
}

.hero-pill,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-pill {
  margin-bottom: 18px;
  color: #77a7ff;
  border: 1px solid rgba(119, 167, 255, 0.28);
  background: rgba(9, 31, 83, 0.32);
}

.hero h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 3.3vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #42a3ff;
}

.hero p {
  max-width: 408px;
  margin: 14px 0 22px;
  color: rgba(235, 242, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.78;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(42, 121, 255, 0.82) 1.6px, transparent 1.8px)
      0 0 / 16px 16px;
  opacity: 0.9;
  animation: orbitPulse 7.5s ease-in-out infinite;
}

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

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

.website-ticker {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  padding: 0 0 26px;
  background: linear-gradient(180deg, #082c77 0%, #ffffff 72%);
  overflow: hidden;
}

.website-ticker-shell {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.website-ticker-row {
  position: relative;
  overflow: hidden;
}

.website-ticker-row::before,
.website-ticker-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 58px;
  z-index: 1;
  pointer-events: none;
}

.website-ticker-row::before {
  left: 0;
  background: linear-gradient(90deg, #0a2d79 0%, rgba(10, 45, 121, 0) 100%);
}

.website-ticker-row::after {
  right: 0;
  background: linear-gradient(270deg, #0d327f 0%, rgba(13, 50, 127, 0) 100%);
}

.website-ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: websiteTickerMove 30s linear infinite;
}

.website-ticker-row.is-reverse .website-ticker-track {
  animation-name: websiteTickerMoveReverse;
  animation-duration: 34s;
}

.website-ticker-item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(133, 180, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 19, 57, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #eef4ff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.laptop {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding-bottom: 10px;
  filter: drop-shadow(var(--hero-shadow));
}

.laptop::before,
.laptop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.laptop::before {
  display: none;
}

.laptop::after {
  left: -6px;
  right: -12px;
  bottom: 7px;
  z-index: -1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(45, 108, 255, 0) 0%,
    rgba(45, 108, 255, 0.38) 16%,
    rgba(91, 167, 255, 0.96) 50%,
    rgba(45, 108, 255, 0.38) 84%,
    rgba(45, 108, 255, 0) 100%
  );
  box-shadow:
    0 0 14px rgba(94, 164, 255, 0.82),
    0 0 28px rgba(41, 92, 240, 0.36);
  animation: beamFlow 4.8s linear infinite;
}

@keyframes cosmicFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.48;
  }
  50% {
    transform: translate3d(8px, -10px, 0) scale(1.04);
    opacity: 0.78;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.46;
    filter: blur(0);
  }
  50% {
    transform: translate3d(10px, -8px, 0) scale(1.04);
    opacity: 0.95;
    filter: blur(0.4px);
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.76;
  }
  50% {
    transform: translate3d(6px, -7px, 0) scale(1.03);
    opacity: 1;
  }
}

@keyframes beamFlow {
  0% {
    opacity: 0.56;
    transform: scaleX(0.96);
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.02);
    filter: saturate(1.3);
  }
  100% {
    opacity: 0.56;
    transform: scaleX(0.96);
    filter: saturate(1);
  }
}

@keyframes websiteTickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes websiteTickerMoveReverse {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes officeVisualFloat {
  0%,
  100% {
    transform: translate3d(var(--office-shift-x, 0px), var(--office-shift-y, 0px), 0) rotate(calc(var(--office-tilt, 0deg) * 0.35));
  }
  25% {
    transform: translate3d(var(--office-shift-x, 0px), calc(var(--office-shift-y, 0px) - 8px), 0) rotate(calc(var(--office-tilt, 0deg) - 0.8deg));
  }
  50% {
    transform: translate3d(var(--office-shift-x, 0px), calc(var(--office-shift-y, 0px) - 14px), 0) rotate(calc(var(--office-tilt, 0deg) + 0.6deg));
  }
  75% {
    transform: translate3d(var(--office-shift-x, 0px), calc(var(--office-shift-y, 0px) - 6px), 0) rotate(calc(var(--office-tilt, 0deg) - 0.45deg));
  }
}

@keyframes officeImageDrift {
  0%,
  100% {
    transform: scale(1.02) translate3d(var(--office-image-shift-x, 0px), var(--office-image-shift-y, 0px), 0);
  }
  25% {
    transform: scale(1.06) translate3d(calc(var(--office-image-shift-x, 0px) - 10px), calc(var(--office-image-shift-y, 0px) - 8px), 0);
  }
  50% {
    transform: scale(1.08) translate3d(calc(var(--office-image-shift-x, 0px) + 8px), calc(var(--office-image-shift-y, 0px) - 16px), 0);
  }
  75% {
    transform: scale(1.05) translate3d(calc(var(--office-image-shift-x, 0px) - 6px), calc(var(--office-image-shift-y, 0px) - 10px), 0);
  }
}

@keyframes officeGlowPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.08);
  }
}

@keyframes officeBadgeFloat {
  0%,
  100% {
    transform: translate3d(var(--office-badge-shift-x, 0px), var(--office-badge-shift-y, 0px), 0);
  }
  50% {
    transform: translate3d(var(--office-badge-shift-x, 0px), calc(var(--office-badge-shift-y, 0px) - 7px), 0);
  }
}

@keyframes officeShineSweep {
  0% {
    transform: translate3d(-130%, 0, 0) rotate(12deg);
    opacity: 0;
  }
  18% {
    opacity: 0.58;
  }
  50% {
    transform: translate3d(130%, 0, 0) rotate(12deg);
    opacity: 0.18;
  }
  100% {
    transform: translate3d(130%, 0, 0) rotate(12deg);
    opacity: 0;
  }
}

.laptop-screen {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  overflow: hidden;
  min-height: 302px;
  padding: 7px;
  border: 2px solid #0d121a;
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

.laptop-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #252a33;
}

.laptop-base {
  position: relative;
  width: 110%;
  height: 14px;
  margin: 4px auto 0;
  border-radius: 0 0 14px 14px;
  background:
    linear-gradient(180deg, #d9e0ea, #b3becd 68%, #939eb0),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-3.5%);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  background: rgba(91, 104, 125, 0.4);
}

.dashboard-sidebar {
  padding: 7px 6px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #0f2e75, #0b1f55);
}

.sidebar-brand {
  margin-bottom: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
}

.sidebar-brand span {
  color: #61b9ff;
}

.dashboard-sidebar ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.54rem;
  font-weight: 700;
}

.dashboard-sidebar li {
  padding: 6px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-sidebar li.active {
  color: #ffffff;
  background: rgba(76, 130, 255, 0.38);
}

.dashboard-main {
  display: grid;
  gap: 8px;
  padding: 2px 3px 2px 9px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-topbar small,
.dashboard-topbar span,
.chart-card span,
.donut-card span {
  color: #8691a6;
  font-size: 0.5rem;
  font-weight: 700;
}

.dashboard-topbar strong,
.chart-card strong {
  display: block;
  margin-top: 2px;
  color: #1b2440;
  font-size: 0.76rem;
}

.topbar-actions {
  display: flex;
  gap: 10px;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.stat-cards article,
.chart-card,
.donut-card {
  border: 1px solid rgba(19, 39, 89, 0.06);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(12, 30, 69, 0.06);
}

.stat-cards article {
  padding: 8px;
}

.stat-cards span,
.stat-cards small {
  display: block;
}

.stat-cards span {
  color: #8b94a8;
  font-size: 0.5rem;
  font-weight: 700;
}

.stat-cards strong {
  display: block;
  margin: 5px 0 3px;
  color: #1b2440;
  font-size: 0.88rem;
}

.stat-cards small {
  color: #30a164;
  font-size: 0.5rem;
  font-weight: 700;
}

.analytics-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 8px;
}

.chart-card,
.donut-card {
  padding: 10px;
}

.chart-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.line-chart {
  position: relative;
  height: 116px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(78, 139, 255, 0.12), transparent 68%),
    linear-gradient(#edf1f7 1px, transparent 1px) 0 0 / 100% 26px,
    linear-gradient(90deg, #edf1f7 1px, transparent 1px) 0 0 / 25% 100%;
}

.line-chart span {
  position: absolute;
  inset: auto 8px 14px 8px;
  height: 68px;
  border-bottom: 3px solid #4f84ff;
  border-right: 3px solid transparent;
  border-radius: 16px;
  transform: skewX(-22deg);
  box-shadow:
    40px -10px 0 -1px #4f84ff,
    82px 10px 0 -1px #4f84ff,
    122px -20px 0 -1px #4f84ff,
    164px -26px 0 -1px #4f84ff,
    212px -2px 0 -1px #4f84ff;
}

.donut-card {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.donut {
  width: 82px;
  height: 82px;
  margin: 6px 0 8px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, #ffffff 62%, transparent 63% 100%),
    conic-gradient(#2f6bff 0 40%, #3fc1ff 40% 68%, #f7b84b 68% 100%);
  box-shadow: inset 0 0 0 1px rgba(16, 23, 47, 0.04);
}

.donut-card small {
  color: #94a0b5;
  font-size: 0.52rem;
}

.brands {
  border-bottom: 1px solid rgba(16, 23, 47, 0.06);
  background: #ffffff;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
}

.brands-label {
  color: #9ea7b9;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 34px;
  color: #8c95a5;
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
}

.brand-logo-item img {
  display: block;
  max-width: 132px;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}

.brand-logo-fallback {
  color: #8c95a5;
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.solutions {
  padding: 42px 0 34px;
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
}

.solutions-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: stretch;
}

.section-tag {
  color: #4a74d8;
  background: rgba(45, 107, 255, 0.08);
}

.section-heading {
  max-width: 255px;
  margin-bottom: 0;
  padding-top: 14px;
}

.section-heading h2,
.final-cta h2 {
  margin: 16px 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #14234a;
}

.section-heading p,
.final-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.76rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f61d8;
  font-weight: 800;
  font-size: 0.74rem;
}

.inline-link::after {
  content: "→";
}

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

.solution-card {
  display: grid;
  align-content: start;
  min-height: 222px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 28, 74, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(7, 28, 74, 0.14);
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
}

.solution-icon.blue {
  background: linear-gradient(135deg, #2b6aff, #1d55ea);
}

.solution-icon.purple {
  background: linear-gradient(135deg, #7564ff, #5443df);
}

.solution-icon.green {
  background: linear-gradient(135deg, #1db89c, #169c88);
}

.solution-icon.orange {
  background: linear-gradient(135deg, #ff8f46, #f46f1d);
}

.solution-card h3 {
  margin: 0 0 12px;
  color: #172445;
  font-size: 0.86rem;
  line-height: 1.35;
}

.solution-card p {
  margin: 0;
  color: #7a8498;
  line-height: 1.7;
  font-size: 0.7rem;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: auto;
  border-radius: 50%;
  border: 1px solid rgba(20, 35, 74, 0.12);
  color: #8b95aa;
  font-size: 0.62rem;
}

.office-showcase {
  padding: 8px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.office-showcase-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 37, 84, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(7, 28, 74, 0.08);
}

.office-showcase-content {
  padding: 28px 28px 0;
}

.office-showcase-head {
  max-width: 290px;
  margin-bottom: 18px;
}

.office-showcase-head h2 {
  margin: 12px 0 10px;
  color: #15254a;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.office-showcase-head p {
  margin: 0 0 12px;
  color: #6d7890;
  font-size: 0.8rem;
  line-height: 1.8;
}

.office-showcase-link {
  font-size: 0.72rem;
}

.office-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.office-mini-card {
  position: relative;
  min-height: 172px;
  padding: 18px 16px;
  border: 1px solid rgba(15, 37, 84, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(7, 28, 74, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.office-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(244, 248, 255, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.office-mini-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2c63ff, #79a5ff);
  transform: scaleX(0.18);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.office-mini-card:hover {
  transform: translateY(-10px);
  border-color: rgba(42, 93, 255, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow:
    0 26px 44px rgba(7, 28, 74, 0.12),
    0 10px 18px rgba(38, 93, 255, 0.08);
}

.office-mini-card:hover::before {
  opacity: 1;
}

.office-mini-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.office-mini-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #2a5dff;
  background: linear-gradient(180deg, rgba(42, 93, 255, 0.1), rgba(42, 93, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 24px rgba(38, 93, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.office-mini-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(42, 93, 255, 0.08);
}

.office-mini-icon span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.office-mini-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.office-mini-card-1 .office-mini-icon {
  color: #2d63ff;
}

.office-mini-card-2 .office-mini-icon {
  color: #5a67ff;
  background: linear-gradient(180deg, rgba(90, 103, 255, 0.12), rgba(90, 103, 255, 0.04));
}

.office-mini-card-3 .office-mini-icon {
  color: #2f7de0;
  background: linear-gradient(180deg, rgba(47, 125, 224, 0.12), rgba(47, 125, 224, 0.04));
}

.office-mini-card-4 .office-mini-icon {
  color: #6b7cff;
  background: linear-gradient(180deg, rgba(107, 124, 255, 0.12), rgba(107, 124, 255, 0.04));
}

.office-mini-card h3 {
  margin: 0 0 10px;
  color: #172445;
  font-size: 0.82rem;
  line-height: 1.4;
}

.office-mini-card p {
  margin: 0;
  color: #74819a;
  font-size: 0.68rem;
  line-height: 1.75;
}

.office-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #0a2e8b, #08256b);
}

.office-metric-item {
  position: relative;
  padding: 0 18px;
  color: #ffffff;
}

.office-metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.14);
}

.office-metric-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.office-metric-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
}

.office-showcase-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(320px, 1.28fr);
  gap: 18px;
  padding: 22px;
  perspective: 1200px;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at top right, rgba(92, 135, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #03193f 0%, #062564 56%, #082c73 100%);
}

.office-visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.82;
}

.office-visual-glow-top {
  top: -24px;
  right: 28px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(124, 169, 255, 0.24), transparent 68%);
}

.office-visual-glow-bottom {
  left: 42px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(51, 110, 255, 0.16), transparent 68%);
}

.office-visual-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  color: #ffffff;
  transform: translate3d(0, 0, 34px);
  will-change: transform;
}

.office-visual-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.office-visual-copy h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.office-visual-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  line-height: 1.85;
}

.office-visual-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.office-visual-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
}

.office-visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8eb0ff;
  box-shadow: 0 0 12px rgba(142, 176, 255, 0.5);
}

.office-visual-button {
  width: fit-content;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.office-visual-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border-radius: 34px;
  cursor: pointer;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 22px 42px rgba(3, 17, 53, 0.22);
  transform: translateZ(0);
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
  will-change: transform;
}

.office-visual-frame:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 26px 52px rgba(3, 17, 53, 0.28);
}

.office-visual-frame:focus-visible {
  outline: 2px solid rgba(138, 177, 255, 0.78);
  outline-offset: 4px;
}

.office-frame-outline {
  position: absolute;
  inset: 10px;
  border-radius: 160px 38px 38px 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.office-visual-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 156px 34px 34px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 32%);
  pointer-events: none;
  z-index: 1;
}

.office-visual-frame::after {
  content: "";
  position: absolute;
  top: -12%;
  left: -28%;
  width: 42%;
  height: 132%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  filter: blur(2px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 2;
}

.office-visual-frame img,
.office-visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 160px 38px 38px 38px;
}

.office-visual-frame img {
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 36px rgba(3, 17, 53, 0.18);
  transform-origin: center center;
  transform: translateZ(22px) scale(1.02);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.office-visual-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  transform: translateZ(22px) scale(1.02);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes officeHoverSlide {
  0% {
    transform: translateX(-12px) translateZ(22px) scale(1.02);
  }
  50% {
    transform: translateX(12px) translateZ(22px) scale(1.04);
  }
  100% {
    transform: translateX(-12px) translateZ(22px) scale(1.02);
  }
}

.office-visual-frame:not(.is-spinning):hover img,
.office-visual-frame:not(.is-spinning):hover .office-visual-placeholder {
  animation: officeHoverSlide 4.6s ease-in-out infinite;
}

.office-visual-frame.is-spinning {
  transform: rotateY(360deg);
}

.office-visual-frame.is-spinning img,
.office-visual-frame.is-spinning .office-visual-placeholder {
  transform: translateZ(22px) rotateY(-360deg) scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .office-visual-glow,
  .office-visual-frame,
  .office-visual-frame img,
  .office-visual-placeholder,
  .office-visual-frame::after,
  .website-ticker-track {
    transition: none !important;
    animation: none !important;
  }
}

.services-showcase {
  padding: 8px 0 56px;
  background: linear-gradient(180deg, #f7f9fd, #ffffff);
}

.services-heading {
  max-width: 620px;
  margin-bottom: 24px;
}

.services-heading h2 {
  margin: 16px 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #14234a;
}

.services-heading p {
  margin: 0;
  color: #6e7891;
  font-size: 0.8rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 198px;
  padding: 20px;
  border: 1px solid rgba(15, 37, 84, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
  box-shadow: 0 12px 28px rgba(7, 28, 74, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(7, 28, 74, 0.12);
}

.service-card h3 {
  margin: 0;
  color: #172445;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-card p {
  margin: 0;
  color: #73809a;
  font-size: 0.72rem;
  line-height: 1.75;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 999px;
  color: #245eff;
  background: rgba(36, 94, 255, 0.08);
  border: 1px solid rgba(36, 94, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-button:hover {
  color: #ffffff;
  background: #245eff;
  transform: translateY(-1px);
}

.ai-order-section {
  padding: 18px 0 64px;
  background:
    linear-gradient(180deg, #f1f4f8 0%, #f8fafe 48%, #ffffff 100%);
}

.ai-order-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.ai-order-visual {
  position: relative;
  min-height: 430px;
  padding: 30px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 37, 84, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(74, 123, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 252, 0.98));
  box-shadow: 0 28px 60px rgba(8, 29, 78, 0.08);
}

.ai-search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 260px;
  margin: 0 auto 24px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #eef2f8;
  color: #78839a;
  font-size: 0.68rem;
  font-weight: 700;
}

.ai-search-tag {
  padding: 5px 8px;
  border-radius: 8px;
  background: #ffffff;
  color: #4c5d83;
  box-shadow: inset 0 0 0 1px rgba(20, 35, 74, 0.06);
}

.ai-floating-card {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(18, 39, 92, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(12, 33, 83, 0.1);
}

.ai-card-left {
  left: 18px;
  top: 138px;
  width: 148px;
  padding: 10px;
}

.ai-card-right {
  top: 74px;
  right: 20px;
  width: 238px;
  padding: 12px;
}

.ai-card-thumb {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.ai-card-thumb.sand {
  height: 70px;
  margin-bottom: 10px;
  background:
    linear-gradient(135deg, rgba(201, 164, 132, 0.45), rgba(143, 108, 74, 0.3)),
    url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=fashion%20editorial%20collage%20of%20neutral%20beige%20women%20outfits%2C%20soft%20studio%20lighting%2C%20e-commerce%20catalog%20style%2C%20clean%20background&image_size=landscape_16_9");
}

.ai-card-thumb.coat {
  width: 96px;
  min-width: 96px;
  height: 126px;
  background:
    linear-gradient(135deg, rgba(181, 142, 112, 0.24), rgba(91, 62, 42, 0.16)),
    url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=full%20body%20fashion%20model%20wearing%20brown%20mini%20trenchcoat%2C%20clean%20e-commerce%20product%20shot%2C%20light%20gray%20background%2C%20editorial%20style&image_size=portrait_4_3");
}

.ai-floating-card strong {
  display: block;
  color: #203154;
  font-size: 0.74rem;
  line-height: 1.45;
}

.ai-floating-card p,
.ai-card-copy li {
  color: #6d7892;
  font-size: 0.64rem;
  line-height: 1.6;
}

.ai-floating-card p {
  margin: 8px 0 0;
}

.ai-card-preview {
  display: flex;
  gap: 12px;
}

.ai-card-copy ul {
  margin: 10px 0 0;
  padding-left: 14px;
}

.ai-bot {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 82px;
  display: grid;
  justify-items: center;
  width: 196px;
  transform: translateX(-50%);
}

.ai-bot-image {
  top: 58px;
  width: clamp(220px, 27vw, 300px);
}

.ai-bot-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(15, 34, 93, 0.16));
}

.ai-bot-head {
  position: relative;
  width: 138px;
  height: 118px;
  border-radius: 34px;
  border: 6px solid rgba(255, 255, 255, 0.98);
  background:
    linear-gradient(180deg, #ffffff, #e7edf8 82%, #dbe3f1);
  box-shadow:
    0 18px 36px rgba(9, 28, 78, 0.14),
    inset 0 -10px 16px rgba(16, 35, 73, 0.06);
}

.ai-bot-antenna {
  position: absolute;
  top: 22px;
  width: 36px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4671ff, #2b46aa);
  box-shadow: 0 4px 10px rgba(53, 94, 228, 0.28);
}

.ai-bot-antenna.left {
  left: -22px;
  transform: rotate(-21deg);
}

.ai-bot-antenna.right {
  right: -22px;
  transform: rotate(21deg);
}

.ai-bot-face {
  position: absolute;
  left: 50%;
  top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 86px;
  height: 52px;
  margin-left: -43px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(87, 126, 255, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(239, 243, 252, 0.94), rgba(225, 232, 246, 0.92));
}

.ai-bot-face i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #7d9dff;
  box-shadow:
    0 0 0 7px rgba(108, 145, 255, 0.16),
    0 0 16px rgba(90, 128, 255, 0.5);
}

.ai-bot-body {
  position: relative;
  width: 114px;
  height: 126px;
  margin-top: -2px;
  display: grid;
  place-items: center;
  border-radius: 24px 24px 34px 34px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background:
    radial-gradient(circle at 50% 22%, rgba(92, 126, 255, 0.24), transparent 38%),
    linear-gradient(180deg, #2241a1, #1a327f 78%, #172d74);
  box-shadow:
    0 16px 34px rgba(22, 42, 99, 0.24),
    inset 0 0 0 2px rgba(105, 137, 255, 0.42),
    0 0 20px rgba(66, 114, 255, 0.34);
}

.ai-bottom-panel {
  position: absolute;
  left: 196px;
  right: 20px;
  bottom: 26px;
  display: grid;
  gap: 12px;
}

.ai-input-row,
.ai-language-row {
  display: flex;
  gap: 10px;
}

.ai-input-row span,
.ai-language-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 14px;
  border-radius: 8px;
  color: #6f7b94;
  font-size: 0.64rem;
  font-weight: 700;
  background: #edf1f7;
}

.ai-input-row span:last-child {
  min-width: 96px;
  color: #dce4f7;
  background: #8b94a7;
}

.ai-order-copy h2 {
  margin: 16px 0 18px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #182b55;
}

.ai-order-copy p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #50617f;
  font-size: 0.96rem;
  line-height: 1.75;
}

.ai-order-button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: #1e335e;
  background: transparent;
  border-color: rgba(24, 43, 85, 0.18);
  box-shadow: none;
}

.ai-order-button:hover {
  color: #ffffff;
  background: #1f4fe0;
  border-color: #1f4fe0;
  box-shadow: 0 16px 32px rgba(31, 79, 224, 0.24);
}

.ai-feature-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.ai-feature-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 136px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(15, 37, 84, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 28, 74, 0.08);
}

.ai-feature-card.is-highlighted {
  color: #ffffff;
  background: linear-gradient(180deg, #1a2f63, #162852);
}

.ai-feature-card h3 {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 800;
}

.ai-feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #4d6eff;
  font-size: 1.2rem;
  border: 1px solid rgba(77, 110, 255, 0.18);
  background: rgba(77, 110, 255, 0.06);
}

.ai-feature-card.is-highlighted .ai-feature-icon {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.metrics {
  padding-bottom: 56px;
  background: linear-gradient(180deg, #f7f9fd, #ffffff);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #07215a, #0a2d7b);
  box-shadow: 0 16px 30px rgba(3, 24, 73, 0.14);
}

.metrics-grid article {
  position: relative;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.9);
}

.metrics-grid article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.metrics-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-family: "Outfit", sans-serif;
}

.metrics-grid span {
  color: rgba(227, 235, 255, 0.74);
  font-size: 0.68rem;
}

.final-cta {
  padding: 0 0 88px;
}

.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(77, 132, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #04143d, #0a2b74);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(4, 20, 61, 0.2);
}

.final-cta .section-tag {
  color: #98b9ff;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
  max-width: 560px;
}

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

.signup-section {
  padding: 0 0 72px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.signup-copy,
.signup-form {
  border: 1px solid rgba(10, 34, 92, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 28, 74, 0.08);
}

.signup-copy {
  padding: 32px;
}

.signup-copy h2 {
  margin: 16px 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #14234a;
}

.signup-copy p {
  margin: 0 0 18px;
  color: #6f7b94;
  font-size: 0.86rem;
  line-height: 1.8;
}

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

.signup-features li {
  position: relative;
  padding-left: 20px;
  color: #203154;
  font-size: 0.8rem;
  font-weight: 700;
}

.signup-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a69ff, #1950e7);
  box-shadow: 0 0 0 5px rgba(42, 105, 255, 0.12);
}

.signup-form {
  padding: 28px;
}

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

.signup-form label {
  display: grid;
  gap: 8px;
}

.signup-form label span {
  color: #203154;
  font-size: 0.75rem;
  font-weight: 800;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(20, 35, 74, 0.12);
  border-radius: 12px;
  outline: none;
  background: #f8faff;
  color: #14234a;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.signup-form input:focus {
  border-color: rgba(42, 105, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(42, 105, 255, 0.12);
  background: #ffffff;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
}

.form-checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
}

.form-checkbox span {
  color: #69748f;
  font-size: 0.74rem;
  line-height: 1.7;
  font-weight: 600;
}

.signup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.form-note {
  margin: 0;
  color: #7a859d;
  font-size: 0.72rem;
}

.form-success {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(28, 166, 106, 0.08);
  color: #11724b;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-success.is-visible {
  display: block;
}

.site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(10, 34, 92, 0.08);
  background:
    radial-gradient(circle at top right, rgba(70, 123, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f9fd, #eef3fb);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
  padding-bottom: 24px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-logo {
  max-height: 84px;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 0;
  color: #6c7790;
  font-size: 0.76rem;
  line-height: 1.85;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #152a5e;
  font-size: 0.78rem;
  font-family: "Outfit", sans-serif;
}

.footer-links a,
.footer-links span {
  color: #67728d;
  font-size: 0.74rem;
  line-height: 1.6;
}

.footer-links a:hover,
.footer-policy-links a:hover {
  color: #245eff;
}

.footer-payments {
  display: grid;
  gap: 16px;
  padding: 20px 0 18px;
  border-top: 1px solid rgba(10, 34, 92, 0.08);
}

.footer-payments strong {
  color: #152a5e;
  font-size: 0.96rem;
  font-family: "Outfit", sans-serif;
}

.footer-payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(10, 34, 92, 0.06);
  border: 1px solid rgba(15, 37, 84, 0.06);
}

.payment-logo-iyzico {
  gap: 10px;
  min-width: 142px;
}

.payment-logo-iyzico-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(90deg, #5f8eff 0%, #d8e3ff 100%);
}

.payment-logo-iyzico-copy {
  display: grid;
  line-height: 1;
}

.payment-logo-iyzico-copy b {
  color: #3870f7;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.payment-logo-iyzico-copy small {
  margin-top: 2px;
  color: #7b86a3;
  font-size: 0.78rem;
  font-weight: 700;
}

.payment-logo-mastercard {
  gap: 10px;
  min-width: 132px;
}

.payment-logo-mastercard-circles {
  position: relative;
  width: 38px;
  height: 24px;
}

.payment-logo-mastercard-circles i {
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.payment-logo-mastercard-circles i:first-child {
  left: 0;
  background: #ea001b;
}

.payment-logo-mastercard-circles i:last-child {
  right: 0;
  background: #ff9f1a;
  opacity: 0.94;
}

.payment-logo-mastercard span:last-child {
  color: #1d2851;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: lowercase;
}

.payment-logo-visa {
  min-width: 116px;
  color: #213a84;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
}

.payment-logo-amex {
  min-width: 108px;
  padding: 8px 12px;
  color: #ffffff;
  background: linear-gradient(180deg, #61c6ff, #3aa4ea);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.payment-logo-troy {
  min-width: 102px;
  gap: 1px;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.payment-logo-troy span:nth-child(1) {
  color: #00a7d8;
}

.payment-logo-troy span:nth-child(2) {
  color: #565f73;
}

.payment-logo-troy span:nth-child(3) {
  color: #8dc63f;
}

.payment-logo-troy span:nth-child(4) {
  color: #00a7d8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 34, 92, 0.08);
}

.footer-bottom span,
.footer-policy-links a {
  color: #7c869d;
  font-size: 0.7rem;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    align-items: start;
  }

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

  .section-heading {
    max-width: 460px;
    padding-top: 0;
  }

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

  .office-showcase-grid {
    grid-template-columns: 1fr;
  }

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

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

  .ai-order-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ai-feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .brands-row,
  .final-cta-box,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logos {
    justify-content: flex-start;
  }

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

  .footer-payment-logos {
    gap: 12px;
  }
}

@media (max-width: 920px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(16, 23, 47, 0.07);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 40px rgba(5, 22, 63, 0.12);
  }

  .main-nav.is-open > a::after,
  .main-nav.is-open .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .nav-dropdown-toggle::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 6px 0;
    border-radius: 0;
    font-size: 0.7rem;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: transparent;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-grid,
  .solution-grid,
  .office-card-grid,
  .office-metric-strip,
  .services-grid,
  .ai-feature-strip,
  .metrics-grid,
  .stat-cards,
  .analytics-row,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-logo {
    min-height: 50px;
    padding: 10px 14px;
  }

  .hero-grid {
    padding-top: 48px;
    padding-bottom: 68px;
    gap: 28px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual::before {
    right: -8px;
    top: 70px;
    width: 180px;
    height: 180px;
  }

  .hero-visual::after {
    left: -6px;
    bottom: 10px;
    width: 130px;
    height: 130px;
  }

  .website-ticker {
    padding-bottom: 22px;
  }

  .website-ticker-shell {
    gap: 10px;
  }

  .website-ticker-row::before,
  .website-ticker-row::after {
    width: 44px;
  }

  .website-ticker-item {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.76rem;
  }

  .laptop::before {
    left: -42px;
    bottom: -20px;
    width: 176px;
    height: 144px;
  }

  .laptop::after {
    left: 12px;
    right: 6px;
    bottom: 7px;
  }

  .laptop-screen {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding-left: 8px;
  }

  .office-showcase-content,
  .office-showcase-visual {
    padding: 20px;
  }

  .office-showcase-visual {
    grid-template-columns: 1fr;
  }

  .office-floating-badge-top {
    right: 20px;
  }

  .office-floating-badge-bottom {
    right: 20px;
    bottom: 20px;
  }

  .office-showcase-head {
    max-width: 100%;
  }

  .office-metric-strip {
    border-radius: 18px;
  }

  .metrics-grid article + article::before {
    top: 0;
    right: 30px;
    left: 30px;
    width: auto;
    height: 1px;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .brand-badge {
    min-width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .office-showcase-content {
    padding: 18px 18px 0;
  }

  .office-showcase-visual {
    padding: 18px;
  }

  .office-mini-card {
    min-height: 0;
  }

  .office-visual-frame img,
  .office-visual-placeholder {
    min-height: 260px;
    border-radius: 92px 24px 24px 24px;
  }

  .office-frame-outline {
    border-radius: 92px 24px 24px 24px;
  }

  .office-visual-frame::before {
    border-radius: 92px 24px 24px 24px;
  }


  .hero h1 {
    font-size: 2.35rem;
  }

  .website-ticker {
    margin-top: -4px;
    padding-bottom: 18px;
  }

  .website-ticker-shell {
    gap: 8px;
  }

  .website-ticker-item {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .ai-order-visual {
    min-height: 460px;
    padding: 24px 16px 18px;
  }

  .ai-search-bar {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .ai-card-left {
    left: 14px;
    top: 160px;
    width: 118px;
  }

  .ai-card-right {
    top: 92px;
    right: 14px;
    width: 188px;
  }

  .ai-card-preview {
    gap: 10px;
  }

  .ai-card-thumb.coat {
    width: 74px;
    min-width: 74px;
    height: 108px;
  }

  .ai-bot {
    left: 50%;
    top: 102px;
    width: 148px;
  }

  .ai-bot-image {
    top: 86px;
    width: 180px;
  }

  .ai-bot-head {
    width: 94px;
    height: 84px;
    border-width: 5px;
  }

  .ai-bot-head::before,
  .ai-bot-head::after {
    top: 25px;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .ai-bot-head::before {
    left: 20px;
  }

  .ai-bot-head::after {
    right: 20px;
  }

  .ai-bot-body {
    width: 82px;
    height: 96px;
    font-size: 1.25rem;
    margin-top: -6px;
  }

  .ai-bottom-panel {
    left: 14px;
    right: 14px;
    bottom: 18px;
  }

  .ai-input-row,
  .ai-language-row {
    flex-wrap: wrap;
  }

  .ai-order-copy p {
    font-size: 0.9rem;
  }

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

  .laptop::before {
    left: -16px;
    bottom: -12px;
    width: 122px;
    height: 100px;
    opacity: 0.8;
  }

  .laptop::after {
    left: 22px;
    right: 16px;
    bottom: 6px;
    height: 2px;
  }

  .hero p,
  .section-heading p,
  .final-cta p {
    font-size: 0.96rem;
  }

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

  .brands-row {
    min-height: 110px;
  }

  .brand-logos {
    gap: 16px 24px;
    font-size: 0.95rem;
  }

  .solution-card,
  .final-cta-box,
  .signup-copy,
  .signup-form {
    padding: 24px;
  }

  .section-heading h2,
  .final-cta h2,
  .signup-copy h2 {
    font-size: 2rem;
  }

  .services-heading h2 {
    font-size: 2rem;
  }

  .ai-order-copy h2 {
    font-size: 2.1rem;
  }

  .ai-order-visual {
    min-height: 400px;
  }

  .ai-bot {
    left: 120px;
    top: 96px;
    width: 144px;
  }

  .ai-bot-head {
    width: 118px;
    height: 102px;
  }

  .ai-bot-body {
    width: 100px;
    height: 118px;
    font-size: 1.6rem;
  }

  .ai-bottom-panel {
    left: 148px;
  }

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

  .site-footer {
    padding-top: 28px;
  }
}
