@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.101877a7a906.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin-ext.623714ac1d99.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-cyrillic.8fc0aa17e129.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Noto Sans Arabic";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/noto-sans-arabic.593878768b80.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

:root {
  color-scheme: light;
  --kayen-navy: #000c26;
  --kayen-blue: #0d6efd;
  --kayen-white: #f7faff;
  --kayen-muted: #aab7c4;
  --kayen-body-font: "Manrope";
  --kayen-heading-font: "Manrope";
  --brand-dark: var(--kayen-navy);
  --brand-accent: var(--kayen-blue);
  --ink: var(--brand-dark);
  --muted: #536174;
  --line: color-mix(in srgb, var(--kayen-navy), var(--kayen-white) 84%);
  --paper: var(--kayen-white);
  --white: var(--kayen-white);
  --teal: var(--brand-accent);
  --blue: var(--brand-accent);
  --coral: var(--brand-accent);
  --lavender: var(--brand-accent);
  --gold: var(--brand-accent);
  --shadow: 0 24px 60px rgba(0, 12, 38, 0.14);
  --deep: var(--brand-dark);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--kayen-body-font), "Noto Sans Arabic", "Noto Sans SC", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

html[lang="ar"] body {
  font-family: "Noto Sans Arabic", Arial, sans-serif;
}

html[lang^="zh"] body {
  font-family: "Noto Sans SC", Arial, sans-serif;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--kayen-blue);
  box-shadow: 0 10px 24px rgba(0, 12, 38, 0.24);
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--kayen-blue);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.inner-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(19, 32, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 214px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: #061429;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 71, 171, 0.24);
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: -2px;
  font-size: 0.72rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(10px, 1.45vw, 22px);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a {
  position: relative;
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

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

.language-control {
  display: inline-flex;
  align-items: center;
}

.language-control label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 4px 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .language-control label,
.inner-page .language-control label {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.language-control span {
  font-size: 0.76rem;
  font-weight: 900;
}

.language-control select {
  width: auto;
  min-height: 30px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

.menu-button {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  min-height: 94vh;
  background: #051328;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.digital-wave-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.68;
  mix-blend-mode: screen;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 8, 22, 0.95) 0%, rgba(4, 18, 42, 0.84) 38%, rgba(4, 24, 58, 0.34) 72%, rgba(4, 21, 52, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 12, 28, 0.24), rgba(4, 12, 28, 0.24));
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(850px, calc(100% - 36px));
  margin: 78px 0 34px clamp(18px, 7vw, 96px);
  padding-top: 44px;
  color: var(--white);
}

.hero-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 88px auto 34px;
}

.hero-main {
  min-width: 0;
}

.hero-slides {
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    visibility 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide h2 {
  max-width: 880px;
  font-size: clamp(2.35rem, 4.55vw, 4.75rem);
}

.hero-chip-row,
.mark-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip-row {
  margin-top: 24px;
}

.hero-chip-row span,
.mark-cloud span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

.hero-chip-row span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-chip-row span:hover,
.mark-cloud span:hover {
  transform: translateY(-3px);
}

.hero-controls {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.hero-controls button {
  width: 34px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-controls button.is-active {
  width: 54px;
  background: var(--coral);
}

.hero-capability-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.hero-panel-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel-grid {
  display: grid;
  gap: 12px;
}

.hero-panel-grid article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.hero-panel-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel-grid strong {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.hero-panel-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-stage .hero-actions {
  margin-top: 30px;
}

.hero-stage .hero-stats {
  grid-column: 1 / -1;
  margin: 6px 0 0;
}

.page-hero {
  padding: 150px 0 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 10, 27, 0.94), rgba(6, 25, 58, 0.76)),
    url("../assets/brand/kayen-digital-wave.d860d5fa2de2.webp") center / cover;
}

.compact-hero .section-inner {
  max-width: 900px;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(3, 10, 27, 0.94), rgba(5, 20, 50, 0.76), rgba(5, 20, 50, 0.24)),
    url("../assets/brand/kayen-digital-wave.d860d5fa2de2.webp") center / cover;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0 0 22px;
  color: rgba(247, 250, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--kayen-white);
  transition: color 160ms ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--kayen-blue);
}

.breadcrumbs [aria-current="page"] {
  min-width: 0;
  color: var(--kayen-muted);
}

.error-hero {
  display: grid;
  min-height: 72vh;
  align-items: center;
}

.error-layout {
  max-width: 780px;
}

.error-code {
  display: block;
  margin-bottom: 8px;
  color: rgba(13, 110, 253, 0.28);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 800;
  line-height: 0.8;
}

.error-layout h1 {
  max-width: 720px;
}

.error-layout > p:not(.eyebrow) {
  max-width: 650px;
}

.error-layout .hero-actions {
  align-items: center;
}

.text-link.light {
  color: var(--kayen-white);
}

.service-aside {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.service-visual-frame {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.service-visual-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Noto Sans Arabic", "Noto Sans SC", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.55rem, 5vw, 5.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
}

h3 {
  font-size: 1.14rem;
}

.two-tone-title em {
  color: var(--teal);
  font-style: normal;
}

.two-tone-title.on-dark span {
  color: var(--white);
}

.two-tone-title.on-dark em {
  color: var(--lavender);
}

.hero-copy,
.page-hero p,
.service-aside p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.hero-copy {
  margin: 24px 0 0;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 32px rgba(11, 107, 104, 0.3);
}

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

.button.secondary.dark {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--teal);
  font-weight: 850;
}

.hero-stats {
  margin: 54px 0 0;
}

.hero-stats div {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.section,
.band {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.logo-ecosystem-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 10, 27, 0.96), rgba(5, 24, 59, 0.86)),
    url("../assets/brand/kayen-brand-banner.0e71833bd7c5.jpg") center / cover;
}

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

.ecosystem-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
}

.ecosystem-focus-card {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.ecosystem-focus-card h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
}

.ecosystem-focus-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.ecosystem-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.ecosystem-tabs button,
.service-explorer-toolbar button {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 13px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

.ecosystem-tabs button {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.ecosystem-tabs button:hover,
.ecosystem-tabs button.is-active,
.service-explorer-toolbar button:hover,
.service-explorer-toolbar button.is-active {
  transform: translateY(-2px);
}

.ecosystem-tabs button.is-active {
  color: var(--ink);
  background: var(--white);
}

.logo-motion-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.logo-slider {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 14px;
  animation: logo-marquee var(--marquee-duration, 30s) linear infinite;
  will-change: transform;
}

.logo-slider.reverse .logo-track {
  animation-direction: reverse;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-track span {
  display: inline-flex;
  min-width: max-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.service-mark-section {
  background: #f1f6f4;
}

.photo-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.photo-section::before {
  content: "";
  position: absolute;
  inset: -42px 0;
  z-index: -2;
  background: var(--section-photo, url("../assets/brand/kayen-brand-banner.0e71833bd7c5.jpg")) center / cover;
  transform: translateY(var(--photo-y, 0));
  transition: transform 120ms linear;
}

.photo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 20, 20, 0.9), rgba(16, 43, 42, 0.68)),
    linear-gradient(0deg, rgba(11, 20, 20, 0.18), rgba(11, 20, 20, 0.18));
}

.photo-section > .section-inner {
  position: relative;
  z-index: 1;
}

.photo-section > .digital-wave-canvas {
  z-index: 0;
}

.service-explorer-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 244, 0.96)),
    url("../assets/material/macbook.f7a50530adc9.png") right 12% top 42px / min(46vw, 540px) no-repeat;
}

.service-explorer-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-explorer-toolbar button {
  color: var(--teal);
  border-color: var(--line);
  background: var(--white);
}

.service-explorer-toolbar button.is-active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.service-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(11, 107, 104, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 249, 0.78)),
    var(--white);
  box-shadow: 0 18px 54px rgba(19, 32, 31, 0.08);
}

.service-preview-panel h3 {
  font-size: clamp(1.35rem, 2.3vw, 2.35rem);
}

.service-preview-panel p:not(.eyebrow) {
  color: var(--muted);
}

.service-grid .service-action-card {
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-action-card:hover {
  transform: translateY(-7px);
  border-color: rgba(11, 107, 104, 0.35);
  box-shadow: 0 24px 62px rgba(19, 32, 31, 0.12);
}

.service-action-card.is-hidden {
  display: none;
}

.mark-row-grid {
  display: grid;
  gap: 14px;
}

.mark-row-grid article,
.service-mark-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 32, 31, 0.06);
}

.mark-row-grid article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mark-row-grid article:hover,
.service-mark-grid:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 107, 104, 0.34);
  box-shadow: 0 24px 62px rgba(19, 32, 31, 0.12);
}

.mark-row-grid strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.mark-cloud span {
  border: 1px solid #cbd8d5;
  padding: 0 13px;
  color: #164a48;
  background: #f8fbf9;
}

.mark-cloud span:nth-child(3n + 2) {
  color: #244997;
  background: #eef3ff;
}

.mark-cloud span:nth-child(3n) {
  color: #8f493f;
  background: #fff1ed;
}

.mark-cloud.large span {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.service-mark-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-mark-grid h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.intro-grid,
.split-grid,
.launch-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro p:last-child,
.split-grid p,
.launch-copy p,
.contact-grid > div p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-grid,
.feature-grid,
.portfolio-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

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

.portfolio-grid,
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-grid article,
.feature-grid article,
.portfolio-grid article,
.pricing-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(19, 32, 31, 0.04);
}

.service-grid article,
.feature-grid article,
.portfolio-grid article,
.pricing-grid article,
.project-card,
.blog-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 24px;
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  will-change: transform;
}

.tilt-card:hover {
  border-color: rgba(11, 107, 104, 0.32);
  box-shadow: 0 28px 70px rgba(19, 32, 31, 0.16);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}

.feature-grid article {
  min-height: 190px;
}

.service-grid p,
.feature-grid p,
.portfolio-grid p,
.pricing-grid li {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: #e7f2f0;
  font-size: 0.78rem;
  font-weight: 900;
}

.icon.large {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 1.05rem;
}

.split-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(238, 115, 95, 0.18), transparent 34%),
    linear-gradient(135deg, #102b2a 0%, #173d47 48%, #22334f 100%);
}

.split-section .eyebrow,
.launch-section .eyebrow {
  color: #ffad9f;
}

.split-section p,
.launch-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.launch-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(196, 154, 69, 0.2), transparent 35%),
    linear-gradient(135deg, #102b2a 0%, #173d47 48%, #22334f 100%);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.process-list p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.pricing-section {
  background: #edf4f2;
}

.offer-flow {
  display: grid;
  gap: 16px;
}

.offer-step {
  display: grid;
  grid-template-columns: 62px minmax(0, 0.9fr) minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 32, 31, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.offer-step:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 107, 104, 0.35);
  box-shadow: 0 24px 62px rgba(19, 32, 31, 0.13);
}

.offer-step.featured {
  border-color: rgba(11, 107, 104, 0.42);
  background:
    linear-gradient(90deg, rgba(11, 107, 104, 0.07), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.offer-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 900;
}

.offer-main h3 {
  font-size: 1.12rem;
}

.offer-main p:last-child {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.offer-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.portfolio-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 249, 0.95)),
    var(--paper);
}

.portfolio-showcase.photo-section {
  color: var(--white);
  background: var(--deep);
  --section-photo: url("../assets/brand/kayen-digital-wave.d860d5fa2de2.webp");
}

.portfolio-showcase.photo-section .section-heading h2 {
  color: var(--white);
}

.portfolio-showcase.photo-section .project-card {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.project-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card,
.blog-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 32, 31, 0.06);
}

.project-media,
.blog-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #102b2a, #2457d6);
}

.project-media img,
.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.project-pizza-vitti .project-media {
  background: #080d1d;
}

.project-a-green-future .project-media {
  background: #f2f6f4;
}

.project-pizza-vitti .project-media img,
.project-a-green-future .project-media img {
  object-fit: contain;
  object-position: center;
}

.project-card:hover img,
.blog-card:hover img {
  transform: scale(1.045);
}

.project-plum-village .project-media {
  background: #171710;
}

.project-plum-village .project-media img {
  object-fit: contain;
}

.project-card:hover .project-media::after {
  opacity: 1;
}

.project-media::after {
  content: "View website";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 107, 104, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-fallback {
  display: grid;
  height: 100%;
  place-content: center;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(238, 115, 95, 0.34), transparent 30%),
    linear-gradient(135deg, #102b2a 0%, #173d47 48%, #22334f 100%);
}

.project-fallback strong {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1;
}

.project-fallback small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.project-body,
.blog-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.project-services {
  margin: auto 0 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.button.dark-text {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.crypto-preview,
.crypto-detail-section {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 16%, rgba(238, 115, 95, 0.2), transparent 32%),
    linear-gradient(135deg, #0b1414 0%, #102b2a 42%, #18254b 100%);
}

.ip-credentials-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 249, 0.96)),
    var(--paper);
}

