/*
Theme Name: Geniussoft
Theme URI: https://geniussoft.dev/
Author: Codex
Description: Custom landing theme for geniussoft.dev
Version: 1.0.0
Text Domain: geniussoft
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --page-bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-soft: #f0f3f7;
  --text-primary: #010101;
  --text-secondary: #343a3f;
  --text-tertiary: #6d747a;
  --stroke: rgba(1, 1, 1, 0.1);
  --stroke-strong: rgba(1, 1, 1, 0.22);
  --accent: #0057b8;
  --accent-strong: #010101;
  --accent-soft: #e3ecfa;
  --shadow-soft: 0 18px 48px rgba(1, 1, 1, 0.05);
  --shadow-card: 0 12px 28px rgba(1, 1, 1, 0.06);
  --max-width: 1360px;
  --header-offset: 104px;
  --admin-bar-offset: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + var(--admin-bar-offset) + 1rem);
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text-primary);
  background: #ffffff;
  min-height: 100vh;
  font-size: 1rem;
  letter-spacing: -0.02rem;
  line-height: 1.2;
}

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

button,
.button,
input[type='submit'],
input[type='button'] {
  cursor: pointer;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-offset) + var(--admin-bar-offset));
}

.site-shell::before,
.site-shell::after {
  content: none;
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  width: 34rem;
  height: 34rem;
  top: 1rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(227, 236, 250, 0.9) 0%, rgba(227, 236, 250, 0) 72%);
}

.site-shell::after {
  width: 26rem;
  height: 26rem;
  left: -8rem;
  top: 30rem;
  background: radial-gradient(circle, rgba(240, 243, 247, 0.95) 0%, rgba(240, 243, 247, 0) 74%);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: var(--admin-bar-offset);
  right: 0;
  left: 0;
  z-index: 500;
  padding: 0.625rem 0 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(1, 1, 1, 0.06);
}

body.admin-bar {
  --admin-bar-offset: 32px;
}

.site-navigation {
  background-color: transparent;
  border-bottom: 1px solid transparent;
  padding: 0.625rem 0;
  position: relative;
  transition: background-color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
  width: 100%;
  z-index: 100;
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
}

.nav-panel {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.06rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: #010101;
}

.brand-mark-accent {
  fill: #0057b8;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.brand-wordmark,
.brand-domain {
  color: #010101;
}

.brand-wordmark {
  font-weight: 600;
}

.brand-domain {
  font-weight: 800;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(1, 1, 1, 0.08);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #010101;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle .nav-toggle-line + .nav-toggle-line {
  margin-top: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
  justify-self: center;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  color: #010101;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  bottom: 4px;
  width: 0;
  border-bottom: 2px solid #ff8c5b;
  transition: width 0.15s ease-in;
}

.nav-link:hover::after {
  width: calc(100% - 1.5rem);
}

.nav-item.menu-item-has-children > .nav-link {
  padding-right: 1.45rem;
}

.nav-item.menu-item-has-children > .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.72;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-item.menu-item-has-children:hover > .nav-link::before,
.nav-item.menu-item-has-children:focus-within > .nav-link::before {
  opacity: 1;
  transform: translateY(-35%) rotate(225deg);
}

.nav-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  gap: 0;
  min-width: 15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(1, 1, 1, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 46px rgba(1, 1, 1, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 160;
}

.nav-list .sub-menu .nav-item {
  white-space: normal;
}

.nav-list .sub-menu .nav-link {
  padding: 0.8rem 0.95rem;
  border-radius: 0;
  font-size: 0.96rem;
  line-height: 1.2;
}

.nav-list .sub-menu .nav-link::after {
  display: none;
}

.nav-list .sub-menu .nav-link:hover {
  background: #f4f7fb;
  color: #0057b8;
}

.nav-item:hover > .sub-menu,
.nav-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-caret {
  width: 0.75rem;
  height: 0.75rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.8rem;
  flex: 0 0 auto;
  justify-self: end;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 4px;
  border: 1px solid rgba(1, 1, 1, 0.08);
  border-radius: 0;
  background: #ffffff;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 10px;
  border-radius: 0;
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-link.is-active {
  background: #f0f3f7;
  color: #010101;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 13px 16px;
  border-radius: 99px;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.0225rem;
  line-height: 1;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: #0057b8;
  box-shadow: none;
}

.nav-demo {
  width: auto;
}

.button-secondary,
.button-link {
  color: #010101;
  background: #ffffff;
  border: 1px solid rgba(1, 1, 1, 0.08);
}

.button-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  border-bottom: 1px solid var(--accent);
  transition: width 0.25s ease-in;
}

.button-link:hover {
  color: var(--accent);
  background: transparent;
}

.button-link:hover::after {
  width: 100%;
}

.button-primary:hover,
.button-secondary:hover {
  background: #010101;
  color: #fff;
}

.header-stage {
  min-height: 1px;
}

.homepage-main {
  padding-bottom: 2rem;
}

.homepage-hero {
  padding-top: 2.75rem;
  padding-bottom: 2.25rem;
}

.hero-intro {
  margin-top: 2.5rem;
  margin-bottom: 2.8rem;
}

.hero-title {
  max-width: 62.5rem;
  margin: 0 0 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.14rem;
  line-height: 1;
}

.hero-strike {
  position: relative;
  display: inline-block;
}

.hero-strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 7px;
  background: #101010;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-strike {
  color: inherit;
}

.hero-strike > * {
  position: relative;
  z-index: 0;
}

.hero-description,
.hero-description p {
  max-width: 34.375rem;
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.02rem;
  line-height: 1.2;
}

.hero-description {
  display: grid;
  gap: 0.85rem;
}

.hero-display {
  margin-bottom: 1.5rem;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(227, 236, 250, 0.95), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #edf3fb 100%);
  border: 1px solid rgba(1, 1, 1, 0.08);
  overflow: hidden;
  min-height: 27rem;
  padding: 2rem;
}

.hero-surface-main {
  width: min(100%, 62rem);
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(1, 1, 1, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.hero-surface-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.hero-surface-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #d6dbe2;
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-stat {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #f0f3f7;
}

.hero-stat-primary {
  background: linear-gradient(135deg, #0057b8 0%, #3e88df 100%);
  color: #fff;
}

.hero-stat small,
.hero-floating span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat strong,
.hero-floating strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-layers {
  display: grid;
  gap: 0.75rem;
}

.hero-layer {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(1, 1, 1, 0.08);
  background: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03rem;
}

.hero-floating {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(1, 1, 1, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-floating-left {
  left: 2rem;
  bottom: 2rem;
}

.hero-floating-right {
  right: 2rem;
  top: 2rem;
}

.hero-cta-row {
  margin-bottom: 2.75rem;
}

.hero-cta {
  min-width: 0;
  min-height: 3.9rem;
  padding: 1rem 1.6rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-logo-section {
  margin-bottom: 7rem;
}

.hero-logo-rail {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: 24px;
  overflow: hidden;
}

.hero-logo-marquee {
  display: flex;
  width: max-content;
  animation: hero-logo-marquee 38s linear infinite;
}

.hero-logo-group {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  padding-right: 1rem;
}

.hero-logo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.9rem;
  padding: 0.75rem 0.9rem;
  background: #ffffff;
  flex: 0 0 auto;
}

.hero-logo-card.has-text {
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}

.hero-logo-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.6rem;
}

.hero-logo-image {
  max-width: 100%;
  height: 1.6rem;
  max-height: 1.6rem;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 1.6rem;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  text-align: center;
  white-space: nowrap;
}

.hero-logo-inline-text {
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02rem;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes hero-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.world-map-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.services-section {
  padding-top: 4rem;
  padding-bottom: 6.5rem;
}

.services-intro {
  display: block;
  margin-bottom: 2rem;
}

.services-title {
  max-width: 40rem;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.1rem;
  line-height: 1.02;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-height: 18rem;
  padding: 1.75rem;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(0, 87, 184, 0.12), transparent 34%),
    linear-gradient(180deg, #eef5ff 0%, #e8f0fb 100%);
  border: 1px solid rgba(1, 1, 1, 0.06);
  box-shadow: 0 12px 30px rgba(1, 1, 1, 0.04);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto auto -4.5rem -3.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 184, 0.16);
  box-shadow: 0 18px 38px rgba(1, 1, 1, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 87, 184, 0.15), transparent 34%),
    linear-gradient(180deg, #f4f9ff 0%, #edf4fc 100%);
}

.service-card:nth-child(2n) {
  background:
    radial-gradient(circle at top right, rgba(245, 157, 78, 0.14), transparent 34%),
    linear-gradient(180deg, #fff4e7 0%, #fdf0df 100%);
}

.service-card:nth-child(2n):hover {
  background:
    radial-gradient(circle at top right, rgba(245, 157, 78, 0.16), transparent 34%),
    linear-gradient(180deg, #fff8ef 0%, #fef4e8 100%);
}

.service-card:nth-child(3n) {
  background:
    radial-gradient(circle at top right, rgba(43, 173, 120, 0.14), transparent 34%),
    linear-gradient(180deg, #edf9f4 0%, #e6f3ef 100%);
}

.service-card:nth-child(3n):hover {
  background:
    radial-gradient(circle at top right, rgba(43, 173, 120, 0.16), transparent 34%),
    linear-gradient(180deg, #f1fbf7 0%, #eaf6f2 100%);
}

.service-card:nth-child(4n) {
  background:
    radial-gradient(circle at top right, rgba(162, 112, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #f2efff 0%, #ece8fb 100%);
}

.service-card:nth-child(4n):hover {
  background:
    radial-gradient(circle at top right, rgba(162, 112, 255, 0.15), transparent 34%),
    linear-gradient(180deg, #f6f3ff 0%, #efebfd 100%);
}

.service-card:nth-child(5n) {
  background:
    radial-gradient(circle at top right, rgba(221, 89, 133, 0.13), transparent 34%),
    linear-gradient(180deg, #fff0f5 0%, #fae7ee 100%);
}

.service-card:nth-child(5n):hover {
  background:
    radial-gradient(circle at top right, rgba(221, 89, 133, 0.16), transparent 34%),
    linear-gradient(180deg, #fff4f7 0%, #fcebf1 100%);
}

.service-card:nth-child(6n) {
  background:
    radial-gradient(circle at top right, rgba(228, 181, 49, 0.14), transparent 34%),
    linear-gradient(180deg, #fff8e5 0%, #fcf1d8 100%);
}

.service-card:nth-child(6n):hover {
  background:
    radial-gradient(circle at top right, rgba(228, 181, 49, 0.17), transparent 34%),
    linear-gradient(180deg, #fffbef 0%, #fdf5e3 100%);
}

.service-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #0057b8;
  box-shadow: inset 0 0 0 1px rgba(1, 1, 1, 0.06);
}

.service-card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-title {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.55rem, 2.5vw, 2.08rem);
  font-weight: 500;
  letter-spacing: -0.08rem;
  line-height: 1.04;
}

.service-card-description {
  position: relative;
  z-index: 1;
  max-width: 25rem;
  margin: 0;
  color: #4a5461;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.service-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  color: #0057b8;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.1;
}

.service-card-link span:first-child {
  border-bottom: 1px solid currentColor;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-card-link span:first-child,
.service-card-link:hover span:first-child {
  border-color: rgba(0, 87, 184, 0.42);
  color: #004a9b;
}

.products-section {
  padding-top: 4rem;
  padding-bottom: 6.5rem;
}

.products-intro {
  margin-bottom: 2rem;
}

.products-intro-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.products-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.1rem;
  line-height: 1.02;
}

.products-description {
  margin: 0;
  color: #44505f;
  font-size: 1rem;
  line-height: 1.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(0, 87, 184, 0.16);
  border-radius: 2rem 1rem 2rem 1rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(0, 87, 184, 0.08);
  border-radius: 1.35rem 0.7rem 1.35rem 0.7rem;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 184, 0.26);
  background: linear-gradient(180deg, #ffffff 0%, #f1f8ff 100%);
  box-shadow: 0 18px 34px rgba(1, 1, 1, 0.05);
}

.product-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.product-card-site {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-card-site {
  background: rgba(0, 87, 184, 0.06);
  color: #0057b8;
  word-break: break-word;
}

.product-card-title {
  margin: 0;
  max-width: 22rem;
  font-size: clamp(1.6rem, 2.3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.07rem;
  line-height: 1.06;
  position: relative;
  z-index: 1;
}

.product-card-title a {
  color: inherit;
}

.product-card-summary {
  margin: 0;
  color: #44505f;
  font-size: 0.98rem;
  line-height: 1.58;
  position: relative;
  z-index: 1;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  padding-top: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.product-card-link,
.product-card-secondary-link {
  display: inline-flex;
  align-items: center;
  color: #0057b8;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.product-card-link span,
.product-card-secondary-link span {
  border-bottom: 1px solid currentColor;
}

.product-header-actions {
  display: flex;
  align-items: center;
}

.cases-section {
  padding-top: 4rem;
  padding-bottom: 6.5rem;
}

.cases-intro {
  margin-bottom: 2rem;
}

.cases-intro-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.cases-intro-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 50rem;
}

.cases-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.1rem;
  line-height: 1.02;
}

.cases-description {
  margin: 0;
  color: #44505f;
  font-size: 1rem;
  line-height: 1.5;
}

.cases-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.cases-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(0, 87, 184, 0.24);
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cases-control svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cases-control:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 87, 184, 0.42);
  color: #0057b8;
}

.cases-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, calc(50% - 0.6rem));
  gap: 1.15rem;
  padding-top: 0.35rem;
  padding-bottom: 0.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.cases-slider::-webkit-scrollbar {
  display: none;
}

.case-card {
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 19rem;
  padding: 0 1.7rem 1.7rem;
  overflow: hidden;
  border-radius: 1.7rem;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 184, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 184, 0.34);
}

.case-card-media,
.case-card-link,
.case-card-title,
.case-card-summary {
  position: relative;
  z-index: 1;
}

.case-card-media {
  width: calc(100% + 3.4rem);
  aspect-ratio: 16 / 8.2;
  margin-left: -1.7rem;
  margin-right: -1.7rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: 1.7rem 1.7rem 0 0;
  background: linear-gradient(135deg, #f2f7ff 0%, #e9f1fb 100%);
}

.case-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-image-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 87, 184, 0.2), transparent 0 18%),
    radial-gradient(circle at 22% 74%, rgba(0, 87, 184, 0.1), transparent 0 20%),
    linear-gradient(135deg, #f4f9ff 0%, #ebf3fc 100%);
}

.case-card-title {
  margin: 0;
  max-width: 28rem;
  color: #101010;
  font-size: clamp(1.5rem, 2.3vw, 2.12rem);
  font-weight: 500;
  letter-spacing: -0.08rem;
  line-height: 1.05;
}

.case-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.case-card:hover .case-card-title-link,
.case-card-title-link:hover {
  color: #0057b8;
}

.case-card-summary {
  margin: 0;
  max-width: 29rem;
  color: #44505f;
  font-size: 0.95rem;
  line-height: 1.52;
}

.case-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.65rem;
  color: #0057b8;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.case-card-link span {
  border-bottom: 1px solid currentColor;
}

.world-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: center;
}

.world-map-copy {
  max-width: 34rem;
}

.world-map-title {
  margin: 1.15rem 0 1rem;
  color: var(--text-primary);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.09rem;
  line-height: 1.03;
}

.world-map-description {
  display: grid;
  gap: 0.85rem;
}

.world-map-description,
.world-map-description p {
  margin: 0;
  color: #3f4652;
  font-size: 1rem;
  line-height: 1.45;
}

.world-map-cta {
  margin-top: 1.35rem;
  width: auto;
}

.world-map-visual {
  position: relative;
  overflow: visible;
  padding: 0;
  background: transparent;
  min-height: 34rem;
}

.world-map-stage {
  position: relative;
  width: 124%;
  margin-left: -12%;
  transform: translateY(-4%) scale(1.16);
  transform-origin: 43% 23%;
}

.world-map-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.64 / 1;
  background:
    radial-gradient(circle, #c7d3e0 1.2px, transparent 1.85px) 0 0 / 8px 8px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98));
  -webkit-mask-image: var(--world-map-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--world-map-mask);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.world-map-overlay {
  position: absolute;
  inset: 0;
}

.world-map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.world-map-point-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.02rem;
  height: 1.02rem;
  border-radius: 999px;
  background: #0057b8;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 87, 184, 0.14);
}

.world-map-point.is-secondary .world-map-point-dot {
  width: 0.78rem;
  height: 0.78rem;
  border-width: 2px;
}

.world-map-point.is-hq .world-map-point-dot {
  width: 1.22rem;
  height: 1.22rem;
}

.world-map-point-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(0, 87, 184, 0.14);
  transform: translate(-50%, -50%);
  animation: world-map-pulse 2.8s ease-in-out infinite;
}

@keyframes world-map-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0.35;
  }
}

.world-map-point-label {
  position: absolute;
  left: 50%;
  display: inline-flex;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #526072;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.world-map-point.is-top .world-map-point-label,
.world-map-point.is-hq .world-map-point-label {
  bottom: 1.05rem;
}

.world-map-point.is-bottom .world-map-point-label {
  top: 1.05rem;
}

.world-map-point.label-right .world-map-point-label {
  left: 0.95rem;
  transform: none;
}

.world-map-point.label-left .world-map-point-label {
  left: auto;
  right: 0.95rem;
  transform: none;
}

.world-map-callout-card {
  position: absolute;
  top: 8%;
  left: 62%;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 12rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(16, 16, 16, 0.08);
}

.world-map-callout-card strong {
  color: #101010;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
}

.world-map-callout-card span {
  color: #5b6472;
  font-size: 0.88rem;
  font-weight: 600;
}

.estimate-section {
  padding-top: 3rem;
  padding-bottom: 3.25rem;
}

.estimate-shell {
  display: grid;
  grid-template-columns: minmax(290px, 0.74fr) minmax(0, 1.26fr);
  gap: 1.35rem;
  align-items: stretch;
}

.estimate-form-panel,
.estimate-contact-card {
  border-radius: 1.45rem;
}

.estimate-form-panel {
  position: relative;
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(1, 1, 1, 0.06);
  background:
    radial-gradient(circle at top right, rgba(0, 87, 184, 0.12), transparent 34%),
    linear-gradient(180deg, #eef5ff 0%, #e8f0fb 100%);
  box-shadow: 0 18px 44px rgba(10, 25, 49, 0.08);
}

.estimate-title {
  max-width: 56rem;
  margin: 0;
  color: #101010;
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.1rem;
  line-height: 1.02;
}

.estimate-title-global {
  position: relative;
  z-index: 1;
  margin: 0 0 2rem;
}

.estimate-description {
  max-width: 28rem;
  margin: 0 0 0.85rem;
  color: #46505c;
  font-size: 0.91rem;
  line-height: 1.4;
}

.estimate-alert {
  margin-bottom: 0.7rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.8rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.estimate-alert.is-success {
  background: #edf8f2;
  color: #1b6a45;
}

.estimate-alert.is-error {
  background: #fff1f1;
  color: #a13232;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.estimate-field {
  display: grid;
  gap: 0.34rem;
}

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

.estimate-field label {
  color: #101010;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.estimate-field input,
.estimate-field textarea {
  width: 100%;
  padding: 0.82rem 0.92rem;
  border: 1px solid #d7e3f1;
  border-radius: 0.92rem;
  background: #f9fbfe;
  color: #101010;
  font-size: 0.92rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.estimate-field input::placeholder,
.estimate-field textarea::placeholder {
  color: #6f8096;
}

.estimate-field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.estimate-field input:focus,
.estimate-field textarea:focus {
  outline: none;
  border-color: #0d6fda;
  box-shadow: 0 0 0 4px rgba(13, 111, 218, 0.12);
  background: #ffffff;
  transform: translateY(-1px);
}

.estimate-submit {
  margin-top: 0.35rem;
  grid-column: 1 / -1;
  justify-self: end;
  min-height: 3.15rem;
  padding-inline: 1.35rem;
  font-size: 0.96rem;
  font-weight: 700;
}

.estimate-contact-panel {
  display: flex;
}

.estimate-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  padding: 0.3rem 0.1rem;
  background: transparent;
}

.estimate-profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.estimate-photo-frame {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  overflow: hidden;
  min-height: 0;
  flex: 0 0 auto;
  background: #eef4fa;
}

.estimate-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.08);
}

.estimate-quote {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 87, 184, 0.18);
  color: #394657;
  font-size: 0.92rem;
  line-height: 1.6;
}

.estimate-contact-copy {
  display: grid;
  gap: 0.18rem;
}

.estimate-contact-copy strong {
  color: #101010;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.estimate-contact-copy span {
  color: #556171;
  font-size: 0.88rem;
  font-weight: 600;
}

.estimate-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.estimate-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #0f1724;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01rem;
  box-shadow: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.estimate-contact-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(0, 87, 184, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 87, 184, 0.12);
  flex: 0 0 auto;
}

.estimate-contact-link-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.estimate-contact-link:hover {
  color: #0057b8;
}

.estimate-contact-link:hover .estimate-contact-link-icon {
  background: rgba(0, 87, 184, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 87, 184, 0.18);
}

.singular-main {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

.singular-shell {
  padding-bottom: 4rem;
}

.singular-entry {
  max-width: 54rem;
  margin: 0 auto;
}

.singular-header {
  margin-bottom: 1.5rem;
}

.singular-title {
  margin: 0;
  color: #101010;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.11rem;
  line-height: 1;
}

.singular-content {
  color: #304155;
  font-size: 1.04rem;
  line-height: 1.8;
}

.singular-content p,
.singular-content li,
.singular-content blockquote {
  text-align: justify;
  text-justify: inter-word;
}

.singular-content > * + * {
  margin-top: 1.3rem;
}

.singular-content > *:first-child {
  margin-top: 0;
}

.singular-content > *:last-child {
  margin-bottom: 0;
}

.singular-content h2,
.singular-content h3,
.singular-content h4 {
  color: #101010;
  font-weight: 600;
  letter-spacing: -0.04rem;
  line-height: 1.1;
}

.singular-content a {
  color: #0057b8;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.singular-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.singular-content figure,
.singular-content .wp-block-image {
  margin: 1.75rem 0 2rem;
}

.singular-content figure img,
.singular-content .wp-block-image img {
  width: 100%;
}

.singular-content ul,
.singular-content ol {
  padding-left: 1.2rem;
}

.case-study-main {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.case-study-shell {
  padding-bottom: 1.5rem;
}

.case-study-entry {
  max-width: 58rem;
  margin: 0 auto 6.5rem;
}

.case-study-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.case-study-back {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #0057b8;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01rem;
}

.case-study-title {
  margin: 0;
  color: #101010;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.12rem;
  line-height: 0.98;
}

.case-study-summary {
  margin: 0;
  color: #44505f;
  font-size: 1.05rem;
  line-height: 1.6;
}

.case-study-hero-media {
  overflow: hidden;
  margin-bottom: 2.2rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(0, 87, 184, 0.14);
  background: #f5f8fd;
}

.case-study-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
}

.case-study-content {
  color: #304155;
  font-size: 1.02rem;
  line-height: 1.85;
}

.case-study-content p,
.case-study-content li,
.case-study-content blockquote {
  text-align: justify;
  text-justify: inter-word;
}

.case-study-content > * + * {
  margin-top: 1.4rem;
}

.case-study-content > *:first-child {
  margin-top: 0;
}

.case-study-content > *:last-child {
  margin-bottom: 0;
}

.case-study-content h2,
.case-study-content h3,
.case-study-content h4 {
  color: #101010;
  font-weight: 600;
  letter-spacing: -0.04rem;
  line-height: 1.08;
  margin-top: 2.4rem;
}

.case-study-content ul,
.case-study-content ol {
  padding-left: 1.35rem;
}

.case-study-content li + li {
  margin-top: 0.45rem;
}

.case-study-content a {
  color: #0057b8;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.case-study-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.case-study-content figure,
.case-study-content .wp-block-image {
  margin: 1.9rem 0 2.35rem;
}

.case-study-content figure img,
.case-study-content .wp-block-image img {
  width: 100%;
}

.landing-main section {
  padding-top: 1.4rem;
}

.hero {
  padding-top: 1.8rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 1.35rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.insight-grid,
.solution-card,
.logo-band-track {
  border: 1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-copy,
.hero-visual {
  border-radius: 2rem;
}

.hero-copy {
  padding: clamp(2rem, 4.5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #56b26c;
  box-shadow: 0 0 0 6px rgba(86, 178, 108, 0.14);
}

.hero h1,
.section-intro h2,
.footer-cta h2 {
  margin: 1.25rem 0 1rem;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.07em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: 1;
  font-weight: 500;
}

.hero-lead,
.section-intro p,
.insight-card p,
.solution-card li,
.footer-cta p,
.footer-note {
  color: var(--text-secondary);
  line-height: 1.68;
}

.hero-lead {
  max-width: 42rem;
  margin: 0;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-visual {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 243, 247, 0.92) 100%);
}

.visual-orbit {
  position: relative;
  min-height: 26rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at center, rgba(227, 236, 250, 0.95) 0%, rgba(227, 236, 250, 0.22) 26%, rgba(255, 255, 255, 0) 27%),
    linear-gradient(180deg, #ffffff 0%, #f0f3f7 100%);
  border: 1px solid rgba(16, 25, 21, 0.08);
  overflow: hidden;
}

.visual-orbit::before,
.visual-orbit::after {
  content: '';
  position: absolute;
  inset: 14% 16%;
  border-radius: 999px;
  border: 1px solid rgba(16, 25, 21, 0.08);
}

.visual-orbit::after {
  inset: 27% 28%;
}

.orbit-core,
.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 25, 21, 0.08);
  box-shadow: var(--shadow-card);
}

.orbit-core {
  inset: 50%;
  width: 11rem;
  height: 11rem;
  transform: translate(-50%, -50%);
  padding: 1rem;
}

.orbit-core span,
.orbit-node {
  color: var(--text-tertiary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.orbit-core strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.05em;
}

.orbit-node {
  min-width: 8.75rem;
  min-height: 4.4rem;
  padding: 1rem;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: -0.02em;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.orbit-node-top {
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-right {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.orbit-node-bottom {
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
}

.orbit-node-left {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.visual-stats {
  display: grid;
  gap: 0.85rem;
}

.visual-chip,
.insight-card,
.solution-card {
  border-radius: 1.45rem;
  border: 1px solid rgba(16, 25, 21, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.visual-chip {
  padding: 1rem 1.1rem;
}

.visual-chip span,
.insight-layer span {
  display: block;
  color: var(--text-tertiary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visual-chip strong,
.insight-layer strong,
.solution-card h3,
.insight-card h3 {
  display: block;
  margin-top: 0.4rem;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.04em;
}

.logo-band {
  padding-top: 1rem;
}

.logo-band-label {
  margin: 0 0 0.8rem;
  color: var(--text-tertiary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.logo-band-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.6rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  min-height: 4rem;
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #2b3a31;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 54rem;
  margin-bottom: 1.35rem;
}

.section-intro h2 {
  font-size: clamp(2.1rem, 4.1vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
}

.section-intro p {
  margin: 0;
  font-size: 1.04rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 2rem;
}

.insight-visual {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(227, 236, 250, 0.85), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f0f3f7 100%);
  border: 1px solid rgba(16, 25, 21, 0.08);
}

.insight-layer {
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(16, 25, 21, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.insight-layer-top {
  margin-left: 9%;
  margin-right: 6%;
}

.insight-layer-middle {
  margin-left: 4%;
  margin-right: 11%;
}

.insight-layer-bottom {
  margin-left: 11%;
  margin-right: 3%;
}

.insight-copy {
  display: grid;
  gap: 0.9rem;
}

.insight-card {
  padding: 1.3rem;
  box-shadow: var(--shadow-card);
}

.insight-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.insight-card p {
  margin: 0.6rem 0 0;
  font-size: 0.96rem;
}

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

.solution-card {
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.solution-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.22rem;
}

.solution-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.solution-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
}

.solution-card li::before {
  content: '';
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--accent);
}

.site-footer {
  width: 100%;
  margin: 2rem 0 0;
  padding: clamp(1.8rem, 3.8vw, 2.9rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 87, 184, 0.28), transparent 30%),
    radial-gradient(circle at bottom left, rgba(23, 69, 132, 0.32), transparent 36%),
    linear-gradient(180deg, #0c1420 0%, #0a1019 100%);
  box-shadow: 0 28px 60px rgba(5, 11, 21, 0.16);
  color: #f5f8fd;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.06rem;
}

.footer-logo-mark {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
}

.footer-logo-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-logo-accent {
  fill: #4ea2ff;
}

.footer-logo-domain {
  font-weight: 800;
}

.footer-description {
  margin: 0;
  max-width: 30rem;
  color: rgba(236, 242, 250, 0.82);
  font-size: 0.98rem;
  line-height: 1.72;
}

.footer-note {
  margin: 0;
  color: rgba(162, 178, 199, 0.9);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.15rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f8fd;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(78, 162, 255, 0.12);
  border-color: rgba(78, 162, 255, 0.34);
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.6rem);
}

.footer-links-column h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
}

.footer-links-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-column li + li {
  margin-top: 0.75rem;
}

.footer-links-column a {
  color: rgba(223, 231, 241, 0.8);
  font-size: 0.94rem;
  line-height: 1.55;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(184, 198, 217, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-email-link:hover {
  color: #89beff;
}

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

  .services-intro {
    margin-bottom: 1.7rem;
  }

  .services-grid,
  .products-grid,
  .estimate-shell,
  .world-map-shell,
  .hero-shell,
  .insight-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .logo-band-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  :root {
    --header-offset: 96px;
  }

  body.admin-bar {
    --admin-bar-offset: 46px;
  }

  .singular-main {
    padding-top: 2.6rem;
    padding-bottom: 3.5rem;
  }

  .singular-shell {
    padding-bottom: 2.5rem;
  }

  .case-study-main {
    padding-top: 2.4rem;
    padding-bottom: 3.25rem;
  }

  .singular-title {
    letter-spacing: -0.05rem;
  }

  .case-study-title {
    letter-spacing: -0.06rem;
  }

  .hero-intro {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .homepage-hero {
    padding-top: 2.25rem;
    padding-bottom: 1rem;
  }

  .estimate-title {
    letter-spacing: -0.03rem;
  }

  .estimate-title-global {
    margin-bottom: 1.4rem;
  }

  .cases-title {
    letter-spacing: -0.04rem;
  }

  .cases-intro-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cases-slider {
    grid-auto-columns: 100%;
  }

  .case-card {
    min-height: 0;
    padding: 0 1.35rem 1.35rem;
    border-radius: 1.5rem;
  }

  .case-card-media {
    width: calc(100% + 2.7rem);
    margin-left: -1.35rem;
    margin-right: -1.35rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .estimate-form-panel,
  .estimate-contact-card {
    padding: 0.9rem;
    border-radius: 1.15rem;
  }

  .estimate-photo-frame,
  .estimate-photo {
    min-height: 0;
    border-radius: 999px;
  }

  .estimate-photo-frame {
    width: 104px;
    height: 104px;
  }

  .estimate-contact-links {
    gap: 0.85rem;
  }

  .estimate-contact-link {
    min-height: 0;
    padding: 0;
    font-size: 0.82rem;
  }

  .site-footer {
    margin-top: 1.5rem;
    padding: 1.4rem 0;
  }

  .footer-grid {
    gap: 1.6rem;
  }

  .footer-links-grid {
    gap: 1.5rem;
  }

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

  .hero-title {
    letter-spacing: -0.09rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 1rem;
  }

  .hero-floating {
    position: static;
  }

  .hero-floating-left,
  .hero-floating-right {
    margin-top: 0.85rem;
  }

  .hero-logo-card {
    min-height: 4.5rem;
    padding: 0.72rem 0.8rem;
  }

  .hero-logo-image {
    height: 1.4rem;
    max-height: 1.4rem;
  }

  .hero-logo-media,
  .hero-logo-fallback {
    height: 1.4rem;
  }

  .hero-logo-inline-text {
    font-size: 0.82rem;
  }

  .world-map-section {
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .estimate-section {
    padding-top: 2.4rem;
    padding-bottom: 2.5rem;
  }

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

  .estimate-submit {
    width: 100%;
    justify-self: stretch;
  }

  .services-section {
    padding-top: 3rem;
    padding-bottom: 3.75rem;
  }

  .services-title {
    letter-spacing: -0.07rem;
  }

  .service-card {
    min-height: 0;
    padding: 1.4rem;
    border-radius: 1.8rem;
    gap: 0.9rem;
  }

  .service-card-title {
    max-width: 100%;
    font-size: 1.35rem;
    letter-spacing: -0.05rem;
  }

  .service-card-description {
    font-size: 0.96rem;
  }

  .service-card-link {
    padding-top: 0.85rem;
    font-size: 0.95rem;
  }

  .service-card-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.9rem;
  }

  .service-card-icon svg {
    width: 1.28rem;
    height: 1.28rem;
  }

  .world-map-title {
    letter-spacing: -0.06rem;
  }

  .world-map-visual {
    order: -1;
    padding: 0;
    min-height: 0;
  }

  .world-map-callout-card {
    position: static;
    margin-top: 1rem;
  }

  .world-map-stage {
    width: 112%;
    margin-left: -5%;
    transform: translateY(-2%) scale(1.08);
    transform-origin: 44% 24%;
  }

  .world-map-point-label {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    min-height: auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-panel {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    border-top: 1px solid rgba(1, 1, 1, 0.08);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(1, 1, 1, 0.06);
  }

  .site-navigation.is-open .nav-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .site-navigation.is-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-navigation.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-navigation.is-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    justify-content: flex-start;
    overflow: visible;
    justify-self: stretch;
  }

  .nav-link {
    padding: 0.75rem 0;
  }

  .nav-link::after {
    left: 0;
    bottom: 2px;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-item {
    width: 100%;
    white-space: normal;
  }

  .nav-item.menu-item-has-children > .nav-link {
    padding-right: 1.4rem;
  }

  .nav-item.menu-item-has-children > .nav-link::before {
    right: 0.1rem;
  }

  .nav-list .sub-menu {
    position: static;
    display: grid;
    gap: 0;
    min-width: 0;
    margin: 0.1rem 0 0.3rem 0.95rem;
    padding: 0.35rem 0 0 0.9rem;
    border: 0;
    border-left: 1px solid rgba(1, 1, 1, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-list .sub-menu .nav-link {
    padding: 0.6rem 0;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-list .sub-menu .nav-link:hover {
    background: transparent;
  }

  .product-card {
    padding: 1.35rem;
    border-radius: 1.5rem 0.85rem 1.5rem 0.85rem;
  }

  .product-card-heading {
    flex-direction: column;
  }

  .product-card::before {
    inset: 0.65rem;
    border-radius: 1rem 0.5rem 1rem 0.5rem;
  }

  .nav-actions {
    justify-self: stretch;
  }

  .hero h1 {
    max-width: none;
  }

  .visual-orbit {
    min-height: 23rem;
  }

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

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 2.35rem;
    letter-spacing: -0.08rem;
  }

  .hero-strike::after {
    height: 5px;
  }

  .hero-logo-rail {
    padding-inline: 16px;
  }

  .hero-logo-card {
    min-height: 4.1rem;
  }

  .hero-logo-image {
    height: 1.22rem;
    max-height: 1.22rem;
  }

  .hero-logo-media,
  .hero-logo-fallback {
    height: 1.22rem;
  }

  .hero-logo-inline-text {
    font-size: 0.76rem;
  }

  .world-map-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-actions,
  .footer-meta {
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
  }

  .button {
    width: 100%;
  }

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

  .visual-orbit {
    min-height: 21rem;
  }

  .orbit-node {
    min-width: 7rem;
    font-size: 0.85rem;
  }

  .orbit-node-left,
  .orbit-node-right {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .orbit-node-left {
    left: 1rem;
  }

  .orbit-node-right {
    right: 1rem;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 1.25rem;
    letter-spacing: -0.025rem;
    line-height: 1.2;
  }

  .hero-description,
  .hero-description p {
    font-size: 1.25rem;
    letter-spacing: -0.025rem;
    line-height: 1.2;
  }

  .container {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-logo-rail {
    padding-inline: 48px;
  }
}

@media (min-width: 1180px) {
  .site-navigation {
    padding: 0;
  }
}

@media (min-width: 1440px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-marquee {
    animation: none;
  }
}

/* Global square-corner pass */
:where(
  .site-header,
  .site-navigation,
  .site-footer,
  .nav-list .sub-menu,
  .button,
  button,
  input:not([type='checkbox']):not([type='radio']),
  textarea,
  select,
  img,
  [class*='card'],
  [class*='panel'],
  [class*='shell'],
  [class*='frame'],
  [class*='alert'],
  [class*='pill'],
  [class*='badge'],
  [class*='toggle'],
  [class*='preview'],
  [class*='media'],
  [class*='placeholder'],
  [class*='control']
) {
  border-radius: 0 !important;
}

:where(
  .button,
  button,
  .nav-toggle-line,
  .estimate-contact-link-icon,
  .case-slider-control,
  .hero-logo-track-item,
  .world-map-point,
  .world-map-city,
  .world-map-country
)::before,
:where(
  .button,
  button,
  .nav-toggle-line,
  .estimate-contact-link-icon,
  .case-slider-control,
  .hero-logo-track-item,
  .world-map-point,
  .world-map-city,
  .world-map-country
)::after {
  border-radius: 0 !important;
}

.estimate-photo-frame,
.estimate-photo {
  border-radius: 50% !important;
}