.ip-credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ip-credentials-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.credential-panel {
  display: grid;
  gap: 14px;
}

.credential-panel article {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 32, 31, 0.06);
}

.credential-panel strong {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 1.05rem;
  font-weight: 900;
}

.credential-panel span {
  color: var(--muted);
  font-weight: 800;
}

.ip-services-section {
  background: var(--white);
}

.domain-achievement-section {
  background: #edf4f2;
}

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

.domain-achievement-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 32, 31, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.domain-achievement-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(36, 87, 214, 0.28);
  box-shadow: 0 28px 70px rgba(19, 32, 31, 0.14);
}

.domain-achievement-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 900;
}

.domain-achievement-grid p {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.ip-card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 32, 31, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.ip-card-grid article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.ip-card-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 107, 104, 0.35);
  box-shadow: 0 28px 70px rgba(19, 32, 31, 0.14);
}

.ip-card-grid article:hover::before {
  transform: scaleX(1);
}

.ip-card-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 0.9rem;
  font-weight: 900;
}

.ip-card-grid p {
  color: var(--muted);
}

.ip-card-grid small {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 850;
}

.ip-faq-section {
  background: var(--white);
}

.ip-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.ip-faq-grid > div > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(19, 32, 31, 0.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details[open] {
  border-color: rgba(11, 107, 104, 0.35);
  background: var(--white);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.crypto-preview-grid,
.crypto-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.crypto-preview p,
.crypto-detail-section p {
  color: rgba(255, 255, 255, 0.78);
}

.crypto-preview img {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.32));
}

.crypto-visual-stack {
  display: grid;
  gap: 18px;
}

.crypto-visual-stack img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.crypto-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.crypto-pill-grid span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.blog-section {
  background: var(--white);
}

.blog-card {
  min-height: 100%;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 115, 95, 0.4);
  box-shadow: 0 26px 64px rgba(238, 115, 95, 0.12);
}

.blog-card:hover .text-link {
  color: var(--coral);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.article-content-section {
  background: var(--white);
}

.article-content {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
}

.article-content p {
  color: var(--muted);
  font-size: 1.12rem;
}

.pricing-grid article.featured {
  border-color: rgba(11, 107, 104, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  font-size: 1.25rem;
  font-weight: 900;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: auto 0 20px;
  padding-left: 18px;
}

.note-section,
.contact-section,
.related-section {
  background: var(--white);
}

.contact-photo-section {
  color: var(--white);
  background: #0b1414;
  --section-photo: url("../assets/brand/kayen-brand-banner.0e71833bd7c5.jpg");
}

.contact-photo-section h2,
.contact-photo-section h3 {
  color: var(--white);
}

.team-section {
  position: relative;
  overflow: hidden;
  background: #eef4f6;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--coral));
}

.team-section .section-inner {
  position: relative;
}

.team-heading h2 {
  max-width: 760px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  min-height: 210px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #d4e0e4;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 29, 50, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.team-card:hover {
  border-color: rgba(36, 87, 214, 0.34);
  box-shadow: 0 24px 54px rgba(7, 29, 50, 0.14);
  transform: translateY(-7px);
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-photo-placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  width: 100%;
  min-height: 174px;
  padding: 12px 7px;
  border-radius: 6px;
  color: var(--white);
  background: #071d32;
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 174px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.team-card:nth-child(2n) .team-photo-placeholder {
  background: #0b6b68;
}

.team-card:nth-child(3n) .team-photo-placeholder {
  background: #244997;
}

.team-photo-placeholder span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 900;
}

.team-photo-placeholder small {
  max-width: 82px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  line-height: 1.25;
}

.team-profile {
  min-width: 0;
}

.team-profile h3 {
  margin: 5px 0 10px;
  font-size: 1.24rem;
}

.team-profile > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.team-role {
  margin: 0;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-page-hero {
  background:
    linear-gradient(90deg, rgba(3, 10, 27, 0.96), rgba(6, 25, 58, 0.78), rgba(6, 25, 58, 0.34)),
    url("../assets/brand/kayen-digital-wave.d860d5fa2de2.webp") center / cover;
}

.team-page-hero-inner {
  max-width: 1180px;
}

.team-page-hero h1 {
  max-width: 920px;
}

.team-page-hero-inner > p:not(.eyebrow) {
  max-width: 800px;
}

.team-experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.team-experience-strip div {
  min-width: 0;
  padding: 20px;
  background: rgba(3, 16, 39, 0.72);
}

.team-experience-strip dt {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
}

.team-experience-strip dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}

.team-page-roster {
  background: #eef4f6;
}

.team-method-section {
  background: var(--white);
}

.team-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-method-grid li {
  padding-top: 18px;
  border-top: 3px solid var(--teal);
  transition: transform 180ms ease, border-color 180ms ease;
}

.team-method-grid li:hover {
  border-color: var(--coral);
  transform: translateY(-5px);
}

.team-method-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.team-method-grid h3 {
  margin: 10px 0;
  font-size: 1.08rem;
}

.team-method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-photo-section .contact-grid > div p,
.contact-photo-section .map-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-photo-section .contact-mini-list a,
.contact-photo-section .contact-mini-list span {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.contact-photo-section .contact-form,
.contact-photo-section .contact-map-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.contact-photo-section .map-copy h3 {
  color: var(--ink);
}

.contact-photo-section .map-copy p:not(.eyebrow) {
  color: var(--muted);
}

.note {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #f1d5c2;
  border-radius: 8px;
  background: #fff8f2;
}

.note h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.note p {
  margin: 0;
  color: #75513e;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.form-error {
  color: #b3362b;
}

.direct-contact,
.footer,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.direct-contact {
  justify-content: space-between;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.direct-contact a {
  color: var(--teal);
  font-weight: 850;
}

.contact-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-mini-list a,
.contact-mini-list span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
}

.contact-mini-list a {
  color: var(--teal);
}

.contact-map-shell {
  margin-top: 34px;
}

.contact-map-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(19, 32, 31, 0.08);
}

.map-copy {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 40px);
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-embed {
  display: grid;
  min-height: 360px;
  background: #e8eef6;
}

.map-consent {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: clamp(26px, 5vw, 56px);
  color: var(--ink);
  background:
    linear-gradient(rgba(232, 238, 246, 0.9), rgba(232, 238, 246, 0.94)),
    url("../assets/brand/kayen-service-cover.f9d6dbf1e61a.jpg") center / cover;
}

.map-consent strong {
  font-size: 1.2rem;
}

.map-consent p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.map-consent a {
  color: var(--teal);
  font-weight: 850;
}

.map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.policy-section {
  background: var(--white);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 9px;
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}

.policy-nav strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.policy-nav a {
  color: var(--muted);
  font-weight: 750;
}

.policy-nav a:hover {
  color: var(--teal);
}

.policy-content {
  min-width: 0;
}

.policy-content > section {
  padding: 0 0 34px;
  scroll-margin-top: 110px;
  border-bottom: 1px solid var(--line);
}

.policy-content > section + section {
  padding-top: 34px;
}

.policy-content p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.03rem;
}

.policy-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.policy-facts div {
  padding: 18px;
  background: var(--paper);
}

.policy-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.policy-note {
  padding: 16px 18px;
  border-left: 4px solid var(--coral);
  background: #fff4f0;
}

.policy-updated {
  margin-top: 28px;
  font-size: 0.88rem !important;
  font-weight: 800;
}

.contact-dock {
  position: fixed;
  right: 20px;
  bottom: 98px;
  z-index: 39;
  display: grid;
  gap: 12px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-action {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7, 30, 48, 0.18), 0 0 0 8px rgba(11, 107, 104, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-action::after {
  content: attr(data-contact-tooltip);
  position: absolute;
  right: calc(100% + 13px);
  width: max-content;
  max-width: 190px;
  padding: 7px 10px;
  border-radius: 5px;
  color: var(--white);
  background: var(--deep);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(7, 30, 48, 0.24), 0 0 0 9px rgba(11, 107, 104, 0.1);
}

.contact-action:hover::after,
.contact-action:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.contact-action svg,
.chat-widget svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-action-phone {
  background: #168d98;
}

.contact-action-whatsapp {
  background: #16a45b;
}

.contact-action-email {
  background: #315fcb;
}

.chat-is-open .contact-dock {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 42;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.chat-toggle {
  display: grid;
  grid-template-columns: 42px auto;
  min-width: 176px;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 18px 52px rgba(19, 32, 31, 0.25);
  cursor: pointer;
}

.chat-toggle-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: var(--deep);
  background: #71dfcc;
}

.chat-toggle-copy {
  display: grid;
  justify-items: start;
}

.chat-toggle-copy strong {
  font-size: 0.9rem;
}

.chat-toggle-copy small,
.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.chat-toggle-copy i,
.chat-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57dc91;
  box-shadow: 0 0 0 3px rgba(87, 220, 145, 0.15);
}

.chat-widget.is-open .chat-toggle {
  display: none;
}

.chat-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(420px, calc(100vw - 36px));
  max-height: min(720px, calc(100dvh - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 30px 90px rgba(7, 26, 45, 0.36);
}

.chat-panel[hidden],
.chat-view[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #10162d;
}

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

.chat-header-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-header-brand span,
.chat-header-brand strong,
.chat-header-brand small {
  display: block;
}

.chat-header-brand small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-icon-button,
.chat-back-button,
.chat-nav button {
  display: grid;
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.chat-icon-button {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.chat-icon-button:hover,
.chat-icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.chat-body {
  min-height: 0;
  overflow: auto;
  background: #171b35;
}

.chat-view {
  min-height: 470px;
  padding: 24px;
}

.chat-consent-view,
.chat-profile-view {
  display: grid;
  align-items: center;
}

.chat-consent-card,
.chat-new-conversation,
.chat-profile-form {
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.chat-consent-card {
  padding: 26px;
}

.chat-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-consent-card h2,
.chat-profile-view h2,
.chat-welcome-view h2 {
  margin: 0;
  letter-spacing: 0;
}

.chat-consent-card h2 {
  font-size: 1.45rem;
}

.chat-consent-card > p:not(.chat-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.chat-consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.chat-primary-button,
.chat-secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.chat-primary-button {
  border: 1px solid var(--teal);
  color: var(--white);
  background: var(--teal);
}

.chat-primary-button:hover,
.chat-primary-button:focus-visible {
  background: #075955;
}

.chat-primary-button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.chat-secondary-button {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: var(--white);
}

.chat-privacy-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  text-decoration: underline;
}

.chat-welcome-view {
  padding-top: 46px;
}

.chat-welcome-copy {
  text-align: center;
}

.chat-welcome-copy .chat-status {
  justify-content: center;
}

.chat-welcome-view h2 {
  margin-top: 10px;
  color: var(--white);
  font-size: 1.8rem;
}

.chat-welcome-view p:last-child {
  max-width: 310px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.74);
}

.chat-new-conversation {
  display: flex;
  width: 100%;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding: 22px;
  border: 0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.15);
}

.chat-new-conversation span,
.chat-new-conversation strong,
.chat-new-conversation small {
  display: block;
}

.chat-new-conversation strong {
  font-size: 1.1rem;
}

.chat-new-conversation small {
  margin-top: 5px;
  color: var(--muted);
}

.chat-new-conversation svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.chat-profile-view {
  align-content: start;
  padding-top: 16px;
}

.chat-back-button {
  grid-template-columns: 20px auto;
  width: max-content;
  gap: 4px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 0.82rem;
}

.chat-back-button svg {
  width: 20px;
  height: 20px;
}

.chat-profile-view h2 {
  margin: 12px 0 18px;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.35;
}

.chat-profile-form {
  display: grid;
  gap: 13px;
  padding: 20px;
}

.chat-profile-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.chat-profile-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

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

.chat-profile-error {
  margin: 0;
  color: #9c2f25;
  font-size: 0.8rem;
}

.chat-profile-form .chat-primary-button {
  width: 100%;
  margin-top: 3px;
}

.chat-profile-form .chat-primary-button svg {
  width: 20px;
  height: 20px;
}

.chat-conversation-view {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto auto;
  min-height: 470px;
  padding: 0;
  background: var(--paper);
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 18px;
}

.chat-message {
  max-width: 88%;
  margin: 0;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.chat-message.bot {
  justify-self: start;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(19, 32, 31, 0.06);
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--teal);
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.chat-quick button,
.chat-form button {
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
}

.chat-quick button {
  min-height: 34px;
  padding: 0 10px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chat-form input {
  min-height: 44px;
}

.chat-form button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.chat-form button svg {
  width: 19px;
  height: 19px;
}

.chat-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 66px;
  border-top: 1px solid rgba(7, 26, 50, 0.08);
  color: #687078;
  background: var(--white);
}

.chat-panel[data-view="consent"] .chat-nav {
  display: none;
}

.chat-nav button {
  position: relative;
}

.chat-nav button.is-active {
  color: var(--teal);
}

.chat-nav button.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 32px;
  height: 3px;
  background: var(--coral);
  transform: translateX(-50%);
}

.chat-powered {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.78rem;
}

.chat-powered img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.chat-powered strong {
  color: var(--ink);
}

.messages {
  position: fixed;
  top: 86px;
  right: 18px;
  z-index: 30;
  width: min(420px, calc(100% - 36px));
}

.message {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(11, 107, 104, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-section,
.invoice-detail-section {
  background: #edf4f2;
}

.dashboard-page .language-control,
.dashboard-page .chat-widget,
.dashboard-page .contact-dock,
.dashboard-page .footer {
  display: none;
}

.control-center-page .site-header {
  display: none;
}

.control-center-page main {
  background: #f4f7fa;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  display: flex;
  width: 258px;
  flex-direction: column;
  color: #d7e0ed;
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.2), transparent 28%),
    #111827;
  box-shadow: 10px 0 30px rgba(15, 23, 42, 0.12);
}

.admin-sidebar-brand {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-sidebar-brand > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  font-weight: 900;
}

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

.admin-user-panel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  margin: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-user-panel > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #dbeafe;
  background: #263449;
  font-weight: 850;
}

.admin-user-panel div {
  display: grid;
  min-width: 0;
}

.admin-user-panel strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-user-panel small {
  color: #8fa0b8;
  font-size: 0.65rem;
}

.admin-sidebar-nav {
  display: grid;
  gap: 3px;
  padding: 0 12px 18px;
  overflow-y: auto;
}

.admin-sidebar-nav p {
  margin: 16px 9px 6px;
  color: #6f829b;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-sidebar-nav a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 9px;
  min-height: 42px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  color: #b9c6d8;
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a:focus-visible,
.admin-sidebar-nav a.is-active {
  color: #fff;
  background: rgba(37, 99, 235, 0.2);
  transform: translateX(2px);
}

.admin-sidebar-nav a.is-active {
  box-shadow: inset 3px 0 #60a5fa;
}

.admin-sidebar-nav i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 7px;
  color: #9fc2ff;
  background: rgba(255, 255, 255, 0.055);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 900;
}

.admin-sidebar-nav b {
  min-width: 21px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #dbeafe;
  background: #2563eb;
  font-size: 0.61rem;
  text-align: center;
}

.admin-sidebar-nav b.is-warning {
  color: #7c2d12;
  background: #fed7aa;
}

.admin-sidebar-footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9c6d8;
  font-size: 0.66rem;
  font-weight: 750;
}

.admin-sidebar-footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

.admin-sidebar-footer small {
  color: #6f829b;
  font-size: 0.6rem;
}

.admin-workspace {
  min-height: 100vh;
  margin-left: 258px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 16px;
  padding: 10px clamp(18px, 3vw, 38px);
  border-bottom: 1px solid #dce5ec;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(14px);
}

.admin-topbar > button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #dce5ec;
  border-radius: 9px;
  color: #334155;
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.admin-topbar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.75rem;
}

.admin-topbar-breadcrumb b {
  color: #cbd5e1;
}

.admin-topbar-breadcrumb strong {
  color: #334155;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.admin-topbar-actions a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #526174;
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-topbar-actions a:hover {
  background: #f1f5f9;
}

.admin-topbar-actions .admin-topbar-primary {
  color: #fff;
  background: #2563eb;
}

.dashboard-hero-actions {
  display: flex;
  margin-top: 24px;
}

.control-center-header {
  padding: 42px 0 34px;
  border-bottom: 1px solid #dbe4ea;
  background:
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(135deg, #f7fafe 0%, #eef4f8 100%);
}

.control-center-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.control-center-heading h1 {
  margin: 6px 0 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
}

.control-center-heading p:last-child {
  max-width: 680px;
  margin: 10px 0 0;
  color: #526174;
}

.control-center-intro {
  min-width: 0;
}

.control-center-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.control-center-kicker .eyebrow {
  margin: 0;
}

.control-live-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border: 1px solid #cfe5db;
  border-radius: 999px;
  color: #126349;
  background: #effaf5;
  font-size: 0.72rem;
  font-weight: 800;
}

.control-live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #19a36f;
  box-shadow: 0 0 0 4px rgba(25, 163, 111, 0.12);
}

.control-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
}

.control-section-nav a {
  position: relative;
  color: #526174;
  font-size: 0.82rem;
  font-weight: 750;
}

.control-section-nav a:hover,
.control-section-nav a:focus-visible {
  color: #2563eb;
}

.control-center-actions {
  display: grid;
  flex: 0 0 min(100%, 320px);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.control-primary-action {
  justify-content: center;
}

.control-primary-action span {
  font-size: 1.2rem;
  line-height: 1;
}

.control-secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.control-secondary-actions a {
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #334155;
  background: #f4f7fa;
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.control-secondary-actions a:last-child {
  grid-column: 1 / -1;
}

.control-secondary-actions a:hover,
.control-secondary-actions a:focus-visible {
  color: #1d4ed8;
  background: #eaf1ff;
}

.control-center-section {
  padding: 34px 0 72px;
  background: #f4f7fa;
}

.control-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.control-metric-grid article {
  display: grid;
  gap: 14px;
  min-height: 154px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid #dce5ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.control-metric-grid article:hover {
  border-color: #bfd0df;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.control-metric-grid article.is-priority {
  border-color: #bbd2ff;
  background: linear-gradient(145deg, #ffffff, #f2f7ff);
}

.control-metric-grid article.is-warning {
  border-color: #f3d5a3;
  background: linear-gradient(145deg, #ffffff, #fff9ed);
}

.control-metric-label {
  display: flex;
  gap: 9px;
  align-items: center;
}

.control-metric-label i {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eaf1ff;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
}

.control-metric-label span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.25;
}

.control-metric-grid strong {
  color: #0f172a;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.control-metric-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-widget-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.dashboard-quick-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #dce5ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.035);
}

.dashboard-quick-actions .eyebrow {
  margin: 0 0 2px;
}

.dashboard-quick-actions > div > strong {
  color: #334155;
  font-size: 0.78rem;
}

.dashboard-quick-actions nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.dashboard-quick-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid #dce5ec;
  border-radius: 9px;
  color: #334155;
  background: #f8fafc;
  font-size: 0.72rem;
  font-weight: 800;
}

.dashboard-quick-actions a:hover,
.dashboard-quick-actions a:focus-visible {
  border-color: #b8cdf8;
  color: #1d4ed8;
  background: #eff5ff;
}

.dashboard-quick-actions i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  color: #1d4ed8;
  background: #e6efff;
  font-style: normal;
  font-size: 0.58rem;
}

.dashboard-intelligence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  gap: 16px;
  margin-top: 18px;
}

.dashboard-chart-widget {
  grid-row: span 2;
}

.dashboard-chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 750;
}

.dashboard-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dashboard-chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dashboard-chart-legend .is-leads {
  background: #2563eb;
}

.dashboard-chart-legend .is-invoices {
  background: #14b8a6;
}

.dashboard-chart-canvas {
  height: 310px;
  margin-top: 16px;
}

.dashboard-chart-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.dashboard-alert-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.dashboard-alert-list a {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 9px;
  color: #334155;
  background: #f8fafc;
}

.dashboard-alert-list a:hover,
.dashboard-alert-list a:focus-visible {
  background: #f1f5f9;
}

.dashboard-alert-list > a > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.dashboard-alert-list .is-urgent > i {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.dashboard-alert-list .is-warning > i {
  background: #d97706;
}

.dashboard-alert-list .is-complete > i {
  background: #16a36a;
}

.dashboard-alert-list span {
  min-width: 0;
}

.dashboard-alert-list strong,
.dashboard-alert-list small {
  display: block;
}

.dashboard-alert-list strong {
  color: #1e293b;
  font-size: 0.73rem;
}

.dashboard-alert-list small {
  overflow: hidden;
  margin-top: 2px;
  color: #64748b;
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-alert-list b {
  color: #94a3b8;
}

.dashboard-activity-list {
  display: grid;
  gap: 0;
  max-height: 260px;
  overflow: auto;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-activity-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #edf1f5;
}

.dashboard-activity-list li:last-child {
  border-bottom: 0;
}

.dashboard-activity-list > li > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eaf1ff;
  font-style: normal;
  font-size: 0.67rem;
  font-weight: 900;
}

.dashboard-activity-list > li > i.is-invoice {
  color: #0f766e;
  background: #e6f8f5;
}

.dashboard-activity-list a,
.dashboard-activity-list span {
  display: block;
}

.dashboard-activity-list a {
  overflow: hidden;
  color: #1e293b;
  font-size: 0.72rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-activity-list span,
.dashboard-activity-list time {
  color: #64748b;
  font-size: 0.63rem;
}

.dashboard-activity-list time {
  white-space: nowrap;
}

.dashboard-widget {
  min-width: 0;
  padding: 22px;
  border: 1px solid #dce5ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.dashboard-widget-heading {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-widget-heading .eyebrow {
  margin-bottom: 3px;
}

.dashboard-widget-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
}

.dashboard-widget-heading > a {
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.widget-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid #dce5ec;
  border-radius: 999px;
  color: #64748b;
  background: #f7f9fc;
  font-size: 0.66rem;
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-health-content {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
}

.dashboard-health-ring {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border-radius: 50%;
  background: conic-gradient(#2563eb var(--health-progress), #e8edf3 0);
  text-align: center;
}

.dashboard-health-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: #fff;
}

.dashboard-health-ring strong,
.dashboard-health-ring span {
  position: relative;
  z-index: 1;
}

.dashboard-health-ring strong {
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1;
}

.dashboard-health-ring span {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 750;
}

.dashboard-health-content p {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.5;
}

.dashboard-health-content p + p {
  margin-top: 5px;
}

.dashboard-health-content p strong {
  color: #0f172a;
}

.dashboard-health-content .text-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.76rem;
}

.dashboard-bars {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.dashboard-bars > div {
  display: grid;
  gap: 6px;
}

.dashboard-bars span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #526174;
  font-size: 0.73rem;
}

.dashboard-bars b {
  font-weight: 700;
}

.dashboard-bars strong {
  color: #0f172a;
}

.dashboard-bars i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf3;
}

.dashboard-bars em {
  display: block;
  height: 100%;
  min-width: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.dashboard-note-widget textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  margin-top: 18px;
  border: 1px solid #dce5ec;
  border-radius: 10px;
  padding: 12px;
  color: #0f172a;
  background: #f8fafc;
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.55;
}

.dashboard-note-widget textarea:focus {
  border-color: #2563eb;
  background: #fff;
}

.dashboard-note-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.dashboard-note-actions span {
  color: #64748b;
  font-size: 0.68rem;
}

.dashboard-note-actions button {
  padding: 0;
  border: 0;
  color: #2563eb;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.control-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.control-seo-panel {
  margin-top: 18px;
}

.seo-issue {
  display: block;
  color: var(--kayen-navy);
  font-size: 0.74rem;
}

.seo-issue + .seo-issue {
  margin-top: 3px;
}

.control-action-links {
  white-space: nowrap;
}

.control-action-links a + a {
  margin-inline-start: 10px;
}

.control-panel,
.control-management {
  min-width: 0;
  border: 1px solid #dce5ec;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.control-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.control-panel-heading .eyebrow {
  margin-bottom: 4px;
}

.control-panel-heading h2 {
  margin: 0;
  font-size: 1.12rem;
}

.control-table-wrap {
  overflow-x: auto;
}

.control-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.control-table th,
.control-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e8eeee;
  text-align: left;
  vertical-align: middle;
}

.control-table th {
  color: var(--muted);
  background: #f6f8fb;
  font-size: 0.7rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.control-table tbody tr {
  transition: background 150ms ease;
}

.control-table tbody tr:hover {
  background: #f8fbff;
}

.control-table td:first-child strong,
.control-table td:first-child a {
  display: block;
}

.control-table td:first-child a {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.lead-email-status {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 0.63rem;
  font-weight: 750;
}

.lead-email-status.is-sent {
  color: #0f766e;
}

.lead-email-status.is-error {
  color: #b42318;
}

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

.control-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  color: #7d4b00;
  background: #fff1cf;
  font-size: 0.7rem;
  font-weight: 850;
  white-space: nowrap;
}

.control-status.is-complete,
.control-status.status-paid {
  color: #0b5a42;
  background: #dff2e9;
}

.control-status.status-overdue,
.control-status.status-cancelled {
  color: #8b2b25;
  background: #fbe4e1;
}

.control-status.status-draft {
  color: #4b5967;
  background: #e9eef2;
}

.control-inline-action {
  padding: 0;
  border: 0;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.control-management {
  margin-top: 18px;
}

.control-management-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #e4eaf0;
}

.control-management-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 3px 12px;
  min-height: 116px;
  align-content: center;
  padding: 18px;
  background: #fff;
  transition: background 160ms ease, transform 160ms ease;
}

.control-management-grid a[hidden] {
  display: none;
}

.control-management-grid a:hover,
.control-management-grid a:focus-visible {
  z-index: 1;
  background: #f5f9ff;
  transform: translateY(-2px);
}

.control-management-grid i {
  display: grid;
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: #1d4ed8;
  background: #eaf1ff;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 900;
}

.control-management-grid strong {
  align-self: end;
  color: #0f172a;
  font-size: 0.9rem;
}

.control-management-grid b {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: #94a3b8;
  font-size: 1rem;
}

.control-management-grid span {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.control-search {
  display: block;
  width: min(280px, 100%);
}

.control-search input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d5dfe8;
  border-radius: 9px;
  padding: 8px 12px;
  color: #0f172a;
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
}

.control-search input:focus {
  border-color: #2563eb;
}

.control-search-empty {
  margin: 0;
  padding: 30px;
  color: #64748b;
  text-align: center;
}

.control-search-empty[hidden] {
  display: none;
}

@media (max-width: 1280px) {
  .control-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .dashboard-note-widget {
    grid-column: 1 / -1;
  }

  .dashboard-intelligence-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  }
}

@media (max-width: 980px) {
  .admin-sidebar {
    transform: translateX(-105%);
    transition: transform 200ms ease;
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-workspace {
    margin-left: 0;
  }

  .admin-topbar > button {
    display: grid;
    place-items: center;
  }

  .admin-sidebar-open {
    overflow: hidden;
  }

  .admin-sidebar-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15, 23, 42, 0.46);
  }
}

@media (max-width: 820px) {
  .control-center-header {
    padding-top: 32px;
  }

  .control-center-heading {
    display: grid;
    align-items: start;
  }

  .control-center-actions {
    width: 100%;
  }

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

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

  .dashboard-note-widget {
    grid-column: auto;
  }

  .dashboard-quick-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-quick-actions nav {
    justify-content: flex-start;
  }

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

  .dashboard-chart-widget {
    grid-row: auto;
  }

  .control-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .control-search {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .control-center-header {
    padding-block: 28px 26px;
  }

  .admin-topbar {
    padding-inline: 12px;
  }

  .admin-topbar-breadcrumb span,
  .admin-topbar-breadcrumb b,
  .admin-topbar-actions > a:first-child {
    display: none;
  }

  .admin-topbar-actions .admin-topbar-primary {
    padding-inline: 10px;
  }

  .control-section-nav {
    gap: 8px;
  }

  .control-section-nav a {
    padding: 7px 10px;
    border: 1px solid #dbe4ea;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
  }

  .control-secondary-actions {
    grid-template-columns: 1fr;
  }

  .control-secondary-actions a:last-child {
    grid-column: auto;
  }

  .control-metric-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-health-content {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .dashboard-health-ring {
    width: 92px;
    height: 92px;
  }

  .dashboard-quick-actions nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-quick-actions a {
    justify-content: center;
  }

  .dashboard-chart-widget,
  .dashboard-alert-widget,
  .dashboard-activity-widget {
    padding: 17px;
  }

  .dashboard-chart-widget .dashboard-widget-heading {
    display: grid;
  }

  .dashboard-chart-legend {
    justify-content: flex-start;
  }

  .dashboard-chart-canvas {
    height: 250px;
  }

  .dashboard-activity-list li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .dashboard-activity-list time {
    display: none;
  }

  .control-metric-grid article {
    min-height: 132px;
  }

  .control-management-grid a {
    min-height: 100px;
  }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.dashboard-form,
.invoice-list-panel,
.invoice-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(19, 32, 31, 0.08);
}

.dashboard-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

.dashboard-form-heading {
  grid-column: 1 / -1;
}

.dashboard-form h2,
.invoice-list-panel h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.invoice-help-text {
  max-width: 720px;
  color: var(--muted);
}

.dashboard-form > label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.dashboard-form > label:nth-of-type(3),
.dashboard-form > label:nth-of-type(12),
.dashboard-form > label:nth-of-type(13),
.dashboard-form .button {
  grid-column: 1 / -1;
}

.dashboard-form small {
  color: var(--muted);
  font-weight: 650;
}

.invoice-calculator {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 29, 28, 0.96), rgba(11, 107, 104, 0.9)),
    url("../assets/material/bg-coworking.58da71232b6c.jpeg") center / cover;
  box-shadow: 0 20px 44px rgba(16, 29, 28, 0.16);
}

.invoice-calculator::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
  opacity: 0.62;
}

.invoice-calculator > * {
  position: relative;
  z-index: 1;
}

.invoice-calculator-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.invoice-calculator-heading .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.invoice-calculator h3 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.invoice-calculator-heading > strong {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #f9d678;
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  white-space: nowrap;
}

.invoice-calculator-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(4, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.invoice-calculator label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 850;
}

.invoice-calculator input {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.invoice-calculator-result {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.invoice-calculator-result p {
  margin: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.invoice-calculator-result span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.invoice-calculator-result strong {
  color: var(--white);
  font-size: 1.35rem;
}

.invoice-calculator code {
  display: block;
  overflow-wrap: anywhere;
  padding: 10px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.invoice-calculator .button {
  margin-top: 14px;
}

.invoice-list-panel {
  padding: clamp(20px, 3vw, 30px);
}

.invoice-list {
  display: grid;
  gap: 12px;
}

.invoice-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.invoice-list strong,
.invoice-list span {
  display: block;
}

.invoice-list span,
.empty-state {
  color: var(--muted);
}

.invoice-list b {
  display: block;
  white-space: nowrap;
}

.invoice-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.invoice-document {
  padding: clamp(24px, 5vw, 54px);
}

.invoice-header,
.invoice-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: clamp(24px, 4vw, 54px);
}

.invoice-document .footer-brand {
  color: var(--ink);
  font-size: 1.4rem;
}

.invoice-header {
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.invoice-header h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.invoice-meta {
  padding: 30px 0;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.invoice-table th,
.invoice-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.invoice-table th {
  color: var(--white);
  background: var(--deep);
}

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

.invoice-totals {
  display: grid;
  width: min(420px, 100%);
  gap: 10px;
  margin: 28px 0 0 auto;
}

.invoice-totals p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.invoice-totals .grand-total {
  color: var(--white);
  background: var(--deep);
}

.invoice-notes {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.commitments-section {
  background: var(--white);
}

.commitments-heading > div > p,
.product-process-section .section-heading > div > p,
.mobile-industries-section .section-heading > div > p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commitment-grid article {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.commitment-grid article:last-child {
  border-right: 0;
}

.commitment-grid article:hover {
  z-index: 1;
  background: #eef7f5;
  transform: translateY(-5px);
}

.commitment-index {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.commitment-metric {
  margin: 54px 0 12px;
  color: var(--blue);
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
}

.commitment-grid article > p:last-child {
  color: var(--muted);
}

.technology-delivery-section {
  color: var(--white);
  background: #0c1227;
}

.technology-delivery-grid,
.delivery-markets-grid,
.application-care-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.technology-delivery-grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.technology-delivery-grid .button {
  margin-top: 20px;
}

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

.technology-orbit span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.technology-orbit span:nth-child(2n) {
  color: var(--lavender);
}

.technology-orbit span:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-5px);
}

.product-process-section {
  background: #f4f8f7;
}

.product-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}

.product-process-grid li {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 26px;
  outline: 0;
  background: var(--white);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-process-grid li::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.product-process-grid li:hover,
.product-process-grid li:focus-visible,
.product-process-grid li.is-active {
  color: var(--white);
  background: #102f38;
  transform: translateY(-5px);
}

.product-process-grid li:hover::after,
.product-process-grid li:focus-visible::after,
.product-process-grid li.is-active::after {
  transform: scaleX(1);
}

.product-process-grid li > span {
  margin-bottom: 38px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-process-grid li p {
  color: var(--muted);
}

.product-process-grid li:hover p,
.product-process-grid li:focus-visible p,
.product-process-grid li.is-active p {
  color: rgba(255, 255, 255, 0.76);
}

.product-process-grid li a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
}

.product-process-grid li:hover a,
.product-process-grid li:focus-visible a,
.product-process-grid li.is-active a {
  color: #6edbc4;
}

.mobile-industries-section {
  color: var(--white);
  background: #11162d;
}

.mobile-industries-section .section-heading > div > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.industry-grid article {
  min-height: 410px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.industry-grid article:hover {
  border-color: rgba(110, 219, 196, 0.5);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-7px);
}

.industry-code {
  display: inline-grid;
  min-width: 52px;
  min-height: 40px;
  margin-bottom: 42px;
  place-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: #071d32;
  background: #6edbc4;
  font-size: 0.72rem;
  font-weight: 900;
}

.industry-grid article > p,
.industry-grid li {
  color: rgba(255, 255, 255, 0.72);
}

.industry-grid ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.delivery-markets-section {
  background: var(--white);
}

.delivery-markets-grid > div:last-child > p,
.application-care-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.market-list span {
  padding: 10px 14px;
  border: 1px solid #c9d9d5;
  border-radius: 6px;
  color: var(--teal);
  background: #eef7f5;
  font-weight: 900;
}

.application-care-section {
  background: var(--white);
}

.application-care-grid dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line);
}

.application-care-grid dl div {
  min-height: 140px;
  padding: 22px;
  background: #f5f9f8;
}

.application-care-grid dt {
  color: var(--blue);
  font-weight: 900;
}

.application-care-grid dd {
  margin: 10px 0 0;
  color: var(--muted);
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 480ms ease, transform 480ms ease;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(500px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(90deg, rgba(3, 10, 27, 0.96), rgba(5, 24, 59, 0.92)),
    url("../assets/brand/kayen-brand-banner.0e71833bd7c5.jpg") center / cover;
}

.footer p {
  max-width: 760px;
  margin: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
}

.footer-main > p:not(.footer-brand) {
  grid-column: 2;
}

.footer-logo {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(0, 71, 171, 0.26);
}

.footer-brand {
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-items: start;
  justify-content: start;
  justify-self: end;
  min-width: 220px;
}

.footer-links a,
.footer-links span {
  display: block;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 24px;
}

.footer-links {
  justify-self: stretch;
  min-width: 0;
}

.footer-links strong {
  color: var(--kayen-white);
}

.footer-business-details {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 16px;
  border-top: 1px solid rgba(247, 250, 255, 0.16);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 66px 14px auto;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .nav a.is-active::after {
    inset: auto auto -3px 0;
    width: 42px;
  }

  .language-control {
    justify-content: space-between;
  }

  .service-grid,
  .feature-grid,
  .pricing-grid,
  .portfolio-grid,
  .project-grid,
  .blog-grid,
  .ip-card-grid,
  .domain-achievement-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .team-experience-strip,
  .team-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .control-workspace-grid {
    grid-template-columns: 1fr;
  }

  .control-management-grid a:nth-child(2) {
    border-right: 0;
  }

  .control-management-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .offer-step {
    grid-template-columns: 54px 1fr;
  }

  .offer-items,
  .offer-step .button {
    grid-column: 2;
  }

  .service-hero-grid,
  .ip-credentials-grid,
    .ip-faq-grid,
    .crypto-preview-grid,
    .crypto-detail-grid,
    .article-hero-grid,
    .service-mark-grid,
    .contact-map-card,
    .dashboard-grid,
    .invoice-header,
    .invoice-meta,
    .invoice-calculator-grid,
    .ecosystem-shell,
    .service-preview-panel,
    .intro-grid,
    .split-grid,
    .launch-grid,
    .contact-grid,
    .section-heading,
    .technology-delivery-grid,
    .delivery-markets-grid,
    .application-care-grid,
  .note {
    grid-template-columns: 1fr;
  }

  .pricing-grid article.featured {
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 66px 14px auto;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .nav a.is-active::after {
    inset: auto auto -3px 0;
    width: 42px;
  }

  .language-control {
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 28px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-content {
    align-self: auto;
    margin: 0 auto;
    padding-top: 0;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 680px);
  }

  .hero-slide h2 {
    font-size: 2.45rem;
  }

  .hero-capability-panel {
    order: 3;
  }

  .hero-stage .hero-stats {
    order: 4;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

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

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

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

  .map-embed,
  .map-embed iframe {
    min-height: 300px;
  }

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

  .policy-nav {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

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

  .policy-facts {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .footer-links {
    justify-self: stretch;
    min-width: 0;
  }

  .footer-logo {
    width: 50px;
    height: 50px;
  }

  .service-grid,
  .feature-grid,
  .pricing-grid,
  .pricing-grid.narrow,
  .portfolio-grid,
  .project-grid,
  .blog-grid,
  .ip-card-grid,
  .domain-achievement-grid,
  .industry-grid,
  .product-process-grid,
  .commitment-grid,
  .technology-orbit {
    grid-template-columns: 1fr;
  }

  .commitment-grid {
    border: 0;
    gap: 12px;
  }

  .commitment-grid article {
    min-height: 0;
    border: 1px solid var(--line);
  }

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

  .industry-grid article,
  .product-process-grid li {
    min-height: 0;
  }

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

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

  .team-experience-strip div {
    padding: 16px;
  }

  .team-method-grid {
    grid-template-columns: 1fr;
  }

  .control-center-heading {
    display: grid;
    align-items: start;
  }

  .control-center-actions,
  .control-center-actions .button {
    width: 100%;
  }

  .control-metric-grid,
  .control-management-grid {
    grid-template-columns: 1fr;
  }

  .control-management-grid a,
  .control-management-grid a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .control-management-grid a:last-child {
    border-bottom: 0;
  }

  .team-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 14px;
  }

  .team-photo-placeholder {
    min-height: 148px;
  }

  .team-photo {
    height: 148px;
  }

  .offer-step {
    grid-template-columns: 1fr;
  }

  .offer-items,
  .offer-step .button {
    grid-column: auto;
  }

  .offer-items {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    flex: 1 1 130px;
    min-width: 0;
  }

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

  .service-mark-grid {
    padding: 20px;
  }

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

  .dashboard-form > label:nth-of-type(3),
  .dashboard-form > label:nth-of-type(12),
  .dashboard-form > label:nth-of-type(13),
  .dashboard-form .button {
    grid-column: auto;
  }

  .invoice-calculator-heading,
  .invoice-calculator-result {
    grid-template-columns: 1fr;
  }

  .invoice-calculator-heading {
    display: grid;
  }

  .invoice-calculator-heading > strong {
    width: 100%;
    text-align: center;
  }

  .invoice-list article,
  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
  }

  .section,
  .band {
    padding: 56px 0;
  }

  .page-hero {
    padding: 128px 0 58px;
  }
}

/* Interactive home-page systems inspired by modern agency patterns. */
.technology-marquee-section {
  overflow: hidden;
  padding-block: clamp(78px, 9vw, 126px);
  background:
    linear-gradient(90deg, rgba(11, 107, 104, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(11, 107, 104, 0.08) 1px, transparent 1px),
    #edf4f1;
  background-size: 72px 72px;
}

.technology-marquee-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr) 48px;
  align-items: end;
  gap: clamp(28px, 5vw, 74px);
  margin-bottom: 52px;
}

.technology-marquee-heading h2,
.technology-marquee-heading p {
  margin-bottom: 0;
}

.technology-marquee-heading > p {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.04rem;
}

.marquee-toggle,
.carousel-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(19, 32, 31, 0.18);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.marquee-toggle:hover,
.carousel-controls button:hover {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}

.carousel-controls button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
  transform: none;
}

.technology-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.technology-logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: kayen-tech-marquee var(--marquee-duration, 32s) linear infinite;
  will-change: transform;
}

.technology-marquee.reverse .technology-logo-track {
  animation-direction: reverse;
}

.technology-marquee:hover .technology-logo-track,
.technology-marquee-section.is-paused .technology-logo-track {
  animation-play-state: paused;
}

.technology-logo-track > .technology-logo {
  display: grid;
  grid-template-columns: 48px auto;
  align-items: center;
  gap: 14px;
  width: 188px;
  min-height: 84px;
  padding: 15px 18px;
  border: 1px solid rgba(19, 32, 31, 0.1);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(19, 32, 31, 0.08);
}

.technology-logo-track > .technology-logo img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.technology-logo-track > .technology-logo strong {
  overflow-wrap: anywhere;
  font-size: 0.94rem;
}

@keyframes kayen-tech-marquee {
  to {
    transform: translateX(calc(-100% / 3));
  }
}

.service-action-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: #10201f;
  box-shadow: 0 22px 50px rgba(19, 32, 31, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-grid .service-action-card:nth-child(3n + 1) {
  background: #10201f;
}

.service-grid .service-action-card:nth-child(3n + 2) {
  background: #14233b;
}

.service-grid .service-action-card:nth-child(3n) {
  background: #28221d;
}

.service-action-card:hover,
.service-action-card:focus-within {
  border-color: rgba(84, 210, 191, 0.68);
  box-shadow: 0 30px 64px rgba(19, 32, 31, 0.22);
  transform: translateY(-5px);
}

.service-card-glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(420px circle at var(--pointer-x) var(--pointer-y), rgba(75, 224, 202, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 44%);
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.service-action-card:hover .service-card-glow {
  opacity: 1;
}

.service-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 34px;
}

.service-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #8ee7d5;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-grid .service-action-card > p {
  color: rgba(255, 255, 255, 0.66);
}

.service-card-number {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
}

.service-action-card h3 {
  color: var(--white);
}

.service-action-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #78dfcc;
}

.service-action-card .text-link span {
  transition: transform 180ms ease;
}

.service-action-card:hover .text-link span {
  transform: translate(3px, -3px);
}

.project-carousel-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.project-carousel-heading > div:first-child {
  max-width: 820px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.carousel-controls p {
  display: flex;
  min-width: 72px;
  justify-content: center;
  gap: 5px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.carousel-controls p span:first-child {
  color: var(--white);
}

.portfolio-showcase .carousel-controls button {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.project-carousel-viewport {
  overflow-x: auto;
  padding: 8px 0 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.project-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.project-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  padding-right: clamp(140px, 24vw, 420px);
}

.project-carousel-track .project-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  flex: 0 0 min(900px, calc(100vw - 120px));
  min-height: 440px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}

.project-carousel-track .project-media {
  z-index: 0;
  width: 100%;
  min-width: 0;
  min-height: 440px;
  aspect-ratio: auto;
}

.project-carousel-track .project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-carousel-track .project-pizza-vitti .project-media img,
.project-carousel-track .project-a-green-future .project-media img {
  object-fit: contain;
  object-position: center;
}

.project-carousel-track .project-plum-village .project-media img {
  object-fit: contain;
  object-position: center;
  background: #151a13;
}

.project-carousel-track .project-card:hover .project-media img {
  transform: scale(1.035);
}

.project-carousel-track .project-body {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  background: var(--white);
  overflow-wrap: anywhere;
}

.project-carousel-track .project-body h3 {
  color: var(--ink);
}

.project-carousel-track .project-body > p:not(.price-label):not(.project-services) {
  color: var(--muted);
}

.project-carousel-track .project-body .text-link {
  margin-top: auto;
  padding-top: 26px;
}

.product-process-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 10vw, 138px);
  background: var(--white);
}

.product-process-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(430px, 43vw, 760px);
  background: #f0eef8;
}

.product-process-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 6vw, 88px);
}

.product-process-intro {
  align-self: start;
  position: sticky;
  top: 118px;
  min-width: 0;
  padding-right: clamp(20px, 3vw, 52px);
}

.product-process-intro .two-tone-title {
  width: 100%;
  max-width: 500px;
  font-size: clamp(2.25rem, 2.75vw, 3.15rem);
  text-wrap: balance;
}

.product-process-intro .two-tone-title span,
.product-process-intro .two-tone-title em {
  display: block;
}

.product-process-intro > p:not(.eyebrow):not(.process-progress-label) {
  max-width: 430px;
  color: var(--muted);
}

.process-progress {
  width: min(100%, 360px);
  height: 4px;
  margin-top: 42px;
  overflow: hidden;
  background: rgba(19, 32, 31, 0.13);
}

.process-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transition: width 360ms ease;
}

.process-progress-label {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.process-progress-label strong {
  color: var(--teal);
  font-size: 1.2rem;
}

.product-process-intro .section-action {
  justify-content: flex-start;
  margin-top: 34px;
}

.product-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.product-process-grid li {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 128px;
  align-content: center;
  padding: 28px 28px 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: padding 220ms ease, background 220ms ease;
}

.product-process-grid li::after {
  inset: auto 0 -1px 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  opacity: 1;
  transform: none;
  transition: width 260ms ease;
}

.product-process-grid li:hover,
.product-process-grid li:focus-visible,
.product-process-grid li.is-active {
  padding-left: 22px;
  color: var(--ink);
  background: #f6f4fb;
  transform: none;
}

.product-process-grid li:hover p,
.product-process-grid li:focus-visible p,
.product-process-grid li.is-active p {
  color: var(--muted);
}

.product-process-grid li:hover a,
.product-process-grid li:focus-visible a,
.product-process-grid li.is-active a {
  color: var(--teal);
}

.product-process-grid li:hover::after,
.product-process-grid li:focus-visible::after,
.product-process-grid li.is-active::after {
  width: 100%;
}

.product-process-grid li > span {
  grid-row: 1 / span 3;
  color: var(--teal);
  font-size: 0.82rem;
}

.product-process-grid li h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.8vw, 1.46rem);
}

.product-process-grid li p,
.product-process-grid li a {
  grid-column: 2;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 260ms ease, margin 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.product-process-grid li:hover p,
.product-process-grid li:focus-visible p,
.product-process-grid li.is-active p {
  max-height: 130px;
  margin-top: 12px;
  opacity: 1;
  transform: none;
}

.product-process-grid li:hover a,
.product-process-grid li:focus-visible a,
.product-process-grid li.is-active a {
  max-height: 40px;
  margin-top: 16px;
  opacity: 1;
  transform: none;
}

.agency-faq-section {
  padding-block: clamp(82px, 10vw, 140px);
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(36, 87, 214, 0.13), transparent 42%),
    #0e1328;
}

.agency-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 9vw, 132px);
}

.agency-faq-intro {
  align-self: start;
  position: sticky;
  top: 118px;
}

.agency-faq-intro .two-tone-title span {
  color: var(--white);
}

.agency-faq-intro .two-tone-title em {
  color: var(--lavender);
}

.agency-faq-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.agency-faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.agency-faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  padding: 24px 0;
  color: var(--white);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.agency-faq-list summary::-webkit-details-marker {
  display: none;
}

.agency-faq-list summary span:last-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--lavender);
  transition: transform 220ms ease, background 220ms ease;
}

.agency-faq-list details[open] summary span:last-child {
  background: rgba(200, 168, 255, 0.12);
  transform: rotate(45deg);
}

.agency-faq-list details p {
  max-width: 760px;
  margin: -4px 54px 28px 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px) {
  .product-process-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-process-section::before {
    width: 100%;
    height: 440px;
  }

  .product-process-intro {
    position: static;
    max-width: 760px;
    padding-right: 0;
  }

  .product-process-intro .two-tone-title {
    max-width: 620px;
  }

  .project-carousel-track .project-card {
    flex-basis: min(760px, 80vw);
  }
}

@media (max-width: 900px) {
  .technology-marquee-heading,
  .product-process-layout,
  .agency-faq-layout {
    grid-template-columns: 1fr;
  }

  .technology-marquee-heading {
    align-items: start;
  }

  .technology-marquee-heading .marquee-toggle {
    position: absolute;
    right: clamp(18px, 4vw, 56px);
  }

  .product-process-section::before {
    width: 100%;
    height: 36%;
  }

  .product-process-intro,
  .agency-faq-intro {
    position: static;
  }

  .project-carousel-track .project-card {
    grid-template-columns: 1fr;
    flex-basis: min(620px, 82vw);
  }

  .project-carousel-track .project-media {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .contact-dock {
    right: 12px;
    bottom: 84px;
    gap: 9px;
  }

  .contact-action {
    width: 46px;
    height: 46px;
    box-shadow: 0 10px 22px rgba(7, 30, 48, 0.2), 0 0 0 6px rgba(11, 107, 104, 0.07);
  }

  .contact-action::after {
    display: none;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-toggle {
    grid-template-columns: 42px;
    min-width: 0;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 5px;
    border-radius: 50%;
  }

  .chat-toggle-copy {
    display: none;
  }

  .chat-toggle-icon {
    border-radius: 50%;
  }

  .chat-panel {
    position: fixed;
    inset: 10px;
    width: auto;
    height: calc(100dvh - 20px);
    max-height: none;
  }

  .chat-view {
    min-height: 100%;
    padding: 18px;
  }

  .chat-consent-card {
    padding: 22px;
  }

  .chat-consent-actions {
    grid-template-columns: 1fr;
  }

  .chat-welcome-view {
    padding-top: 34px;
  }

  .chat-new-conversation {
    min-height: 104px;
    margin-top: 28px;
    padding: 18px;
  }

  .chat-profile-view {
    padding-top: 10px;
  }

  .chat-profile-form {
    padding: 17px;
  }

  .chat-conversation-view {
    grid-template-rows: minmax(220px, 1fr) auto auto;
    padding: 0;
  }

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

  .technology-marquee-heading {
    padding-right: 58px;
  }

  .technology-logo-track > .technology-logo {
    grid-template-columns: 38px auto;
    width: 158px;
    min-height: 72px;
    padding: 12px 14px;
  }

  .technology-logo-track > .technology-logo img {
    width: 38px;
    height: 38px;
  }

  .project-carousel-heading {
    display: grid;
    gap: 28px;
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .project-carousel-track {
    gap: 14px;
    padding-right: 13vw;
  }

  .project-carousel-track .project-card {
    flex-basis: 87vw;
    min-height: 0;
  }

  .project-carousel-track .project-media {
    min-height: 250px;
  }

  .product-process-grid li,
  .product-process-grid li:hover,
  .product-process-grid li:focus-visible,
  .product-process-grid li.is-active {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 24px 12px 24px 0;
    background: transparent;
  }

  .product-process-grid li p,
  .product-process-grid li a {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .product-process-grid li p {
    margin-top: 10px;
  }

  .product-process-grid li a {
    margin-top: 14px;
  }

  .agency-faq-list summary {
    min-height: 82px;
  }

  .agency-faq-list details p {
    margin-right: 0;
  }
}

/* Kayen identity: 65% Midnight Navy, 25% Soft White, 10% Kayen Blue. */
::selection {
  color: #ffffff;
  background: var(--brand-accent);
}

.site-header {
  color: var(--kayen-white);
  background: rgba(0, 12, 38, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.inner-page .site-header {
  color: var(--kayen-white);
  background: rgba(0, 12, 38, 0.97);
  box-shadow: 0 10px 32px rgba(0, 12, 38, 0.1);
}

.site-header.is-scrolled .language-control label,
.inner-page .language-control label {
  border-color: rgba(247, 250, 255, 0.24);
  color: var(--kayen-white);
  background: rgba(247, 250, 255, 0.08);
}

.nav,
.button,
.text-link,
button {
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-weight: 800;
}

h2,
h3 {
  font-weight: 700;
}

.brand-mark,
.hero {
  background: var(--brand-dark);
}

.brand-mark,
.footer-logo {
  box-shadow: 0 14px 34px rgba(13, 110, 253, 0.22);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 12, 38, 0.97) 0%, rgba(0, 12, 38, 0.87) 42%, rgba(0, 12, 38, 0.45) 100%);
}

.hero-image {
  filter: grayscale(1);
  opacity: 0.52;
}

.page-hero,
.service-hero,
.team-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 12, 38, 0.97), rgba(0, 12, 38, 0.72)),
    url("../assets/brand/kayen-digital-wave.d860d5fa2de2.webp") center / cover;
  background-color: var(--brand-dark);
  background-blend-mode: normal, luminosity;
}

.logo-ecosystem-section,
.footer {
  background:
    linear-gradient(90deg, rgba(0, 12, 38, 0.97), rgba(0, 12, 38, 0.9)),
    url("../assets/brand/kayen-brand-banner.0e71833bd7c5.jpg") center / cover;
}

.photo-section::after {
  background: linear-gradient(90deg, rgba(0, 12, 38, 0.94), rgba(0, 12, 38, 0.7));
}

.split-section,
.launch-section,
.crypto-preview,
.note,
.technology-delivery-section,
.mobile-industries-section,
.agency-faq-section {
  color: var(--white);
  background: var(--brand-dark);
}

.service-mark-section,
.pricing-section,
.product-process-section,
.technology-marquee-section,
.team-section,
.application-care-section,
.delivery-markets-section {
  background: var(--paper);
}

.technology-marquee-section {
  background-image:
    linear-gradient(90deg, rgba(13, 110, 253, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(13, 110, 253, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.service-explorer-section,
.portfolio-showcase {
  background: var(--paper);
}

.button.primary,
.service-explorer-toolbar button.is-active,
.offer-number,
.chat-primary-button,
.chat-message.user,
.chat-quick button,
.chat-form button {
  color: #ffffff;
  border-color: var(--brand-accent);
  background: var(--brand-accent);
}

.button.primary {
  box-shadow: 0 14px 32px rgba(13, 110, 253, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible,
.chat-primary-button:hover,
.chat-primary-button:focus-visible {
  background: color-mix(in srgb, var(--brand-accent), var(--brand-dark) 24%);
}

.mark-cloud span,
.mark-cloud span:nth-child(3n + 2),
.mark-cloud span:nth-child(3n) {
  border-color: rgba(13, 110, 253, 0.28);
  color: color-mix(in srgb, var(--brand-accent), var(--brand-dark) 34%);
  background: rgba(13, 110, 253, 0.09);
}

.icon,
.service-card-icon {
  color: var(--brand-accent);
  background: rgba(13, 110, 253, 0.1);
}

.icon.large,
.offer-number,
.process-progress span,
.product-process-grid li::after {
  background: var(--brand-accent);
}

.commitment-grid article:hover,
.product-process-grid li:hover,
.product-process-grid li:focus-visible,
.product-process-grid li.is-active,
.application-care-grid dl,
.delivery-market-list li {
  background: rgba(13, 110, 253, 0.07);
}

.product-process-section::before {
  background: rgba(13, 110, 253, 0.1);
}

.process-progress {
  background: rgba(0, 12, 38, 0.13);
}

.service-action-card,
.service-grid .service-action-card:nth-child(3n + 1),
.service-grid .service-action-card:nth-child(3n + 2),
.service-grid .service-action-card:nth-child(3n) {
  background: var(--brand-dark);
}

.service-action-card:hover,
.service-action-card:focus-within {
  border-color: rgba(13, 110, 253, 0.72);
  box-shadow: 0 30px 64px rgba(0, 12, 38, 0.24);
}

.service-card-glow {
  background: rgba(13, 110, 253, 0.12);
}

.service-action-card .text-link,
.technology-orbit span:nth-child(2n),
.agency-faq-intro .two-tone-title em,
.agency-faq-list summary span:last-child {
  color: var(--brand-accent);
}

.technology-orbit span:hover {
  color: var(--brand-dark);
  background: var(--white);
}

.industry-code {
  color: #ffffff;
  border-color: var(--brand-accent);
  background: var(--brand-accent);
}

.note {
  border-color: rgba(13, 110, 253, 0.34);
}

.note p {
  color: var(--kayen-muted);
}

.project-media,
.blog-media,
.project-pizza-vitti .project-media,
.project-plum-village .project-media,
.project-carousel-track .project-plum-village .project-media img {
  background: var(--brand-dark);
}

.team-photo-placeholder,
.team-card:nth-child(2n) .team-photo-placeholder,
.team-card:nth-child(3n) .team-photo-placeholder {
  color: var(--white);
  background: var(--brand-dark);
}

.team-card:nth-child(2n) .team-photo-placeholder {
  background: var(--brand-accent);
}

.contact-action-phone,
.contact-action-email {
  background: var(--brand-dark);
}

.contact-action-whatsapp {
  background: var(--brand-accent);
}

.contact-action {
  box-shadow: 0 12px 28px rgba(0, 12, 38, 0.2), 0 0 0 8px rgba(13, 110, 253, 0.08);
}

.chat-toggle,
.chat-panel,
.chat-header {
  background: var(--brand-dark);
}

.chat-toggle-icon {
  color: var(--brand-dark);
  background: var(--brand-accent);
}

.chat-toggle-copy i,
.chat-status i {
  background: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.16);
}

.chat-body {
  background: color-mix(in srgb, var(--brand-dark), var(--white) 7%);
}

.chat-powered strong,
.chat-kicker,
.text-link,
.two-tone-title em,
.eyebrow {
  color: color-mix(in srgb, var(--brand-accent), var(--brand-dark) 18%);
}

.on-dark .eyebrow,
.photo-section .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow,
.split-section .eyebrow,
.launch-section .eyebrow,
.crypto-preview .eyebrow,
.technology-delivery-section .eyebrow,
.mobile-industries-section .eyebrow,
.agency-faq-section .eyebrow {
  color: var(--brand-accent);
}

.hero-copy,
.page-hero p,
.service-aside p,
.split-section p,
.launch-section p,
.crypto-preview p,
.technology-delivery-section p,
.mobile-industries-section p,
.agency-faq-section p,
.footer p,
.footer span {
  color: var(--kayen-muted);
}

@media (max-width: 1100px) {
  .site-header {
    color: var(--kayen-white);
    background: rgba(0, 12, 38, 0.97);
  }

  .nav {
    color: var(--kayen-white);
    border-color: rgba(247, 250, 255, 0.18);
    background: var(--kayen-navy);
  }

  .language-control label,
  .site-header.is-scrolled .language-control label,
  .inner-page .language-control label {
    border-color: rgba(247, 250, 255, 0.24);
    color: var(--kayen-white);
    background: rgba(247, 250, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .contact-action {
    box-shadow: 0 10px 22px rgba(0, 12, 38, 0.2), 0 0 0 6px rgba(13, 110, 253, 0.08);
  }
}

/* Content-management layer: all values can be controlled from Django admin. */
.cms-preview-bar {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  padding: 8px clamp(18px, 4vw, 56px);
  color: var(--kayen-white);
  background: var(--kayen-blue);
  box-shadow: 0 8px 24px rgba(0, 12, 38, 0.2);
}

.cms-preview-bar a {
  margin-inline-start: auto;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cms-preview-bar a + a {
  margin-inline-start: 0;
}

.cms-preview-mode .site-header {
  inset-block-start: 44px;
}

.cms-preview-section-label {
  position: relative;
  z-index: 2;
  padding: 8px clamp(18px, 4vw, 56px);
  color: var(--kayen-white);
  background: var(--kayen-blue);
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.button {
  font-family: var(--kayen-heading-font), var(--kayen-body-font), "Noto Sans Arabic", "Noto Sans SC", Arial, sans-serif;
}

body[data-cms-page] .page-hero {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--kayen-navy), transparent 3%), color-mix(in srgb, var(--kayen-navy), transparent 26%)),
    var(--cms-page-banner, url("../assets/brand/kayen-digital-wave.d860d5fa2de2.webp")) center / cover;
}

/* Conversion and local-SEO redesign. Scoped to the new public experience. */
:root {
  --conversion-dark: #0f172a;
  --conversion-blue: #2563eb;
  --conversion-accent: #0f766e;
  --conversion-bg: #ffffff;
  --conversion-alt: #f8fafc;
  --conversion-text: #334155;
  --conversion-muted: #64748b;
  --conversion-border: #e2e8f0;
  --conversion-success: #15803d;
  --conversion-error: #b91c1c;
  --conversion-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

html {
  overflow-x: hidden;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  overflow-x: clip;
  color: var(--conversion-text);
  background: var(--conversion-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Arabic", Arial, sans-serif;
  font-size: 1rem;
}

html[lang="ar"] body {
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.button {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] .brand,
html[lang="ar"] .button {
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

img {
  max-width: 100%;
}

.conversion-page,
.conversion-home {
  --ink: var(--conversion-dark);
  --muted: var(--conversion-muted);
  --line: var(--conversion-border);
  --paper: var(--conversion-bg);
  --white: #ffffff;
  --teal: var(--conversion-accent);
  --blue: var(--conversion-blue);
  color: var(--conversion-text);
  background: var(--conversion-bg);
}

.conversion-page main,
.conversion-home main {
  overflow: clip;
}

.conversion-page p,
.conversion-home p,
.conversion-page li,
.conversion-home li {
  line-height: 1.7;
}

.conversion-page h1,
.conversion-page h2,
.conversion-page h3,
.conversion-home h1,
.conversion-home h2,
.conversion-home h3 {
  max-width: 100%;
  color: var(--conversion-dark);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.conversion-page .chat-welcome-view h2,
.conversion-page .chat-profile-view h2,
.conversion-home .chat-welcome-view h2,
.conversion-home .chat-profile-view h2 {
  color: #ffffff;
}

.conversion-page h1,
.conversion-home h1 {
  font-size: 3.5rem;
  line-height: 1.08;
}

.conversion-page h2,
.conversion-home h2 {
  font-size: 2.35rem;
  line-height: 1.18;
}

.conversion-page h3,
.conversion-home h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.conversion-page .eyebrow,
.conversion-home .eyebrow {
  margin: 0 0 12px;
  color: var(--conversion-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
}

.site-header {
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr);
  gap: 18px;
  min-height: 76px;
  padding-block: 10px;
  background: rgba(15, 23, 42, 0.96);
}

.site-header.is-scrolled,
.inner-page .site-header,
.conversion-page .site-header {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.16);
}

.brand {
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
}

.brand strong {
  color: #ffffff;
  font-size: 1rem;
}

.brand small {
  max-width: 180px;
  color: #cbd5e1;
  font-size: 0.66rem;
  line-height: 1.35;
}

.nav {
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  color: #ffffff;
  font-size: 0.82rem;
}

.nav > a,
.nav-dropdown > summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  gap: 6px;
  list-style: none;
  font-weight: 750;
  opacity: 0.88;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-inline-end: 1.5px solid currentColor;
  border-block-end: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 4;
  inset-block-start: calc(100% + 8px);
  inset-inline-start: 50%;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--conversion-border);
  border-radius: 8px;
  color: var(--conversion-dark);
  background: #ffffff;
  box-shadow: var(--conversion-shadow);
  transform: translateX(-50%);
}

[dir="rtl"] .nav-dropdown-menu {
  transform: translateX(50%);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  line-height: 1.35;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--conversion-blue);
  background: var(--conversion-alt);
  transform: none;
}

.language-control label,
.site-header.is-scrolled .language-control label,
.inner-page .language-control label {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button {
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  color: #ffffff;
  border-color: var(--conversion-blue);
  background: var(--conversion-blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(15, 23, 42, 0.18);
}

.button.secondary.dark-text {
  color: var(--conversion-dark);
  border-color: var(--conversion-border);
  background: #ffffff;
  box-shadow: none;
}

.button.secondary.dark-text:hover,
.button.secondary.dark-text:focus-visible {
  color: var(--conversion-blue);
  border-color: var(--conversion-blue);
  transform: translateY(-2px);
}

.text-link {
  color: var(--conversion-blue);
  font-weight: 700;
}

.conversion-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(820px, calc(100svh - 24px));
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--conversion-dark);
}

.conversion-hero-image,
.conversion-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.conversion-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 0.82;
  transform: scale(1.025);
  will-change: transform;
}

.conversion-hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.9) 45%, rgba(15, 23, 42, 0.38) 100%);
}

.conversion-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  padding-block: 148px 78px;
}

.conversion-hero-intro {
  max-width: 720px;
}

.has-js [data-hero-item] {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-enter 600ms both cubic-bezier(.2,.75,.25,1);
}

.has-js [data-hero-item]:nth-child(2) { animation-delay: 90ms; }
.has-js [data-hero-item]:nth-child(3) { animation-delay: 180ms; }
.has-js [data-hero-item]:nth-child(4) { animation-delay: 270ms; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.conversion-home .conversion-hero h1,
.conversion-home .conversion-hero h2,
.conversion-home .conversion-hero h3 {
  color: #ffffff;
}

.conversion-home .conversion-hero .eyebrow {
  color: #93c5fd;
}

.conversion-hero-intro > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #e2e8f0;
  font-size: 1.12rem;
}

.conversion-hero .hero-actions {
  margin-top: 30px;
}

.conversion-hero .text-link {
  align-self: center;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.trust-strip {
  color: var(--conversion-dark);
  background: #ffffff;
  border-block-end: 1px solid var(--conversion-border);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip-grid p,
.trust-strip-grid span {
  position: relative;
  margin: 0;
  padding: 22px 22px 22px 32px;
  color: var(--conversion-text);
  font-size: 0.92rem;
  font-weight: 650;
}

.trust-strip-grid p::before,
.trust-strip-grid span::before {
  content: "";
  position: absolute;
  inset-inline-start: 10px;
  inset-block-start: 30px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--conversion-accent);
}

.conversion-section {
  padding: 92px 0;
  background: #ffffff;
}

.conversion-section.alternate-section {
  background: var(--conversion-alt);
}

.conversion-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.conversion-heading h2,
.conversion-heading p {
  margin-inline: 0;
}

.conversion-heading h2 {
  margin-block: 0;
}

.conversion-heading > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--conversion-muted);
}

.conversion-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.main-service-grid,
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.main-service-card {
  cursor: pointer;
}

.main-service-card.is-active {
  border-color: var(--conversion-blue);
  box-shadow: var(--conversion-shadow);
  transform: translateY(-4px);
}

.service-deliverables {
  display: grid;
  gap: 8px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--conversion-text);
  list-style: none;
  opacity: 0;
  transition: max-height 240ms ease, margin 240ms ease, opacity 180ms ease;
}

.main-service-card.is-active .service-deliverables,
.main-service-card:focus-within .service-deliverables {
  max-height: 180px;
  margin: 12px 0 0;
  opacity: 1;
}

.service-deliverables li::before {
  content: "✓";
  margin-inline-end: 9px;
  color: var(--conversion-accent);
  font-weight: 800;
}

.secondary-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.secondary-solutions span,
.portfolio-filters button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--conversion-border);
  border-radius: 999px;
  color: var(--conversion-text);
  background: var(--conversion-alt);
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -16px 0 28px;
}

.portfolio-filters button {
  cursor: pointer;
}

.portfolio-filters button.is-active {
  border-color: var(--conversion-blue);
  color: #fff;
  background: var(--conversion-blue);
}

[data-project-card][hidden] {
  display: none;
}

[data-project-card] {
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project-navigation,
.marquee-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.project-navigation button,
.marquee-navigation button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--conversion-border);
  border-radius: 50%;
  color: var(--conversion-dark);
  background: #fff;
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
}

.technology-marquee {
  scroll-behavior: smooth;
}

.technology-marquee-section.is-interaction-paused .logo-track {
  animation-play-state: paused;
}

.project-facts {
  padding: 34px 0;
  color: #fff;
  background: var(--conversion-dark);
}

.project-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.16);
}

.project-facts p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 26px;
  background: var(--conversion-dark);
}

.project-facts strong {
  color: #93c5fd;
  font: 800 clamp(1.8rem, 4vw, 3rem)/1 "Manrope", sans-serif;
}

.project-facts span {
  color: #cbd5e1;
}

.contact-menu-panel {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 64px;
  display: grid;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--conversion-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--conversion-shadow);
}

.contact-menu-panel[hidden] {
  display: none;
}

.contact-menu-panel a {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--conversion-dark);
  font-weight: 700;
}

.contact-menu-panel a:hover,
.contact-menu-panel a:focus-visible {
  color: var(--conversion-blue);
  background: var(--conversion-alt);
}

.main-service-card,
.pricing-preview-card,
.testimonial-card,
.service-conversion-grid > article,
.feature-grid > article,
.support-mode-grid > article,
.restaurant-features > article,
.solution-list > article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--conversion-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.main-service-card:hover,
.pricing-preview-card:hover,
.service-conversion-grid > article:hover,
.feature-grid > article:hover,
.support-mode-grid > article:hover,
.restaurant-features > article:hover,
.solution-list > article:hover {
  border-color: #bfdbfe;
  box-shadow: var(--conversion-shadow);
  transform: translateY(-4px);
}

.service-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--conversion-accent);
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.main-service-card p,
.pricing-preview-card p,
.testimonial-card p {
  color: var(--conversion-muted);
}

.main-service-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.audience-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--conversion-border);
  background: var(--conversion-border);
}

.audience-grid article,
.why-grid li {
  min-width: 0;
  margin: 0;
  padding: 28px;
  background: #ffffff;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--conversion-muted);
}

.conversion-team-section {
  position: relative;
  overflow: hidden;
}

.conversion-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.conversion-team-section .team-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-color: var(--conversion-border);
  border-radius: 8px;
  box-shadow: none;
}

.conversion-team-section .team-card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--conversion-shadow);
  transform: translateY(-4px);
}

.conversion-team-section .team-photo,
.conversion-team-section .team-photo-placeholder {
  width: 100%;
  height: 270px;
  min-height: 270px;
  border-radius: 0;
}

.conversion-team-section .team-photo-placeholder {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.24), transparent 58%),
    var(--conversion-dark);
}

.conversion-team-section .team-photo-placeholder span {
  width: 72px;
  height: 72px;
  border-color: rgba(247, 250, 255, 0.46);
  font-size: 1.2rem;
}

.conversion-team-section .team-photo-placeholder small {
  max-width: none;
  color: #dbeafe;
  font-size: 0.78rem;
}

.conversion-team-section .team-profile {
  flex: 1;
  padding: 26px;
}

.conversion-team-section .team-profile h3 {
  margin: 8px 0 12px;
}

.conversion-team-section .team-profile > p:last-child {
  color: var(--conversion-muted);
  font-size: 0.94rem;
}

.conversion-team-section .team-role {
  color: var(--conversion-accent);
}

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

.case-study-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--conversion-border);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.case-study-card:hover,
.case-study-card:focus-within {
  border-color: #bfdbfe;
  box-shadow: var(--conversion-shadow);
  transform: translateY(-4px);
}

.case-study-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--conversion-dark);
}

.case-study-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.case-study-card:hover .case-study-media img {
  transform: scale(1.025);
}

.case-study-body {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.case-study-body > * {
  min-width: 0;
  margin-block: 0;
}

.case-study-body p {
  color: var(--conversion-muted);
}

.case-focus {
  display: grid;
  gap: 5px;
  padding-block: 12px;
  border-block: 1px solid var(--conversion-border);
}

.case-focus strong {
  color: var(--conversion-dark);
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-technologies span {
  padding: 6px 9px;
  border-radius: 5px;
  color: var(--conversion-accent);
  background: #ecfdf5;
  font-size: 0.78rem;
  font-weight: 700;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 112px;
  margin: 0;
}

.conversion-process,
.compact-process,
.secure-process {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.conversion-process li,
.compact-process li,
.secure-process li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-block-start: 1px solid var(--conversion-border);
}

.conversion-process li {
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  opacity: .68;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.conversion-process li.is-active {
  border-color: var(--conversion-blue);
  opacity: 1;
}

.conversion-process li > button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 0;
  border: 0;
  color: var(--conversion-dark);
  background: transparent;
  font: inherit;
  text-align: start;
  cursor: pointer;
}

.conversion-process li > button span {
  color: var(--conversion-accent);
  font-weight: 800;
}

.conversion-process li > div {
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
}

.conversion-process li:last-child,
.compact-process li:last-child,
.secure-process li:last-child {
  border-block-end: 1px solid var(--conversion-border);
}

.conversion-process li > span,
.compact-process li > span,
.secure-process li > span {
  color: var(--conversion-accent);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.conversion-process h3,
.compact-process h3,
.secure-process h3,
.conversion-process p,
.compact-process p,
.secure-process p {
  margin: 0;
}

.conversion-process p,
.compact-process p,
.secure-process p {
  margin-top: 8px;
  color: var(--conversion-muted);
}

.pricing-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-preview-card.featured {
  border-color: var(--conversion-blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.package-price {
  margin: 8px 0 14px;
  color: var(--conversion-dark) !important;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.pricing-preview-card ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 24px;
  padding-inline-start: 20px;
  color: var(--conversion-text);
}

.pricing-preview-card .button {
  margin-top: auto;
}

.pricing-note {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--conversion-muted);
  font-size: 0.92rem;
}

.why-section {
  color: #ffffff;
  background: var(--conversion-dark);
}

.conversion-home .why-section h2,
.conversion-home .why-section h3,
.conversion-home .why-section .eyebrow {
  color: #ffffff;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  list-style: none;
}

.why-grid li {
  position: relative;
  padding-inline-start: 54px;
  color: #e2e8f0;
  background: var(--conversion-dark);
  font-weight: 650;
}

.why-grid li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 28px;
  color: #5eead4;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  color: var(--conversion-dark);
  font-size: 1.05rem;
}

.testimonial-card figcaption {
  display: grid;
  margin-top: auto;
  color: var(--conversion-muted);
}

.case-study-callout .section-inner,
.final-conversion-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.case-study-callout h2,
.final-conversion-cta h2 {
  margin: 0;
}

.final-conversion-cta {
  padding: 74px 0;
  color: #ffffff;
  background: var(--conversion-dark);
}

.conversion-home .final-conversion-cta h2,
.conversion-home .final-conversion-cta .eyebrow {
  color: #ffffff;
}

.final-conversion-cta .hero-actions {
  flex: 0 0 auto;
  margin: 0;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 18px;
  color: var(--conversion-muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--conversion-blue);
}

.simple-page-hero,
.service-conversion-hero,
.case-detail-hero {
  padding: 58px 0 82px;
  border-block-end: 1px solid var(--conversion-border);
  background: var(--conversion-alt);
}

.simple-page-hero .section-inner,
.service-conversion-hero .section-inner {
  max-width: 1180px;
}

.simple-page-hero h1,
.service-conversion-hero h1,
.case-detail-hero h1 {
  max-width: 850px;
  margin-block: 0;
}

.simple-page-hero p:not(.eyebrow),
.service-conversion-hero p:not(.eyebrow),
.case-detail-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--conversion-muted);
  font-size: 1.08rem;
}

.service-conversion-hero .hero-actions {
  margin-top: 28px;
}

.service-conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.service-conversion-grid > * {
  min-width: 0;
}

.service-conversion-grid > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: contain;
}

.feature-grid,
.support-mode-grid,
.restaurant-features,
.solution-list,
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.two-column-copy,
.about-story,
.contact-conversion-layout,
.case-detail-hero-grid,
.case-narrative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.two-column-copy p,
.about-story p,
.rich-copy,
.case-narrative-grid p {
  max-width: 68ch;
  color: var(--conversion-muted);
}

.deliverable-list,
.why-grid,
.about-facts {
  list-style: none;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.deliverable-list li,
.about-facts > * {
  padding: 18px;
  border: 1px solid var(--conversion-border);
  border-radius: 7px;
  background: #ffffff;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--conversion-border);
  border-radius: 7px;
  background: #ffffff;
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--conversion-dark);
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--conversion-muted);
}

.support-privacy-notice {
  padding: 22px 24px;
  border-inline-start: 4px solid var(--conversion-accent);
  color: var(--conversion-dark);
  background: #ecfdf5;
}

.case-detail-hero-grid {
  align-items: center;
}

.case-detail-hero img,
.project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--conversion-border);
  border-radius: 8px;
  background: #ffffff;
}

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

.project-gallery figure {
  min-width: 0;
  margin: 0;
}

.project-gallery figcaption {
  padding-top: 8px;
  color: var(--conversion-muted);
  font-size: 0.86rem;
}

.primary-contact-choices,
.secondary-contact-choices {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.primary-contact-choices {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.secondary-contact-choices {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.primary-contact-choices a,
.secondary-contact-choices a {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid var(--conversion-border);
  border-radius: 7px;
  color: var(--conversion-dark);
  background: #ffffff;
  font-weight: 700;
}

.primary-contact-choices a {
  min-height: 80px;
  color: #ffffff;
  border-color: var(--conversion-blue);
  background: var(--conversion-blue);
}

.primary-contact-choices a:hover,
.primary-contact-choices a:focus-visible,
.secondary-contact-choices a:hover,
.secondary-contact-choices a:focus-visible {
  border-color: var(--conversion-blue);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.16);
  transform: translateY(-2px);
}

.contact-form-intro dl {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-form-intro dl div {
  padding-top: 14px;
  border-block-start: 1px solid var(--conversion-border);
}

.contact-form-intro dt {
  color: var(--conversion-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form-intro dd {
  margin: 4px 0 0;
  color: var(--conversion-dark);
}

.conversion-contact-form {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--conversion-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--conversion-shadow);
}

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

.conversion-contact-form label {
  min-width: 0;
  color: var(--conversion-dark);
}

.conversion-contact-form label span em {
  color: var(--conversion-muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
}

.conversion-contact-form input,
.conversion-contact-form select,
.conversion-contact-form textarea {
  border-color: #cbd5e1;
  color: var(--conversion-dark);
  background: #ffffff;
}

.conversion-contact-form [aria-invalid="true"] {
  border-color: var(--conversion-error);
}

.conditional-fields {
  min-width: 0;
  margin: 6px 0;
  padding: 22px;
  border: 1px solid var(--conversion-border);
  border-radius: 7px;
}

.conditional-fields[hidden],
[data-contact-field][hidden] {
  display: none;
}

.conditional-fields legend {
  padding-inline: 8px;
  color: var(--conversion-dark);
  font-weight: 800;
}

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

.consent-field {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
}

.consent-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.consent-field .form-error {
  grid-column: 2;
}

.form-error,
.form-summary {
  color: var(--conversion-error);
}

.form-summary {
  padding: 16px;
  border: 1px solid #fecaca;
  border-radius: 7px;
  background: #fef2f2;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--conversion-muted);
  font-size: 0.88rem;
}

.article-toc {
  margin-bottom: 40px;
  padding: 22px;
  border: 1px solid var(--conversion-border);
  border-radius: 7px;
  background: var(--conversion-alt);
}

.article-toc h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.article-toc ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-inline-start: 22px;
}

.article-toc a {
  color: var(--conversion-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content > section {
  scroll-margin-top: 104px;
}

.article-cta {
  margin-top: 48px;
  padding: 28px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--conversion-dark);
}

.article-cta h2,
.article-cta p {
  color: #ffffff;
}

.secondary-service-note {
  margin-top: 48px;
  padding: 22px;
  border: 1px solid var(--conversion-border);
  border-radius: 7px;
  color: var(--conversion-muted);
  background: var(--conversion-alt);
}

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

.related-topic-links a {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--conversion-border);
  border-radius: 7px;
  color: var(--conversion-dark);
  background: var(--conversion-alt);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.related-topic-links a:hover,
.related-topic-links a:focus-visible {
  border-color: var(--conversion-blue);
  transform: translateY(-2px);
}

.related-topic-links strong {
  color: var(--conversion-dark);
  font-family: var(--conversion-heading-font);
  font-size: 1.08rem;
}

.related-topic-links span {
  color: var(--conversion-muted);
}

.footer {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  color: #cbd5e1;
  background: var(--conversion-dark);
}

.footer-link-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #93c5fd;
}

@media (max-width: 1180px) {
  .brand small {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 1100px) {
  .site-header,
  .site-header.is-scrolled,
  .inner-page .site-header,
  .conversion-page .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.98);
  }

  .menu-button {
    display: block;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .nav {
    position: absolute;
    inset: 70px 14px auto;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #ffffff;
    background: var(--conversion-dark);
    box-shadow: var(--conversion-shadow);
  }

  .nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .nav > a,
  .nav-dropdown > summary {
    width: 100%;
    min-height: 44px;
    padding-inline: 10px;
  }

  .nav-dropdown > summary {
    justify-content: space-between;
  }

  .nav-dropdown-menu,
  [dir="rtl"] .nav-dropdown-menu {
    position: static;
    width: 100%;
    padding: 4px 8px 8px 20px;
    border: 0;
    color: #e2e8f0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  [dir="rtl"] .nav-dropdown-menu {
    padding: 4px 20px 8px 8px;
  }

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

  .language-control {
    padding: 8px 10px;
  }

  .conversion-hero-content {
    grid-template-columns: minmax(0, 760px);
  }

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

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

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

@media (max-width: 820px) {
  .conversion-page h1,
  .conversion-home h1 {
    font-size: 2.65rem;
  }

  .conversion-page h2,
  .conversion-home h2 {
    font-size: 1.9rem;
  }

  .conversion-hero {
    min-height: 760px;
  }

  .conversion-hero-shade {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72));
  }

  .service-conversion-grid,
  .case-study-grid,
  .process-layout,
  .two-column-copy,
  .about-story,
  .contact-conversion-layout,
  .case-detail-hero-grid,
  .case-narrative-grid {
    grid-template-columns: 1fr;
  }

  .service-conversion-grid > img {
    width: min(100%, 620px);
  }

  .trust-strip-grid,
  .why-grid,
  .main-service-grid,
  .conversion-team-grid,
  .testimonial-grid,
  .feature-grid,
  .support-mode-grid,
  .restaurant-features,
  .solution-list,
  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-topic-links {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .conversion-heading-row,
  .case-study-callout .section-inner,
  .final-conversion-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 560px) {
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .conversion-page h1,
  .conversion-home h1 {
    font-size: 2.2rem;
  }

  .conversion-page h2,
  .conversion-home h2 {
    font-size: 1.7rem;
  }

  .conversion-page h3,
  .conversion-home h3 {
    font-size: 1.15rem;
  }

  .conversion-hero {
    min-height: 720px;
  }

  .conversion-hero-content {
    padding-block: 120px 56px;
  }

  .conversion-hero-intro > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .final-conversion-cta .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

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

  .trust-strip-grid,
  .main-service-grid,
  .pricing-preview-grid,
  .audience-grid,
  .why-grid,
  .conversion-team-grid,
  .testimonial-grid,
  .service-conversion-grid,
  .feature-grid,
  .support-mode-grid,
  .restaurant-features,
  .solution-list,
  .about-facts,
  .primary-contact-choices,
  .secondary-contact-choices,
  .form-grid,
  .deliverable-list,
  .footer-link-columns,
  .footer-business-details {
    grid-template-columns: 1fr;
  }

  .primary-service-grid {
    grid-template-columns: 1fr;
  }

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

  .case-study-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .case-study-grid .case-study-card {
    min-width: 88%;
    scroll-snap-align: start;
  }

  .conversion-process li {
    grid-template-columns: 1fr;
  }

  .conversion-process li:not(.is-active) > div {
    display: none;
  }

  .conversion-section {
    padding: 68px 0;
  }

  .simple-page-hero,
  .service-conversion-hero,
  .case-detail-hero {
    padding-block: 38px 62px;
  }

  .main-service-card,
  .pricing-preview-card,
  .testimonial-card,
  .service-conversion-grid > article,
  .feature-grid > article,
  .support-mode-grid > article,
  .restaurant-features > article,
  .solution-list > article {
    padding: 22px;
  }

  .conversion-contact-form {
    padding: 20px;
  }

  .conditional-fields {
    padding: 16px;
  }

  .contact-dock {
    inset-inline-end: 8px;
  }

  .chat-widget {
    inset-inline: 8px;
    width: auto;
  }

  .contact-page .contact-dock,
  .contact-page .chat-widget {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js [data-hero-item] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .conversion-hero-image {
    transform: none !important;
    will-change: auto;
  }

  .logo-track {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

[dir="rtl"] .conversion-heading-row,
[dir="rtl"] .case-study-callout .section-inner,
[dir="rtl"] .final-conversion-inner {
  text-align: right;
}

[dir="rtl"] .conversion-process li,
[dir="rtl"] .compact-process li,
[dir="rtl"] .secure-process li {
  grid-template-columns: minmax(0, 1fr) 52px;
}

[dir="rtl"] .conversion-process li > span,
[dir="rtl"] .compact-process li > span,
[dir="rtl"] .secure-process li > span {
  grid-column: 2;
  grid-row: 1;
}

[dir="rtl"] .conversion-process li > div,
[dir="rtl"] .compact-process li > div,
[dir="rtl"] .secure-process li > div {
  grid-column: 1;
  grid-row: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.cms-page-override {
  min-height: 60vh;
  padding-top: 84px;
}

.cms-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--kayen-white);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--kayen-navy), transparent 4%), color-mix(in srgb, var(--kayen-navy), transparent 12%)),
    var(--cms-section-background, none) center / cover,
    var(--kayen-navy);
}

.cms-theme-light {
  color: var(--kayen-navy);
  background: var(--kayen-white);
}

.cms-theme-blue {
  color: var(--kayen-white);
  background: var(--kayen-blue);
}

.cms-theme-transparent {
  color: inherit;
  background: transparent;
}

.cms-section h2,
.cms-section h3,
.cms-section p,
.cms-section .cms-rich-text {
  color: inherit;
}

.cms-section-heading,
.cms-content {
  max-width: 860px;
}

.cms-content {
  margin-inline: auto;
  text-align: center;
}

.cms-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.cms-split.cms-image-left .cms-section-copy {
  grid-column: 2;
}

.cms-split.cms-image-left .cms-section-image {
  grid-column: 1;
  grid-row: 1;
}

.cms-section-image {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.cms-section-html > :first-child {
  margin-top: 0;
}

.cms-section-html > :last-child {
  margin-bottom: 0;
}

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

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

@media (max-width: 720px) {
  .cms-preview-bar {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 0.78rem;
  }

  .cms-preview-bar a {
    margin-inline-start: 0;
  }

  .cms-preview-mode .site-header {
    inset-block-start: 72px;
  }

  .cms-split {
    grid-template-columns: 1fr;
  }

  .cms-split.cms-image-left .cms-section-copy,
  .cms-split.cms-image-left .cms-section-image {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-link-columns,
  .footer-business-details {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .footer,
  .invoice-toolbar,
  .chat-widget,
  .contact-dock,
  .messages {
    display: none !important;
  }

  body {
    background: var(--white);
  }

  .invoice-detail-section {
    padding: 0;
    background: var(--white);
  }

  .invoice-document {
    border: 0;
    box-shadow: none;
  }
}

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

  .technology-logo-track {
    animation: none !important;
  }

  .project-carousel-viewport {
    scroll-behavior: auto;
  }
}
