:root {
  --ink: #12263f;
  --ink-rgb: 18, 38, 63;
  --muted: #5e6d7e;
  --paper: #ffffff;
  --soft: #f6f9fc;
  --soft-strong: #d8dde6;
  --line: rgba(var(--ink-rgb), 0.14);
  --blue: #1f6fb2;
  --teal: #00b388;
  --aqua: #2de2e6;
  --green: #00b388;
  --amber: #d8891c;
  --coral: #d75c48;
  --button: #006f5e;
  --button-hover: #004f46;
  --button-accent: #0d5b73;
  --button-gradient: linear-gradient(135deg, #006f5e 0%, #0d5b73 100%);
  --button-gradient-hover: linear-gradient(135deg, #004f46 0%, #083d52 100%);
  --button-border: rgba(45, 226, 230, 0.28);
  --button-shadow: 0 14px 30px rgba(0, 75, 67, 0.28);
  --shadow: 0 22px 60px rgba(var(--ink-rgb), 0.12);
  --shadow-soft: 0 14px 34px rgba(var(--ink-rgb), 0.08);
  --radius: 8px;
  --max: 1180px;
  --header-h: 74px;
  font-family: Inter, Montserrat, Poppins, "Avenir Next", Avenir, "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, Montserrat, Poppins, "Avenir Next", Avenir, "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 246, 242, 0.82)),
    repeating-linear-gradient(90deg, rgba(var(--ink-rgb), 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(var(--ink-rgb), 0.03) 0 1px, transparent 1px 96px);
}

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

.zoho-inline-svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.button,
.section-kicker,
.eyebrow {
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  padding: 0.72rem max(1rem, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(var(--ink-rgb), 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 8.9rem;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.22rem;
  margin-left: auto;
  font-weight: 400;
  letter-spacing: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  border-radius: var(--radius);
  padding: 0.54rem 0.54rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(31, 111, 178, 0.1);
  color: var(--button-hover);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  gap: 0.35rem;
}

.nav-dropdown-trigger::after {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(0.06rem) rotate(225deg);
}

.nav-dropdown.is-current .nav-dropdown-trigger,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  background: rgba(31, 111, 178, 0.1);
  color: var(--button-hover);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.58rem);
  left: 0;
  z-index: 45;
  display: grid;
  min-width: 15.5rem;
  gap: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  padding: 0.45rem;
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown-panel::before {
  position: absolute;
  top: -0.55rem;
  right: 0;
  left: 0;
  height: 0.65rem;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  justify-content: flex-start;
  width: 100%;
  min-height: 2.45rem;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.83rem;
}

.nav-dropdown-panel a[aria-current="page"] {
  background: rgba(0, 179, 136, 0.12);
  color: var(--button-hover);
  font-weight: 720;
}

.site-nav .nav-action {
  margin-left: 0.16rem;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  padding-inline: 0.74rem;
  font-weight: 620;
  box-shadow: var(--button-shadow);
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  background: var(--button-gradient-hover);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav .nav-ticket {
  margin-left: 0.16rem;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  padding-inline: 0.74rem;
  font-weight: 620;
  box-shadow: var(--button-shadow);
}

.site-nav .nav-ticket:hover,
.site-nav .nav-ticket:focus-visible {
  background: var(--button-gradient-hover);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav .nav-ticket[aria-current="page"] {
  background: var(--button-gradient);
  color: #fff;
}

#zsiq_float,
#zsiq_chat_wrap,
#zsiq_floatmain,
.zsiq_theme1,
.zsiq_float,
.zsiq_floatmain {
  z-index: 2147483000 !important;
}

#zsiq_float,
#zsiq_floatmain,
.zsiq_float,
.zsiq_floatmain {
  bottom: 3.25rem !important;
}

#zsiq_chat_wrap {
  bottom: 6rem !important;
}

.language-switch {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(2.2rem, 1fr));
  align-items: center;
  gap: 0;
  min-height: 2.3rem;
  overflow: hidden;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-gradient);
  box-shadow: var(--button-shadow);
}

.language-switch a {
  min-height: 2rem;
  border-radius: 999px;
  padding: 0.42rem 0.58rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-switch .is-active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 8px 18px rgba(0, 179, 136, 0.18);
}

.language-switch a:hover,
.language-switch a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

.language-switch .is-active:hover,
.language-switch .is-active:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  border: 1px solid var(--button-border);
  border-radius: var(--radius);
  background: var(--button-gradient);
  color: #fff;
  box-shadow: var(--button-shadow);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.25rem auto;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  text-decoration: none;
  line-height: 1.1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  border-color: var(--button-border);
  background: var(--button-gradient);
  color: #fff;
  box-shadow: var(--button-shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--button-gradient-hover);
  color: #fff;
}

.button-secondary {
  border-color: rgba(45, 226, 230, 0.22);
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.96);
  color: #fff;
  box-shadow: 0 12px 26px rgba(var(--ink-rgb), 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--button-border);
  background: var(--button-gradient-hover);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.58fr);
  align-items: center;
  gap: 2.2rem;
  width: min(100% - 2rem, var(--max));
  min-height: 34rem;
  margin: var(--header-h) auto 0;
  padding: 2rem 0 1rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.75rem;
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 0.65rem;
  font-size: 4.85rem;
  line-height: 0.92;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 0.9rem;
  color: #263945;
  font-size: 1.26rem;
  font-weight: 760;
  line-height: 1.32;
}

.hero-text {
  max-width: 35rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.54rem 0.7rem;
  color: #3a4a54;
  font-size: 0.86rem;
  font-weight: 760;
}

.product-page {
  padding-top: var(--header-h);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
  min-height: 30rem;
  margin: 0 auto;
  padding: 2rem 0 1rem;
}

.page-hero h1 {
  max-width: 48rem;
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.96;
}

.page-hero p:not(.eyebrow) {
  max-width: 45rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.page-side-panel {
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.page-side-panel span,
.catalog-card > span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.page-side-panel strong {
  display: block;
  font-size: 1.36rem;
  line-height: 1.12;
}

.page-side-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-summary {
  display: grid;
  gap: 1rem;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.hero-summary img {
  width: 13rem;
}

.summary-list {
  display: grid;
  gap: 0.7rem;
}

.summary-list div {
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 0.78rem 0.82rem;
}

.summary-list div:nth-child(2) {
  border-left-color: var(--amber);
}

.summary-list div:nth-child(3) {
  border-left-color: var(--coral);
}

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

.summary-list span {
  margin-bottom: 0.22rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-list strong {
  color: var(--ink);
  line-height: 1.18;
}

.tool-section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding-top: 4rem;
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  align-items: start;
  gap: 1rem;
  min-width: 0;
}

.catalog-section {
  padding-top: 3.5rem;
}

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

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

.catalog-card {
  display: flex;
  min-width: 0;
  min-height: 24rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.08rem;
  box-shadow: var(--shadow-soft);
}

.catalog-card h3 {
  margin: 0.95rem 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.12;
}

.catalog-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.catalog-card ul {
  display: grid;
  gap: 0.42rem;
  margin: 0.35rem 0 1.1rem;
  padding-left: 1.05rem;
  color: #41515c;
  font-size: 0.9rem;
}

.catalog-card a,
.catalog-card > span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  margin-top: auto;
  border: 1px solid rgba(31, 111, 178, 0.22);
  border-radius: var(--radius);
  color: var(--button);
  font-weight: 820;
  text-decoration: none;
}

.catalog-card a:hover,
.catalog-card a:focus-visible {
  background: rgba(31, 111, 178, 0.08);
  color: var(--button-hover);
}

.software-detail-main {
  padding-top: var(--header-h);
}

.software-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: min(100% - 2rem, var(--max));
  min-height: 34rem;
  margin: 0 auto;
  padding: 3.2rem 0 2.2rem;
  isolation: isolate;
}

.software-hero::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.76) 100%),
    url("../assets/hero-flow-motion-bg.png") center / cover no-repeat;
}

.software-hero::after {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(246, 249, 252, 0.92) 100%),
    radial-gradient(circle at 82% 22%, rgba(45, 226, 230, 0.2), transparent 36%);
  pointer-events: none;
}

.software-hero-copy {
  max-width: 43rem;
}

.payroll-brand-logo {
  width: min(12rem, 72%);
  max-height: 3.2rem;
  margin: 0.7rem 0 1rem;
  object-fit: contain;
  object-position: left center;
}

.software-hero h1 {
  max-width: 45rem;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.8vw, 4.3rem);
  line-height: 0.98;
}

.software-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.software-hero-visual {
  position: relative;
  margin: 0;
}

.software-hero-visual img,
.software-hero-visual .zoho-inline-svg {
  width: 100%;
  border: 1px solid rgba(45, 226, 230, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(var(--ink-rgb), 0.18);
}

.software-hero-visual figcaption {
  max-width: 31rem;
  margin: 0.85rem 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #3f515d;
  padding: 0.64rem 0.92rem;
  font-size: 0.82rem;
  font-weight: 660;
  box-shadow: var(--shadow-soft);
}

.software-visual-gallery,
.software-capability-section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 0;
}

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

.software-visual-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.82rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.software-visual-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(var(--ink-rgb), 0.13);
}

.software-visual-grid img,
.software-visual-grid .zoho-inline-svg {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  object-fit: cover;
}

.software-visual-grid span {
  display: inline-flex;
  margin-top: 0.95rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 860;
}

.software-visual-grid h3 {
  margin: 0.22rem 0 0.38rem;
  font-size: 1.25rem;
}

.software-visual-grid p {
  margin-bottom: 0.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.software-workflow-section {
  width: 100%;
  margin-top: 4.8rem;
  padding: 4rem max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(45, 226, 230, 0.12), transparent 32%),
    linear-gradient(180deg, #12263f, #0d1c2f);
  color: #fff;
}

.software-workflow-section > div:first-child,
.software-flow-line {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.software-workflow-section > div:first-child {
  margin-bottom: 1.35rem;
}

.software-workflow-section .section-kicker {
  color: #8bd2c6;
}

.software-workflow-section h2 {
  max-width: 48rem;
  margin-bottom: 0;
  color: #fff;
  font-size: 2.15rem;
  line-height: 1.05;
}

.software-flow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.software-flow-line article {
  position: relative;
  display: grid;
  gap: 0.44rem;
  min-height: 13rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.1rem;
}

.software-flow-line article::after {
  position: absolute;
  top: 50%;
  right: -0.55rem;
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 2px solid rgba(45, 226, 230, 0.74);
  border-right: 2px solid rgba(45, 226, 230, 0.74);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.software-flow-line article:last-child::after {
  display: none;
}

.software-flow-line span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(45, 226, 230, 0.15);
  color: var(--aqua);
  padding: 0.28rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 840;
}

.software-flow-line strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
}

.software-flow-line p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.9rem;
}

.software-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.software-capability-grid article {
  min-height: 12rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(45, 226, 230, 0.11), transparent 44%);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.software-capability-grid h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.software-capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.platform-context-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.48fr);
  gap: 1.5rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
  margin: 4.5rem auto 0;
  border: 1px solid rgba(45, 226, 230, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.92);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.platform-context-band h2 {
  max-width: 44rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.platform-context-band p {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
}

.platform-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.platform-chip-row span {
  border: 1px solid rgba(0, 179, 136, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--button-hover);
  padding: 0.48rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), 0.06);
}

.detail-band {
  width: 100%;
  margin-top: 5rem;
  padding: 4rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.detail-band > div:first-child {
  width: min(100%, var(--max));
  margin: 0 auto 1.35rem;
}

.detail-band .section-kicker {
  color: #8bd2c6;
}

.detail-band h2 {
  max-width: 48rem;
  margin-bottom: 0;
  font-size: 2.1rem;
  line-height: 1.05;
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.detail-steps article {
  min-height: 13rem;
  background: #182d38;
  padding: 1.05rem;
}

.detail-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.detail-steps strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.detail-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.resources-section {
  padding-top: 4rem;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.resource-list a,
.resource-list span {
  display: flex;
  align-items: center;
  min-height: 5.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0.9rem;
  font-weight: 820;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.resource-list a:hover,
.resource-list a:focus-visible {
  border-color: rgba(31, 111, 178, 0.28);
  color: var(--button);
}

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

.matrix-grid article {
  min-height: 9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.matrix-grid strong,
.matrix-grid span {
  display: block;
}

.matrix-grid strong {
  margin-bottom: 0.55rem;
}

.matrix-grid span {
  color: var(--muted);
}

.operations-board,
.close-estimator {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.operations-board {
  display: grid;
  gap: 1rem;
  min-height: 31.5rem;
  padding: 1.1rem;
  align-content: space-between;
}

.board-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.board-topline span,
.shift-heading,
.board-metrics span,
.estimator-results span,
.estimator-grid label > span,
.operations-board span,
.site-footer p,
.industry-grid span {
  color: var(--muted);
}

.board-topline strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.12rem;
}

.board-topline p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0;
  border: 7px solid rgba(15, 139, 124, 0.18);
  border-top-color: var(--teal);
  border-right-color: var(--amber);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 850;
}

.shift-table {
  display: grid;
  gap: 0.52rem;
}

.shift-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.65rem;
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.65rem 0.75rem;
  font-size: 0.92rem;
}

.shift-row:nth-child(3) {
  border-left-color: var(--amber);
}

.shift-row:nth-child(4) {
  border-left-color: var(--green);
}

.shift-heading {
  min-height: 2rem;
  border: 0;
  background: transparent;
  padding-block: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shift-row strong {
  color: var(--green);
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.board-metrics div,
.estimator-results div {
  min-width: 0;
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 0.8rem;
}

.board-metrics strong,
.estimator-results strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--ink);
  font-size: 1.14rem;
}

.close-estimator {
  display: grid;
  gap: 1rem;
  padding: 1.05rem;
}

.estimator-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.estimator-heading h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.estimator-heading > span {
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: rgba(216, 137, 28, 0.13);
  color: #8a5108;
  padding: 0.42rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 850;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 0.24rem;
}

.segment-control button {
  min-height: 2.25rem;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: #42525d;
  font-size: 0.78rem;
  font-weight: 820;
  cursor: pointer;
}

.segment-control button.is-active {
  background: var(--button-gradient);
  color: #fff;
  box-shadow: var(--button-shadow);
}

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

.estimator-grid label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.estimator-grid label > span {
  font-size: 0.78rem;
  font-weight: 800;
}

.estimator-grid input[type="number"] {
  width: 100%;
  min-height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.55rem 0.65rem;
}

.estimator-grid input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.toggle-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: #41515c;
  font-size: 0.86rem;
  font-weight: 720;
}

.toggle-line label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.toggle-line input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--teal);
}

.estimator-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.estimator-results div {
  padding: 0.68rem;
  overflow-wrap: anywhere;
}

.estimator-results span {
  font-size: 0.72rem;
  line-height: 1.18;
}

.estimator-results strong {
  font-size: 1.04rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.signal-strip div {
  min-height: 6.35rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.signal-strip span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--coral);
  font-weight: 850;
}

.signal-strip strong {
  display: block;
  font-size: 1rem;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 0.55fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -0.6rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 2.25rem;
  line-height: 1.05;
}

.section-heading p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

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

.feature-card,
.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  background: rgba(31, 111, 178, 0.1);
  color: var(--button-hover);
  padding: 0.32rem 0.5rem;
  font-size: 0.76rem;
  font-weight: 850;
}

.feature-card:nth-child(2) span {
  background: rgba(15, 139, 124, 0.12);
  color: var(--teal);
}

.feature-card:nth-child(3) span {
  background: rgba(216, 137, 28, 0.13);
  color: #8a5108;
}

.feature-card:nth-child(4) span {
  background: rgba(215, 92, 72, 0.11);
  color: var(--coral);
}

.feature-card h3,
.partner-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.14;
}

.feature-card p,
.partner-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.workflow-section {
  width: 100%;
  max-width: none;
  margin-top: 5rem;
  padding: 4.5rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.workflow-section .section-heading {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.workflow-section .section-kicker {
  color: #8bd2c6;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.workflow-track article {
  min-height: 15rem;
  background: #182d38;
  padding: 1.2rem;
}

.workflow-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.workflow-track h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
}

.workflow-track p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.industry-grid article {
  min-height: 8rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.05rem;
}

.industry-grid strong,
.industry-grid span {
  display: block;
}

.industry-grid strong {
  margin-bottom: 0.55rem;
  line-height: 1.16;
}

.partner-section {
  padding-top: 4rem;
}

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

.partner-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  justify-content: flex-end;
}

.partner-logo {
  width: 12rem;
  max-height: 4.8rem;
  margin-bottom: auto;
  object-fit: contain;
  object-position: left center;
}

.easy-logo {
  width: 13.5rem;
}

.msc-logo {
  width: 10rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  gap: 1.5rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
  margin: 5rem auto 0;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(19, 32, 41, 0.96), rgba(19, 32, 41, 0.9)),
    linear-gradient(135deg, var(--teal), var(--amber));
  color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-section .section-kicker {
  color: #8bd2c6;
}

.contact-section h2 {
  margin-bottom: 0.75rem;
  font-size: 2.15rem;
  line-height: 1.05;
}

.contact-section p:not(.section-kicker) {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-actions .button-secondary {
  background: rgba(7, 22, 38, 0.72);
  color: #fff;
  border-color: var(--button-border);
}

.contact-actions .button-secondary:hover,
.contact-actions .button-secondary:focus-visible {
  background: var(--button-gradient-hover);
  border-color: var(--button-border);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(20rem, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  width: min(100% - 2rem, var(--max));
  margin: 5rem auto 0;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.12), transparent 34%),
    linear-gradient(180deg, #fff, #f7fbfc);
  padding: clamp(1.15rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-form-copy {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.contact-form-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}

.contact-form-copy p:not(.section-kicker) {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--muted);
}

.pr-contact-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: 0 18px 42px rgba(var(--ink-rgb), 0.08);
}

.form-brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 0.72rem;
  min-height: 4.5rem;
  border: 1px solid rgba(0, 179, 136, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.13), rgba(45, 226, 230, 0.08) 52%, rgba(var(--ink-rgb), 0.04)),
    #fbfffe;
  padding: 0.8rem 1rem;
  text-align: center;
}

.form-brand-header img {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.form-brand-header h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  font-weight: 780;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

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

.form-field {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
}

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

.form-field span {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 820;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.12rem;
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) 1.36rem,
    calc(100% - 0.78rem) 1.36rem;
  background-size:
    0.38rem 0.38rem,
    0.38rem 0.38rem;
  background-repeat: no-repeat;
  color: rgba(var(--ink-rgb), 0.62);
  padding-right: 2.4rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(var(--ink-rgb), 0.42);
  transition: color 180ms ease;
}

.form-field:hover span,
.form-field:focus-within span {
  color: var(--teal);
}

.form-field:hover input,
.form-field:hover select,
.form-field:hover textarea,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 179, 136, 0.58);
  background-color: #fbfffe;
  box-shadow: 0 0 0 4px rgba(45, 226, 230, 0.16);
}

.form-field:hover input::placeholder,
.form-field:hover textarea::placeholder,
.form-field input:focus::placeholder,
.form-field textarea:focus::placeholder {
  color: var(--teal);
}

.form-field select:focus,
.form-field select:hover {
  color: var(--ink);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 0.6rem;
  min-height: 3.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  padding: 0.78rem 1.05rem 0.78rem 1.35rem;
  font: inherit;
  font-weight: 860;
  cursor: pointer;
  box-shadow: var(--button-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.form-submit svg {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.22rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  filter: saturate(1.06);
  background: var(--button-gradient-hover);
  box-shadow: 0 20px 42px rgba(0, 75, 67, 0.34);
  transform: translateY(-1px);
}

.form-submit:hover svg,
.form-submit:focus-visible svg {
  transform: translateX(0.18rem);
}

.service-ticket-main {
  padding-top: var(--header-h);
}

.ticket-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(100% - 2rem, var(--max));
  min-height: clamp(30rem, 62vh, 42rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.ticket-hero::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.54) 100%),
    linear-gradient(135deg, rgba(0, 179, 136, 0.16), rgba(45, 226, 230, 0.1)),
    url("../assets/hero-flow-motion-bg.png") center / cover no-repeat;
}

.ticket-hero::after {
  position: absolute;
  inset: auto calc((100% - 100vw) / 2) 0;
  z-index: -1;
  height: 36%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(246, 249, 252, 0.94));
  pointer-events: none;
}

.ticket-hero-copy,
.ticket-hero-panel {
  position: relative;
  z-index: 1;
}

.ticket-hero-mark {
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 226, 230, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(var(--ink-rgb), 0.1);
  object-fit: contain;
}

.ticket-hero h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.85rem, 6vw, 5.6rem);
  font-weight: 680;
  line-height: 0.96;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

.ticket-hero-lead {
  max-width: 47rem;
  margin-bottom: 1rem;
  color: #263a50;
  font-size: clamp(1.18rem, 2.3vw, 1.55rem);
  font-weight: 680;
  line-height: 1.28;
}

.ticket-hero-text {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.ticket-hero-panel {
  align-self: end;
  border: 1px solid rgba(45, 226, 230, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.14), rgba(45, 226, 230, 0.08)),
    rgba(255, 255, 255, 0.86);
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.ticket-hero-panel span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket-hero-panel strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.ticket-hero-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.ticket-form-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(22rem, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  width: min(100% - 2rem, var(--max));
  margin: 1.6rem auto 0;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(45, 226, 230, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.98));
  padding: clamp(1.15rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ticket-form-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    url("../assets/integration-value-bg.png") center / cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.ticket-form-copy,
.ticket-form {
  position: relative;
  z-index: 1;
}

.ticket-form-copy {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.ticket-form-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1;
}

.ticket-form-copy p:not(.section-kicker) {
  max-width: 31rem;
  color: var(--muted);
}

.ticket-support-note {
  display: grid;
  gap: 0.35rem;
  width: fit-content;
  min-width: min(100%, 16rem);
  margin-top: 1.25rem;
  border: 1px solid rgba(0, 179, 136, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem 1rem;
}

.ticket-support-note strong {
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.ticket-support-note a {
  color: var(--teal);
  font-weight: 680;
  text-decoration: none;
}

.ticket-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: 0 18px 42px rgba(var(--ink-rgb), 0.08);
}

.ticket-form-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 0.72rem;
  min-height: 4.65rem;
  border: 1px solid rgba(0, 179, 136, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.13), rgba(45, 226, 230, 0.08) 52%, rgba(var(--ink-rgb), 0.04)),
    #fbfffe;
  padding: 0.8rem 1rem;
  text-align: center;
}

.ticket-form-header img {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.ticket-form-header h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  font-weight: 720;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

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

.ticket-field {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
}

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

.ticket-field label,
.ticket-field legend {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 820;
}

.ticket-field em {
  color: var(--teal);
  font-style: normal;
}

.ticket-field input,
.ticket-field select,
.ticket-field textarea {
  width: 100%;
  min-height: 3.12rem;
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.ticket-field textarea {
  min-height: 8.25rem;
  resize: vertical;
}

.ticket-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) 1.36rem,
    calc(100% - 0.78rem) 1.36rem;
  background-size:
    0.38rem 0.38rem,
    0.38rem 0.38rem;
  background-repeat: no-repeat;
  color: rgba(var(--ink-rgb), 0.62);
  padding-right: 2.4rem;
}

.ticket-field select[multiple] {
  min-height: 8.25rem;
  background-image: none;
  padding-right: 0.9rem;
}

.ticket-field input[type="file"] {
  padding-top: 0.72rem;
}

.ticket-field input::placeholder,
.ticket-field textarea::placeholder {
  color: rgba(var(--ink-rgb), 0.42);
  transition: color 180ms ease;
}

.ticket-field p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.ticket-field:hover label,
.ticket-field:hover legend,
.ticket-field:focus-within label,
.ticket-field:focus-within legend {
  color: var(--teal);
}

.ticket-field:hover input,
.ticket-field:hover select,
.ticket-field:hover textarea,
.ticket-field input:focus,
.ticket-field select:focus,
.ticket-field textarea:focus {
  border-color: rgba(0, 179, 136, 0.58);
  background-color: #fbfffe;
  box-shadow: 0 0 0 4px rgba(45, 226, 230, 0.16);
}

.ticket-field:hover input::placeholder,
.ticket-field:hover textarea::placeholder,
.ticket-field input:focus::placeholder,
.ticket-field textarea:focus::placeholder {
  color: var(--teal);
}

.ticket-field select:hover,
.ticket-field select:focus {
  color: var(--ink);
}

.ticket-datetime-row {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) repeat(3, minmax(5.4rem, 0.45fr));
  gap: 0.55rem;
}

.ticket-checks {
  margin: 0;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(246, 249, 252, 0.72);
  padding: 0.95rem;
}

.ticket-checks legend {
  padding: 0 0.3rem;
}

.ticket-checks label {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
  font-weight: 520;
}

.ticket-checks label + label {
  margin-top: 0.65rem;
}

.ticket-checks input {
  width: 1rem;
  min-height: 1rem;
  margin: 0.16rem 0 0;
  accent-color: var(--teal);
}

.ticket-submit {
  justify-self: end;
}

.site-footer {
  width: 100%;
  margin-top: 4.5rem;
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.13), transparent 34%),
    linear-gradient(180deg, #12263f, #0d1c2f);
  color: #fff;
}

.footer-main,
.footer-integrations,
.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(18rem, 1.25fr) repeat(3, minmax(10rem, 0.75fr));
  gap: clamp(1.35rem, 3vw, 2.7rem);
  padding: 3rem 0 1.35rem;
}

.footer-brand {
  max-width: 31rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: min(100%, 19rem);
  text-decoration: none;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand h2 {
  margin: 1.15rem 0 0.6rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 680;
  line-height: 1.15;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-badges span {
  border: 1px solid rgba(45, 226, 230, 0.22);
  border-radius: 999px;
  background: rgba(0, 179, 136, 0.16);
  color: #d9fffb;
  padding: 0.34rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 760;
}

.footer-parent {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 1rem;
  border-left: 2px solid rgba(45, 226, 230, 0.78);
  color: rgba(255, 255, 255, 0.72);
  padding-left: 0.72rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-parent a {
  color: #d9fffb;
  font-weight: 760;
  text-decoration: none;
}

.footer-parent a:hover,
.footer-parent a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.52rem;
  min-width: 0;
}

.footer-column h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.3;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column a[aria-current="page"] {
  color: var(--aqua);
}

.footer-contact .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  width: fit-content;
  margin-top: 0.35rem;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  padding: 0.62rem 1rem;
  font-weight: 800;
  box-shadow: var(--button-shadow);
}

.footer-contact .footer-cta:hover,
.footer-contact .footer-cta:focus-visible {
  background: var(--button-gradient-hover);
  color: #fff;
  transform: translateY(-1px);
}

.footer-integrations {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem 0;
}

.footer-integrations > span {
  color: #8bd2c6;
  font-size: 0.82rem;
  font-weight: 820;
}

.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-partner-logos img {
  width: 7.6rem;
  height: 2.55rem;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  padding: 0.42rem 0.58rem;
}

.workeasy-inline {
  display: block;
  width: min(12rem, 80%);
  max-height: 4.2rem;
  object-fit: contain;
}

.payroll-logo-row .workeasy-inline {
  width: min(13rem, 100%) !important;
  height: 2.8rem !important;
  max-height: 2.8rem !important;
}

.partner-brand .workeasy-inline {
  width: min(13rem, 100%);
}

.footer-partner-logos .workeasy-inline {
  width: 7.6rem !important;
  height: 2.55rem !important;
  max-height: 2.55rem !important;
  border-radius: 6px;
  background: #fff;
  padding: 0.42rem 0.58rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.35rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.8rem;
  min-width: min(100%, 28rem);
}

.footer-legal a,
.footer-legal button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  padding: 0;
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.legal-main {
  padding-top: var(--header-h);
}

.legal-hero {
  position: relative;
  isolation: isolate;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
}

.legal-hero::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(246, 249, 252, 0.72) 100%),
    radial-gradient(circle at 76% 18%, rgba(45, 226, 230, 0.2), transparent 34%),
    url("../assets/hero-flow-motion-bg.png") center / cover no-repeat;
  box-shadow: inset 0 -7rem 6rem rgba(246, 249, 252, 0.96);
}

.legal-mark {
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 226, 230, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  object-fit: contain;
  box-shadow: 0 14px 32px rgba(var(--ink-rgb), 0.1);
}

.legal-hero h1 {
  max-width: 14ch;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.4vw, 5.1rem);
  font-weight: 680;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 52rem;
  color: var(--muted);
}

.legal-lead {
  color: #263a50 !important;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 720;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 4rem;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.1), rgba(45, 226, 230, 0.06)),
    #fff;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.legal-toc strong {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.legal-toc a {
  border-radius: 999px;
  color: var(--muted);
  padding: 0.4rem 0.55rem;
  font-size: 0.9rem;
  line-height: 1.2;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible,
.legal-toc a[aria-current="page"] {
  background: var(--button-gradient);
  color: #fff;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 4rem;
}

.legal-card {
  display: grid;
  gap: 0.75rem;
  min-height: 13rem;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.08), rgba(45, 226, 230, 0.05)),
    rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 1.15rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.legal-card:hover,
.legal-card:focus-visible {
  border-color: var(--button-border);
  box-shadow: 0 18px 42px rgba(var(--ink-rgb), 0.12);
  transform: translateY(-2px);
}

.legal-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 860;
}

.legal-card h2 {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 760;
  line-height: 1.1;
}

.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-card strong {
  align-self: end;
  color: var(--button-hover);
  font-size: 0.86rem;
}

.legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.legal-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: 999px;
  background: rgba(246, 249, 252, 0.88);
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.legal-page-nav a:hover,
.legal-page-nav a:focus-visible,
.legal-page-nav a[aria-current="page"] {
  border-color: var(--button-border);
  background: var(--button-gradient);
  color: #fff;
}

.legal-content section {
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  box-shadow: 0 18px 42px rgba(var(--ink-rgb), 0.07);
}

.legal-content h2 {
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 720;
  line-height: 1.08;
}

.legal-content h3 {
  margin: 1.25rem 0 0.45rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.2;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-content p {
  margin-bottom: 0.78rem;
}

.legal-content ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.1rem;
}

.legal-content li + li {
  margin-top: 0.3rem;
}

.legal-content address {
  border-left: 2px solid var(--aqua);
  margin: 0.85rem 0 0;
  padding-left: 0.85rem;
  font-style: normal;
  line-height: 1.6;
}

.legal-content a {
  color: var(--button-hover);
  font-weight: 680;
  text-decoration: none;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.form-legal-note {
  grid-column: 1 / -1;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(246, 249, 252, 0.76);
  color: var(--muted);
  padding: 0.85rem 0.95rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-legal-note a {
  color: var(--button-hover);
  font-weight: 720;
  text-decoration: none;
}

.form-legal-note a:hover,
.form-legal-note a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.8rem;
  width: min(34rem, calc(100vw - 2rem));
  border: 1px solid rgba(45, 226, 230, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 136, 0.12), rgba(45, 226, 230, 0.08)),
    rgba(255, 255, 255, 0.96);
  padding: 1rem;
  box-shadow: 0 24px 64px rgba(var(--ink-rgb), 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-banner p,
.cookie-banner label {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cookie-actions button,
.cookie-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.96);
  color: #fff;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
}

.cookie-actions button[data-cookie-accept],
.cookie-actions button[data-cookie-save] {
  background: var(--button-gradient);
  color: #fff;
  box-shadow: var(--button-shadow);
}

.cookie-panel {
  display: grid;
  gap: 0.5rem;
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  border-radius: var(--radius);
  background: rgba(246, 249, 252, 0.82);
  padding: 0.75rem;
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cookie-panel input {
  accent-color: var(--teal);
}

.brand-home {
  background: #fff;
}

.brand-home::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.94)),
    repeating-linear-gradient(90deg, rgba(var(--ink-rgb), 0.028) 0 1px, transparent 1px 108px),
    repeating-linear-gradient(0deg, rgba(var(--ink-rgb), 0.022) 0 1px, transparent 1px 108px);
}

.brand-home .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.brand-home .brand img {
  width: clamp(8.3rem, 10vw, 9.7rem);
}

.brand-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(22rem, 0.76fr);
  align-items: center;
  gap: 2.2rem;
  width: min(100% - 2rem, var(--max));
  min-height: calc(100svh - var(--header-h) - 5.8rem);
  margin: var(--header-h) auto 0;
  padding: clamp(1.8rem, 4.5vh, 3.2rem) 0 1rem;
  isolation: isolate;
}

.brand-hero::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.62) 58%, rgba(18, 38, 63, 0.62) 100%),
    linear-gradient(180deg, rgba(246, 249, 252, 0.38), rgba(246, 249, 252, 0.88) 92%),
    url("../assets/hero-flow-motion-bg.png") center / cover no-repeat;
  box-shadow: inset 0 -8rem 7rem rgba(246, 249, 252, 0.92);
  pointer-events: none;
}

.brand-hero::after {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, rgba(0, 179, 136, 0.08), transparent 46%),
    linear-gradient(180deg, transparent 58%, rgba(246, 249, 252, 0.88));
  pointer-events: none;
}

.brand-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.brand-hero h1 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.75rem, 5.2vw, 5.15rem);
  font-weight: 680;
  line-height: 0.96;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.brand-hero-lead {
  max-width: 43rem;
  margin-bottom: 1rem;
  color: #263a50;
  font-size: clamp(1.18rem, 2.4vw, 1.65rem);
  font-weight: 760;
  line-height: 1.28;
}

.brand-hero-text {
  max-width: 43rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.integration-console {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(45, 226, 230, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 252, 0.76)),
    linear-gradient(145deg, rgba(45, 226, 230, 0.08), rgba(0, 179, 136, 0.08));
  padding: 1.25rem;
  box-shadow: 0 26px 70px rgba(var(--ink-rgb), 0.13);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.console-header span,
.console-grid span,
.ecosystem-client span,
.ecosystem-center span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.console-header strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.console-core {
  display: grid;
  grid-template-columns: 7.8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 12rem;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  padding: 1rem;
  overflow: hidden;
}

.console-core p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.core-ring {
  position: relative;
  width: 7rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.core-ring span {
  position: absolute;
  inset: 50%;
  width: 0.72rem;
  height: 0.72rem;
  margin: -0.36rem;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 28px rgba(45, 226, 230, 0.9);
  transform-origin: 0.36rem 0.36rem;
  animation: orbit 8s linear infinite;
}

.core-ring span:nth-child(2) {
  background: var(--teal);
  animation-delay: -2.6s;
}

.core-ring span:nth-child(3) {
  background: #fff;
  animation-delay: -5.2s;
}

.console-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.1rem minmax(0, 1fr) 1.1rem minmax(0, 1fr) 1.1rem minmax(0, 1fr);
  gap: 0.38rem;
  align-items: center;
}

.console-flow div {
  min-width: 0;
  border: 1px solid rgba(0, 179, 136, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.62rem;
  box-shadow: 0 10px 22px rgba(var(--ink-rgb), 0.06);
}

.console-flow span {
  display: block;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 860;
  text-transform: uppercase;
}

.console-flow strong {
  display: block;
  margin-top: 0.12rem;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.12;
}

.console-flow i {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 179, 136, 0.16);
}

.console-flow i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--aqua), var(--teal), transparent);
  animation: flowPulse 1.8s linear infinite;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(3.2rem);
  }
  to {
    transform: rotate(360deg) translateX(3.2rem);
  }
}

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

.console-grid div {
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.8rem;
}

.console-grid strong {
  display: block;
  margin-top: 0.16rem;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.brand-strip div {
  min-height: 6.1rem;
  background: #fff;
  padding: 1rem;
}

.brand-strip span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--teal);
  font-weight: 900;
}

.home-flow-section {
  width: min(100% - 2rem, var(--max));
  margin: 1rem auto 0;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(18, 38, 63, 0.97), rgba(18, 38, 63, 0.9)),
    linear-gradient(135deg, var(--teal), var(--aqua));
  color: #fff;
  padding: clamp(1.2rem, 3.2vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.home-flow-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(16rem, 0.48fr);
  gap: 1.1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.home-flow-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -0.6rem;
  color: var(--aqua);
}

.home-flow-heading h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1;
}

.home-flow-heading p:not(.section-kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.home-flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.home-flow-track article {
  position: relative;
  min-height: 12rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.home-flow-track article::after {
  position: absolute;
  top: 2rem;
  right: -0.55rem;
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 2px solid var(--aqua);
  border-right: 2px solid var(--aqua);
  content: "";
  transform: rotate(45deg);
  animation: flowArrow 1.8s ease-in-out infinite;
}

.home-flow-track article:last-child::after {
  display: none;
}

.home-flow-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: #fff;
  font-weight: 900;
}

.home-flow-track h3 {
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: 1.08rem;
}

.home-flow-track p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@keyframes flowPulse {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes flowArrow {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(0) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateX(0.22rem) rotate(45deg);
  }
}

.brand-section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.2rem 0 0;
}

.integration-value-section {
  position: relative;
  isolation: isolate;
  margin-top: 5rem;
  padding: clamp(4.5rem, 8vw, 6.4rem) 0 clamp(3.4rem, 6vw, 4.8rem);
}

.integration-value-section::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(18, 38, 63, 0.54) 100%),
    linear-gradient(180deg, rgba(246, 249, 252, 0.88), rgba(246, 249, 252, 0.72) 48%, rgba(246, 249, 252, 0.9)),
    url("../assets/integration-value-bg.png") center / cover no-repeat;
  pointer-events: none;
}

.integration-value-section::after {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0.2), rgba(246, 249, 252, 0.92) 96%),
    linear-gradient(120deg, rgba(0, 179, 136, 0.08), transparent 45%);
  pointer-events: none;
}

.integration-value-section .section-heading {
  position: relative;
  z-index: 1;
}

.integration-value-section .section-heading p:not(.section-kicker) {
  color: rgba(var(--ink-rgb), 0.78);
}

.integration-image-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.7rem 0 1.2rem;
}

.integration-image-card {
  position: relative;
  min-width: 0;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 0.78;
}

.integration-image-card img,
.integration-image-card .zoho-inline-svg {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.integration-image-card figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(18, 38, 63, 0.86);
  color: #fff;
  padding: 0.78rem 0.86rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.integration-image-card figcaption span {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
}

.integration-image-card figcaption strong {
  font-size: 0.94rem;
  line-height: 1.18;
}

.integration-value-section .service-grid {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.integration-value-section .service-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.section-heading-single {
  grid-template-columns: minmax(0, 0.86fr);
  max-width: 56rem;
}

.section-heading-single .section-kicker {
  margin-bottom: -0.45rem;
}

.strategy-grid,
.technology-grid,
.service-grid {
  display: grid;
  gap: 0.9rem;
}

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

.strategy-grid article,
.technology-card,
.service-grid article {
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.strategy-grid article {
  min-height: 15rem;
  padding: 1.05rem;
}

.strategy-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal);
  font-weight: 900;
}

.strategy-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.14rem;
  line-height: 1.16;
}

.strategy-grid p,
.technology-card li,
.partner-message {
  color: var(--muted);
}

.data-motion-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(22rem, 0.82fr);
  gap: clamp(1rem, 4vw, 2.2rem);
  align-items: center;
  width: min(100% - 2rem, var(--max));
  margin: 4.8rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(45, 226, 230, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18, 38, 63, 0.98), rgba(13, 28, 47, 0.94)),
    radial-gradient(circle at 78% 20%, rgba(45, 226, 230, 0.18), transparent 34%);
  color: #fff;
  padding: clamp(1.2rem, 4vw, 2.35rem);
  box-shadow: 0 28px 70px rgba(var(--ink-rgb), 0.16);
}

.data-motion-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18), #000 25%, #000 78%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.data-motion-copy,
.data-motion-visual {
  position: relative;
  z-index: 1;
}

.data-motion-copy .section-kicker {
  color: var(--aqua);
}

.data-motion-copy h2 {
  max-width: 12ch;
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 680;
  line-height: 0.98;
}

.data-motion-copy p:not(.section-kicker) {
  max-width: 37rem;
  color: rgba(255, 255, 255, 0.74);
}

.data-motion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.data-motion-tags span {
  border: 1px solid rgba(45, 226, 230, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  padding: 0.48rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 760;
}

.data-motion-visual {
  display: grid;
  gap: 0.85rem;
  min-height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(45, 226, 230, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  padding: 1rem;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.motion-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.8rem;
}

.motion-topline span {
  color: var(--aqua);
  font-size: 0.74rem;
  font-weight: 850;
}

.motion-topline strong {
  color: #fff;
  font-size: 0.9rem;
}

.motion-map {
  position: relative;
  min-height: 15.5rem;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 52%, rgba(45, 226, 230, 0.14), transparent 28%),
    rgba(7, 20, 36, 0.52);
}

.motion-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  min-height: 2.35rem;
  border: 1px solid rgba(45, 226, 230, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 840;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.motion-node-core {
  top: 50%;
  left: 50%;
  min-width: 6.2rem;
  min-height: 3rem;
  background: var(--button-gradient);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(45, 226, 230, 0.06),
    0 18px 42px rgba(0, 75, 67, 0.34);
}

.motion-node-time {
  top: 18%;
  left: 8%;
}

.motion-node-hr {
  right: 10%;
  top: 17%;
}

.motion-node-payroll {
  bottom: 16%;
  left: 9%;
}

.motion-node-bi {
  right: 10%;
  bottom: 15%;
}

.data-stream {
  position: absolute;
  z-index: 1;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(45, 226, 230, 0.16);
  transform-origin: left center;
}

.data-stream::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--aqua), var(--teal), transparent);
  animation: dataStream 2.2s linear infinite;
}

.stream-a {
  top: 31%;
  left: 22%;
  width: 31%;
  transform: rotate(18deg);
}

.stream-b {
  top: 33%;
  left: 50%;
  width: 32%;
  transform: rotate(-18deg);
}

.stream-c {
  top: 64%;
  left: 21%;
  width: 32%;
  transform: rotate(-18deg);
}

.stream-d {
  top: 63%;
  left: 50%;
  width: 32%;
  transform: rotate(18deg);
}

.stream-b::after,
.stream-d::after {
  animation-delay: -0.8s;
}

.data-motion-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  border: 1px dashed rgba(45, 226, 230, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.data-motion-orbit::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 22px rgba(45, 226, 230, 0.9);
  content: "";
  transform: translate(-50%, -50%);
}

.orbit-a {
  width: 10.5rem;
  height: 10.5rem;
  animation: dataOrbit 11s linear infinite;
}

.orbit-b {
  width: 14.5rem;
  height: 14.5rem;
  animation: dataOrbit 15s linear infinite reverse;
}

.motion-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.motion-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.72rem;
}

.motion-metrics span {
  display: block;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 850;
}

.motion-metrics strong {
  display: block;
  margin-top: 0.12rem;
  color: #fff;
  font-size: 0.92rem;
}

@keyframes dataStream {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes dataOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.payroll-example-section {
  width: 100%;
  margin-top: 4.8rem;
  padding: clamp(4rem, 7vw, 5.6rem) max(1rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.98)),
    radial-gradient(circle at 72% 18%, rgba(45, 226, 230, 0.16), transparent 30%);
}

.payroll-example-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(24rem, 0.92fr);
  gap: clamp(1rem, 4vw, 2.4rem);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.payroll-example-copy h2 {
  max-width: 13ch;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 680;
  line-height: 0.98;
}

.payroll-example-copy p:not(.section-kicker) {
  color: var(--muted);
}

.payroll-reference-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.payroll-reference-links a,
.payroll-reference-links span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.96);
  color: #fff;
  padding: 0.52rem 0.78rem;
  font-size: 0.84rem;
  font-weight: 780;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.payroll-reference-links a:hover,
.payroll-reference-links a:focus-visible {
  background: var(--button-gradient-hover);
  transform: translateY(-1px);
}

.payroll-example-board {
  display: grid;
  gap: 0.9rem;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(45, 226, 230, 0.1), transparent 36%),
    #fff;
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: var(--shadow-soft);
}

.payroll-logo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.payroll-logo-row img {
  width: min(100%, 12rem);
  max-height: 3rem;
  object-fit: contain;
}

.payroll-logo-row img:last-child {
  justify-self: end;
}

.payroll-logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 840;
  white-space: nowrap;
  box-shadow: var(--button-shadow);
}

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

.payroll-flow-steps article {
  position: relative;
  min-height: 10.5rem;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(246, 249, 252, 0.84);
  padding: 0.86rem;
}

.payroll-flow-steps article::after {
  position: absolute;
  top: 1.8rem;
  right: -0.48rem;
  z-index: 2;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  content: "";
  transform: rotate(45deg);
}

.payroll-flow-steps article:last-child::after {
  display: none;
}

.payroll-flow-steps span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.payroll-flow-steps h3 {
  margin-bottom: 0.42rem;
  font-size: 0.98rem;
  line-height: 1.15;
}

.payroll-flow-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.payroll-csv-preview {
  overflow: hidden;
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  border-radius: var(--radius);
  background: #12263f;
  color: #fff;
}

.csv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.72rem 0.85rem;
}

.csv-header span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 860;
}

.csv-header strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.csv-table {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.65fr 0.95fr;
  min-width: 28rem;
}

.csv-table span {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.58rem 0.65rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.csv-table [role="columnheader"] {
  color: #fff;
  font-weight: 820;
}

.payroll-outcome {
  border-left: 3px solid var(--teal);
  margin: 0;
  background: rgba(0, 179, 136, 0.08);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  font-size: 0.94rem;
  font-weight: 680;
}

.ecosystem-section {
  width: 100%;
  margin-top: 5.4rem;
  padding: 4.6rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.ecosystem-section .section-kicker {
  color: var(--aqua);
}

.ecosystem-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.ecosystem-section .section-heading h2,
.brand-quote h2 {
  color: #fff;
}

.ecosystem-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 1.1rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  padding: 1.2rem;
  overflow: hidden;
}

.ecosystem-client,
.ecosystem-center {
  position: relative;
  z-index: 2;
  justify-self: center;
  min-width: min(100%, 22rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.95rem 1rem;
  text-align: center;
  backdrop-filter: blur(12px);
}

.ecosystem-client strong,
.ecosystem-center strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
}

.ecosystem-center {
  border-color: rgba(45, 226, 230, 0.34);
  box-shadow: 0 0 0 6px rgba(45, 226, 230, 0.05);
}

.ecosystem-services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 52rem;
  margin: 0 auto;
}

.ecosystem-services button {
  min-height: 3.3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.65rem;
  font-weight: 820;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.ecosystem-services button:hover,
.ecosystem-services button:focus-visible,
.ecosystem-services button.is-active {
  border-color: var(--button-border);
  background: var(--button-gradient);
  box-shadow: var(--button-shadow);
  transform: translateY(-1px);
}

.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.e-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 3;
  stroke-dasharray: 8 12;
  transition:
    stroke 180ms ease,
    stroke-width 180ms ease,
    opacity 180ms ease;
}

.e-line-core {
  stroke: rgba(45, 226, 230, 0.55);
}

.e-line.is-active {
  stroke: var(--aqua);
  stroke-width: 5;
  animation: flowLine 1.2s linear infinite;
}

@keyframes flowLine {
  to {
    stroke-dashoffset: -40;
  }
}

.platform-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.platform-node {
  display: grid;
  place-items: center;
  min-height: 8.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 1rem;
  text-align: center;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.platform-node img,
.technology-card img,
.partner-logos img {
  width: min(12rem, 80%);
  max-height: 4.2rem;
  object-fit: contain;
}

.platform-node > .workeasy-inline {
  width: min(13rem, 100%) !important;
  height: auto !important;
  max-height: 3.8rem !important;
}

.technology-card > .workeasy-inline {
  width: min(16rem, 100%) !important;
  height: auto !important;
  max-height: 4.5rem !important;
}

.platform-node p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-weight: 720;
}

.platform-node.is-active {
  border-color: var(--aqua);
  box-shadow: 0 0 0 5px rgba(45, 226, 230, 0.16), 0 22px 52px rgba(0, 179, 136, 0.24);
  transform: translateY(-2px);
}

.text-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45, 226, 230, 0.14), rgba(0, 179, 136, 0.16));
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

.technology-card {
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  padding: 1.2rem;
}

.technology-card h3 {
  margin: 1.3rem 0 0.9rem;
  font-size: 1.3rem;
  line-height: 1.16;
}

.technology-card ul {
  display: grid;
  gap: 0.5rem;
  margin: auto 0 0;
  padding-left: 1.05rem;
}

.partner-band {
  width: min(100% - 2rem, var(--max));
  margin: 5.4rem auto 0;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbfe, #edf4f7);
  padding: clamp(1.25rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}

.partner-copy {
  max-width: 52rem;
}

.partner-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.85rem, 3.35vw, 3rem);
  font-weight: 680;
  line-height: 1.05;
}

.partner-copy p:not(.section-kicker) {
  color: var(--muted);
}

.partner-lockup {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.partner-brand,
.partner-logos article {
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
}

.partner-brand {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.partner-brand img {
  width: min(13rem, 100%);
}

.partner-brand span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(0, 179, 136, 0.12);
  color: #007d62;
  padding: 0.42rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 850;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.partner-logos article {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 11rem;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.partner-logos article:hover,
.partner-logos article:focus-visible {
  border-color: rgba(45, 226, 230, 0.8);
  box-shadow: 0 18px 45px rgba(var(--ink-rgb), 0.12);
  transform: translateY(-2px);
}

.partner-logos p,
.partner-message {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.partner-message {
  max-width: 55rem;
  margin: 1rem 0 0;
}

.client-section {
  width: min(100% - 2rem, var(--max));
  margin: 5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(45, 226, 230, 0.14), transparent 35%),
    #fff;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-soft);
}

.client-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(16rem, 0.48fr);
  gap: 1.2rem;
  align-items: end;
}

.client-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -0.7rem;
}

.client-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}

.client-heading p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

.client-marquee {
  position: relative;
  margin-top: 1.8rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  animation: clientMarquee 28s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-track,
.client-marquee:focus-within .client-track {
  animation-play-state: paused;
}

.client-card {
  display: grid;
  place-items: center;
  flex: 0 0 13.5rem;
  min-height: 7rem;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  box-shadow: 0 14px 28px rgba(var(--ink-rgb), 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.client-card:hover {
  border-color: rgba(0, 179, 136, 0.36);
  box-shadow: 0 18px 38px rgba(var(--ink-rgb), 0.12);
  transform: translateY(-2px);
}

.client-card img {
  width: min(100%, 10.5rem);
  max-height: 4rem;
  object-fit: contain;
}

.client-note {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }

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

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

.service-grid article {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-height: 18rem;
  padding: 1rem;
  overflow: hidden;
}

.integration-value-section .service-grid article::before {
  content: none;
}

.integration-value-section .service-grid article::after {
  content: none;
}

.service-card-image,
.service-card-image.zoho-inline-svg {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(45, 226, 230, 0.16);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(var(--ink-rgb), 0.08);
}

.service-grid .zoho-inline-svg {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(45, 226, 230, 0.16);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(var(--ink-rgb), 0.08);
}

.service-grid h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.18;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 12px;
  background: rgba(0, 179, 136, 0.11);
  color: var(--teal);
}

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

.brand-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.52fr);
  gap: 1.5rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
  margin: 5.4rem auto 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(18, 38, 63, 0.96), rgba(18, 38, 63, 0.9)),
    linear-gradient(135deg, var(--teal), var(--aqua));
  color: #fff;
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.brand-quote p {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.brand-quote span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-quote h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.35vw, 3.05rem);
  font-weight: 680;
  line-height: 1.04;
}

.clock-main {
  padding-top: var(--header-h);
}

.clock-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 0.78fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: center;
  width: min(100% - 2rem, var(--max));
  min-height: calc(100svh - var(--header-h) - 3.5rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0 1.5rem;
}

.clock-hero::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 40%, rgba(246, 249, 252, 0.66) 100%),
    radial-gradient(circle at 78% 24%, rgba(45, 226, 230, 0.22), transparent 30%),
    radial-gradient(circle at 64% 72%, rgba(0, 179, 136, 0.16), transparent 32%),
    url("../assets/time-clocks/hero-time-clocks.png") right 12% center / clamp(42rem, 60vw, 70rem) auto no-repeat,
    url("../assets/hero-flow-motion-bg.png") center / cover no-repeat;
  box-shadow: inset 0 -7rem 6rem rgba(246, 249, 252, 0.96);
}

.clock-hero::after {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(246, 249, 252, 0.82)),
    repeating-linear-gradient(90deg, rgba(var(--ink-rgb), 0.035) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.clock-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.clock-hero h1 {
  max-width: 38rem;
  margin-bottom: 0.85rem;
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
  line-height: 0.96;
}

.clock-hero-lead {
  max-width: 38rem;
  margin-bottom: 0.9rem;
  color: #243849;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  font-weight: 780;
  line-height: 1.35;
}

.clock-hero-text {
  max-width: 43rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
}

.clock-hero-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(45, 226, 230, 0.18), transparent 34%);
  padding: clamp(0.8rem, 2vw, 1.4rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.clock-hero-visual::before {
  position: absolute;
  inset: 1rem;
  z-index: 0;
  border: 1px solid rgba(0, 179, 136, 0.16);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.clock-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1600 / 659;
  object-fit: contain;
}

.clock-hero-visual figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.28rem;
  max-width: 22rem;
  margin: 0.2rem 0 0 auto;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem;
  box-shadow: 0 14px 34px rgba(var(--ink-rgb), 0.1);
}

.clock-hero-visual figcaption span,
.clock-partner-strip > span,
.clock-card-body > span,
.clock-proof span,
.clock-process-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.clock-hero-visual figcaption strong {
  line-height: 1.18;
}

.clock-partner-strip {
  display: grid;
  gap: 0.62rem;
  max-width: 36rem;
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.82rem;
  box-shadow: var(--shadow-soft);
}

.clock-partner-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.clock-partner-strip img {
  width: min(10.5rem, 42vw);
  max-height: 3.4rem;
  object-fit: contain;
}

.clock-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.clock-proof article {
  min-height: 10.2rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 1.05rem;
}

.clock-proof strong {
  display: block;
  margin: 0.62rem 0 0.42rem;
  font-size: 1.08rem;
  line-height: 1.15;
}

.clock-proof p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.clock-catalog-section {
  padding-top: 5.2rem;
}

.clock-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.2rem 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.35rem;
  width: fit-content;
  max-width: 100%;
  box-shadow: var(--shadow-soft);
}

.clock-filterbar button {
  min-height: 2.35rem;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: #40505e;
  padding: 0.48rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.clock-filterbar button:hover,
.clock-filterbar button:focus-visible,
.clock-filterbar button.is-active {
  background: var(--button-gradient);
  color: #fff;
  box-shadow: var(--button-shadow);
  transform: translateY(-1px);
}

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

.clock-card {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.clock-card:hover,
.clock-card:focus-within {
  border-color: rgba(0, 179, 136, 0.34);
  box-shadow: 0 20px 48px rgba(var(--ink-rgb), 0.13);
  transform: translateY(-2px);
}

.clock-card.is-hidden {
  display: none;
}

.clock-card.is-featured {
  grid-column: span 2;
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1fr);
}

.clock-card-media {
  display: grid;
  place-items: center;
  min-height: 16rem;
  background:
    linear-gradient(180deg, #f7fbfc, #edf5f7),
    radial-gradient(circle at 50% 20%, rgba(45, 226, 230, 0.22), transparent 35%);
  padding: 1rem;
}

.clock-card-media img {
  width: min(100%, 19rem);
  aspect-ratio: 1;
  object-fit: contain;
}

.clock-card-body {
  display: flex;
  min-width: 0;
  min-height: 20rem;
  flex-direction: column;
  padding: 1.05rem;
}

.clock-card-body h3 {
  margin: 0.75rem 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.14;
}

.clock-card-body p {
  color: var(--muted);
  font-size: 0.94rem;
}

.clock-card-body ul {
  display: grid;
  gap: 0.42rem;
  margin: 0.15rem 0 1rem;
  padding-left: 1.08rem;
  color: #41515c;
  font-size: 0.9rem;
}

.clock-card-body a,
.clock-card-body > span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  margin-top: auto;
  border: 1px solid rgba(31, 111, 178, 0.22);
  border-radius: var(--radius);
  color: var(--button);
  font-weight: 820;
  text-decoration: none;
}

.clock-card-body a:hover,
.clock-card-body a:focus-visible {
  background: rgba(31, 111, 178, 0.08);
  color: var(--button-hover);
}

.clock-compare-section {
  width: 100%;
  margin-top: 5.2rem;
  padding: 4.5rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.clock-compare-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.52fr);
  gap: 1.5rem;
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto 1.35rem;
}

.clock-compare-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -0.6rem;
  color: var(--aqua);
}

.clock-compare-heading h2 {
  margin-bottom: 0;
  font-size: 2.25rem;
  line-height: 1.05;
}

.clock-compare-heading p:not(.section-kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.clock-table-wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.clock-table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
}

.clock-table th,
.clock-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
}

.clock-table th {
  color: var(--aqua);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.clock-table td {
  color: rgba(255, 255, 255, 0.82);
}

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

.clock-process {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  width: min(100% - 2rem, var(--max));
  margin: 5rem auto 0;
}

.clock-process h2 {
  margin-bottom: 0.8rem;
  font-size: 2.25rem;
  line-height: 1.05;
}

.clock-process p:not(.section-kicker) {
  color: var(--muted);
}

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

.clock-process-grid article {
  min-height: 12rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.clock-process-grid strong {
  display: block;
  margin: 0.8rem 0 0.45rem;
  font-size: 1.1rem;
}

.clock-process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.wfm-login-page {
  min-height: 100vh;
  background: #f6f8fb;
  color: #0f172a;
}

.wfm-login-page::before {
  display: none;
}

.wfm-login-page button,
.wfm-login-page input {
  font: inherit;
}

.wfm-login {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(20rem, 0.92fr) minmax(26.25rem, 1.08fr);
}

.wfm-login-brand {
  display: grid;
  align-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(45, 226, 230, 0.05)),
    #102136;
  color: #fff;
  padding: clamp(1.4rem, 3vw, 2.15rem);
}

.wfm-login-logo-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  justify-items: center;
  width: min(33.75rem, 100%);
  min-height: 8.5rem;
  overflow: hidden;
  border: 1px solid rgba(45, 226, 230, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(45, 226, 230, 0.05)),
    linear-gradient(90deg, rgba(14, 143, 115, 0.18), transparent 44%, rgba(28, 154, 165, 0.16)),
    #0b1c30;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.2);
}

.wfm-login-logo-card::after {
  position: absolute;
  inset: 0.65rem 0.75rem auto;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  content: "";
}

.wfm-login-logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 30.75rem;
  max-height: 6.5rem;
  object-fit: contain;
}

.wfm-login-copy {
  max-width: 32.5rem;
}

.wfm-login-copy p,
.wfm-login-copy h1,
.wfm-login-copy span,
.wfm-security-badge strong,
.wfm-card-header p,
.wfm-card-header h2,
.wfm-login-form label > span,
.wfm-message,
.wfm-demo-only {
  margin: 0;
}

.wfm-login-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wfm-login-copy h1 {
  max-width: 12ch;
  margin-top: 0.65rem;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  line-height: 0.98;
}

.wfm-login-copy span {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
}

.wfm-security-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  padding: 0.63rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.wfm-security-badge span {
  display: inline-grid;
  place-items: center;
  min-width: 1.75rem;
  min-height: 1.75rem;
  border-radius: var(--radius);
  background: rgba(45, 226, 230, 0.1);
  color: var(--aqua);
  font-size: 0.72rem;
}

.wfm-login-panel {
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 248, 251, 0.95)),
    repeating-linear-gradient(90deg, rgba(16, 35, 59, 0.035) 0 1px, transparent 1px 96px),
    #f6f8fb;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.wfm-login-back {
  justify-self: end;
  align-self: start;
  margin-bottom: 1rem;
  border: 1px solid #d8e1ed;
  border-radius: 999px;
  background: #fff;
  color: #10233b;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 35, 59, 0.08);
}

.wfm-login-back:hover,
.wfm-login-back:focus-visible {
  color: #1e4ed8;
  transform: translateY(-1px);
}

.wfm-login-card {
  width: min(30rem, 100%);
  justify-self: center;
  border: 1px solid #d8e1ed;
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  box-shadow: 0 16px 42px rgba(16, 35, 59, 0.1);
}

.wfm-card-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.82rem;
  margin-bottom: 1.38rem;
}

.wfm-lock {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(30, 78, 216, 0.09);
  color: #1e4ed8;
  font-weight: 900;
}

.wfm-card-header p {
  color: #68758a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wfm-card-header h2 {
  margin-top: 0.32rem;
  color: #0f172a;
  font-size: 1.55rem;
  line-height: 1.15;
}

.wfm-login-form {
  display: grid;
  gap: 0.88rem;
}

.wfm-login-form label {
  display: grid;
  gap: 0.45rem;
}

.wfm-login-form label > span {
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 900;
}

.wfm-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 3rem;
  gap: 0.62rem;
  border: 1px solid #d8e1ed;
  border-radius: var(--radius);
  background: #f6f8fb;
  color: #68758a;
  padding: 0 0.75rem;
}

.wfm-input:focus-within {
  border-color: #1e4ed8;
  box-shadow: 0 0 0 3px rgba(30, 78, 216, 0.11);
}

.wfm-input input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: #0f172a;
  outline: 0;
}

.wfm-ghost {
  display: grid;
  width: 2.12rem;
  height: 2.12rem;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #68758a;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.wfm-ghost:hover,
.wfm-ghost:focus-visible {
  background: rgba(16, 35, 59, 0.07);
  color: #10233b;
}

.wfm-demo-account {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.wfm-demo-account div {
  display: grid;
  gap: 0.25rem;
  border: 1px solid #d8e1ed;
  border-radius: var(--radius);
  background: #fff;
  padding: 0.62rem 0.75rem;
}

.wfm-demo-account span {
  color: #68758a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wfm-demo-account strong {
  min-width: 0;
  color: #0f172a;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.wfm-demo-only {
  border: 1px solid rgba(14, 143, 115, 0.18);
  border-radius: var(--radius);
  background: rgba(14, 143, 115, 0.08);
  color: #0f6b59;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.wfm-message {
  display: none;
  border-radius: var(--radius);
  padding: 0.62rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.wfm-message.show {
  display: block;
}

.wfm-message.success {
  background: rgba(14, 143, 115, 0.09);
  color: #0f6b59;
}

.wfm-message.error {
  background: rgba(180, 35, 24, 0.08);
  color: #9f1f17;
}

.wfm-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  gap: 0.55rem;
  border: 1px solid #1e4ed8;
  border-radius: var(--radius);
  background: #1e4ed8;
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.wfm-submit:hover,
.wfm-submit:focus-visible {
  background: #1b45bd;
  box-shadow: 0 12px 28px rgba(30, 78, 216, 0.18);
  transform: translateY(-1px);
}

.cloud-login-page {
  background: #eef5f8;
}

.cloud-login-page::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 245, 248, 0.92)),
    linear-gradient(120deg, rgba(45, 226, 230, 0.1), transparent 42%),
    linear-gradient(135deg, rgba(7, 71, 166, 0.08), rgba(0, 179, 136, 0.08)),
    repeating-linear-gradient(90deg, rgba(var(--ink-rgb), 0.035) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(var(--ink-rgb), 0.028) 0 1px, transparent 1px 92px);
}

.cloud-login-main {
  padding-top: var(--header-h);
}

.cloud-login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  width: min(100% - 2rem, var(--max));
  min-height: calc(100svh - var(--header-h));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}

.cloud-login-copy h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.94;
}

.cloud-login-lead {
  max-width: 42rem;
  color: var(--button-hover);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 720;
  line-height: 1.35;
}

.cloud-login-copy > p:not(.eyebrow, .cloud-login-lead) {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.cloud-demo-banner {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  max-width: 42rem;
  margin: 1.45rem 0;
  border: 1px solid rgba(7, 71, 166, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
}

.cloud-demo-banner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0747a6, #00b388);
  color: #fff;
  padding: 0.42rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 820;
}

.cloud-demo-banner strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.35;
}

.cloud-progress-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 45rem;
}

.cloud-progress-list div,
.cloud-preview-grid article {
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.cloud-progress-list span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 820;
}

.cloud-progress-list strong {
  display: block;
  margin: 0.38rem 0 0.3rem;
  color: var(--ink);
  line-height: 1.1;
}

.cloud-progress-list p,
.cloud-preview-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cloud-login-card {
  align-self: center;
  border: 1px solid rgba(45, 226, 230, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 38, 63, 0.94), rgba(8, 61, 82, 0.96)),
    linear-gradient(135deg, rgba(7, 71, 166, 0.65), rgba(0, 179, 136, 0.5));
  color: #fff;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  box-shadow: 0 26px 70px rgba(18, 38, 63, 0.26);
}

.cloud-login-card-header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cloud-login-card-header img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.32rem;
}

.cloud-login-card-header span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.cloud-login-card-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.cloud-login-form {
  display: grid;
  gap: 0.7rem;
}

.cloud-login-form label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.cloud-login-form input {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  padding: 0.85rem 0.95rem;
  outline: none;
}

.cloud-login-form input:focus {
  border-color: rgba(45, 226, 230, 0.82);
  box-shadow: 0 0 0 3px rgba(45, 226, 230, 0.16);
}

.cloud-login-submit {
  min-height: 3.2rem;
  margin-top: 0.45rem;
  border: 1px solid rgba(45, 226, 230, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #00b388 0%, #2de2e6 100%);
  color: var(--ink);
  font-weight: 820;
  cursor: default;
  box-shadow: 0 14px 34px rgba(45, 226, 230, 0.2);
}

.cloud-demo-note {
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.cloud-login-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.cloud-login-links span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.48rem 0.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 760;
  text-align: center;
}

.cloud-dashboard-preview {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 5rem;
  border-top: 1px solid rgba(var(--ink-rgb), 0.12);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.cloud-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.cloud-preview-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.cloud-preview-heading p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

.cloud-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.cloud-preview-grid span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--button-hover);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 820;
  line-height: 0.9;
}

.cloud-preview-grid h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

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

  .wfm-login-brand {
    min-height: 22.5rem;
  }

  .wfm-login-copy h1 {
    max-width: 16ch;
  }

  .feature-grid,
  .catalog-grid,
  .software-visual-grid,
  .software-capability-grid,
  .software-flow-line,
  .resource-list,
  .matrix-grid,
  .strategy-grid,
  .service-grid,
  .clock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cloud-login-shell,
  .cloud-preview-heading {
    grid-template-columns: 1fr;
  }

  .cloud-login-copy h1 {
    max-width: 16ch;
  }

  .brand-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .software-hero,
  .platform-context-band {
    grid-template-columns: 1fr;
  }

  .software-hero {
    min-height: auto;
  }

  .software-flow-line article:nth-child(2)::after {
    display: none;
  }

  .ticket-hero,
  .ticket-form-section {
    grid-template-columns: 1fr;
  }

  .ticket-hero {
    min-height: auto;
  }

  .ticket-hero-panel {
    align-self: stretch;
    max-width: 44rem;
  }

  .ticket-form-copy {
    position: static;
  }

  .integration-console {
    max-width: 46rem;
  }

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

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

@media (max-width: 1120px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand img,
  .brand-home .brand img {
    width: clamp(8rem, 28vw, 9rem);
  }

  .nav-toggle {
    display: block;
    order: 3;
    margin-left: 0.5rem;
  }

  .site-nav {
    order: 4;
    position: fixed;
    top: var(--header-h);
    right: 1rem;
    left: 1rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.28rem;
    max-height: calc(100vh - var(--header-h) - 1rem);
    margin-left: 0;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .language-switch,
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-panel {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    margin-top: 0.22rem;
    border-radius: 12px;
    background: rgba(246, 249, 252, 0.94);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

  .language-switch {
    justify-content: stretch;
  }

  .language-switch a {
    flex: 1;
  }

  .site-nav .nav-action,
  .site-nav .nav-ticket {
    margin-left: 0;
  }

}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }

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

  .site-header {
    padding-inline: 1rem;
  }

  .brand img,
  .brand-home .brand img {
    width: clamp(8rem, 28vw, 9rem);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 1rem;
    left: 1rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.28rem;
    margin-left: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .language-switch {
    width: 100%;
  }

  .language-switch {
    justify-content: stretch;
  }

  .language-switch a {
    flex: 1;
  }

  .site-nav .nav-action,
  .site-nav .nav-ticket {
    margin-left: 0;
  }

  .cloud-login-shell {
    min-height: auto;
    padding-block: 2.4rem;
  }

  .cloud-progress-list,
  .cloud-preview-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.25rem;
  }

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

  .hero-lead {
    font-size: 1.12rem;
  }

  .page-hero,
  .clock-hero,
  .ticket-hero,
  .legal-layout,
  .clock-compare-heading,
  .clock-process,
  .brand-quote,
  .client-heading,
  .home-flow-heading,
  .partner-lockup,
  .tool-layout,
  .section-heading,
  .data-motion-section,
  .payroll-example-inner,
  .contact-form-section,
  .ticket-form-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-form-copy,
  .ticket-form-copy,
  .legal-toc {
    position: static;
  }

  .operations-board {
    min-height: auto;
  }

  .signal-strip,
  .workflow-track,
  .detail-steps,
  .ecosystem-services,
  .industry-grid,
  .partner-grid,
  .partner-logos,
  .technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .data-motion-copy h2 {
    max-width: 18ch;
  }

  .payroll-example-copy h2 {
    max-width: 18ch;
  }

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

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

  .payroll-flow-steps article:nth-child(2)::after {
    display: none;
  }

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

  .console-flow i {
    display: none;
  }

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

  .home-flow-track article:nth-child(2)::after {
    display: none;
  }

  .clock-card.is-featured {
    grid-template-columns: 1fr;
  }

  .workflow-section {
    margin-top: 4rem;
  }

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

  .footer-partner-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .wfm-login-brand,
  .wfm-login-panel {
    padding: 1.12rem;
  }

  .wfm-login-logo-card {
    min-height: 7.25rem;
    padding: 1rem;
  }

  .wfm-login-copy h1 {
    font-size: 2.45rem;
  }

  .wfm-login-card {
    padding: 1.25rem;
  }

  .wfm-card-header,
  .wfm-demo-account {
    grid-template-columns: 1fr;
  }

  .brand img,
  .brand-home .brand img {
    width: 8.4rem;
  }

  .hero {
    width: min(100% - 1rem, var(--max));
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
  }

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

  .brand-hero {
    width: min(100% - 1rem, var(--max));
    gap: 1.4rem;
    padding-top: 1.3rem;
  }

  .brand-hero::before {
    inset: 0 calc((100% - 100vw) / 2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(246, 249, 252, 0.82) 100%),
      url("../assets/hero-flow-motion-bg.png") 58% center / cover no-repeat;
    box-shadow: inset 0 -6rem 5rem rgba(246, 249, 252, 0.94);
  }

  .brand-hero::after {
    inset: 0 calc((100% - 100vw) / 2);
    background: linear-gradient(180deg, transparent, rgba(246, 249, 252, 0.88));
  }

  .brand-hero h1 {
    font-size: 2.45rem;
  }

  .brand-hero-lead {
    font-size: 1.12rem;
  }

  .cloud-login-shell,
  .cloud-dashboard-preview {
    width: min(100% - 1rem, var(--max));
  }

  .cloud-login-copy h1 {
    font-size: 2.7rem;
  }

  .cloud-demo-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cloud-login-card {
    padding: 1rem;
  }

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

  .ticket-hero {
    width: min(100% - 1rem, var(--max));
    gap: 1.2rem;
    padding-top: 1.45rem;
    padding-bottom: 2rem;
  }

  .ticket-hero::before {
    inset: 0 calc((100% - 100vw) / 2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.91) 46%, rgba(246, 249, 252, 0.84) 100%),
      url("../assets/hero-flow-motion-bg.png") 58% center / cover no-repeat;
    box-shadow: inset 0 -6rem 5rem rgba(246, 249, 252, 0.94);
  }

  .ticket-hero h1 {
    font-size: 2.55rem;
  }

  .ticket-hero-lead {
    font-size: 1.08rem;
  }

  .ticket-hero-panel {
    padding: 0.95rem;
  }

  .legal-hero,
  .legal-layout,
  .legal-cards {
    width: min(100% - 1rem, var(--max));
  }

  .legal-cards {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding-top: 2rem;
  }

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

  .legal-content section {
    padding: 1rem;
  }

  .integration-console {
    display: grid;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .console-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.22rem;
    padding-bottom: 0.75rem;
  }

  .console-core {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0.85rem;
  }

  .core-ring {
    width: 5.6rem;
  }

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

  .hero-proof {
    display: flex;
  }

  .hero-summary {
    display: none;
  }

  .shift-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .shift-heading {
    display: none;
  }

  .board-metrics,
  .estimator-grid,
  .estimator-results,
  .signal-strip,
  .brand-strip,
  .home-flow-track,
  .software-visual-grid,
  .software-capability-grid,
  .software-flow-line,
  .clock-proof,
  .clock-grid,
  .clock-process-grid,
  .feature-grid,
  .catalog-grid,
  .resource-list,
  .matrix-grid,
  .strategy-grid,
  .ecosystem-services,
  .platform-row,
  .technology-grid,
  .partner-logos,
  .service-grid,
  .workflow-track,
  .detail-steps,
  .industry-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .brand-section,
  .tool-section {
    width: min(100% - 1rem, var(--max));
    padding-top: 3.4rem;
  }

  .home-flow-section {
    width: min(100% - 1rem, var(--max));
    padding: 1rem;
  }

  .integration-image-grid {
    grid-template-columns: 1fr;
  }

  .integration-image-card,
  .integration-image-card img {
    min-height: 16rem;
  }

  .data-motion-section {
    width: min(100% - 1rem, var(--max));
    margin-top: 3.4rem;
    padding: 1rem;
  }

  .payroll-example-section {
    margin-top: 3.4rem;
    padding: 3rem 0.5rem;
  }

  .payroll-example-copy h2 {
    max-width: none;
    font-size: 1.72rem;
  }

  .payroll-logo-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .payroll-logo-row img:last-child {
    justify-self: start;
  }

  .payroll-flow-steps {
    grid-template-columns: 1fr;
  }

  .payroll-flow-steps article {
    min-height: auto;
  }

  .payroll-flow-steps article::after {
    display: none;
  }

  .payroll-csv-preview {
    overflow-x: auto;
  }

  .data-motion-copy h2 {
    max-width: none;
    font-size: 1.72rem;
  }

  .data-motion-visual {
    min-height: auto;
    padding: 0.8rem;
  }

  .motion-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .motion-map {
    min-height: 18rem;
  }

  .motion-node {
    min-width: 3.75rem;
    min-height: 2.1rem;
    padding-inline: 0.55rem;
    font-size: 0.72rem;
  }

  .motion-node-core {
    min-width: 5.45rem;
  }

  .motion-metrics {
    grid-template-columns: 1fr;
  }

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

  .home-flow-track article::after {
    display: none;
  }

  .ecosystem-section {
    margin-top: 3.6rem;
    padding-inline: 0.5rem;
  }

  .ecosystem-shell {
    padding: 0.75rem;
  }

  .ecosystem-lines {
    display: none;
  }

  .page-hero {
    width: min(100% - 1rem, var(--max));
    min-height: auto;
    padding-top: 1.25rem;
  }

  .software-hero,
  .software-visual-gallery,
  .software-capability-section,
  .platform-context-band {
    width: min(100% - 1rem, var(--max));
  }

  .software-hero {
    gap: 1.15rem;
    padding-top: 1.35rem;
  }

  .software-hero::before,
  .software-hero::after {
    inset: 0 calc((100% - 100vw) / 2);
  }

  .software-hero h1 {
    font-size: 2.2rem;
  }

  .software-hero-visual img {
    border-radius: 18px;
  }

  .software-hero-visual figcaption {
    max-width: none;
    border-radius: 14px;
  }

  .software-workflow-section {
    margin-top: 3.4rem;
    padding: 3rem 0.5rem;
  }

  .software-flow-line article {
    min-height: auto;
  }

  .software-flow-line article::after {
    display: none;
  }

  .platform-context-band {
    margin-top: 3rem;
    border-radius: 18px;
  }

  .platform-chip-row {
    justify-content: flex-start;
  }

  .clock-hero {
    width: min(100% - 1rem, var(--max));
    min-height: auto;
    padding-top: 1.25rem;
  }

  .clock-hero::before {
    inset: 0 calc((100% - 100vw) / 2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.91) 48%, rgba(246, 249, 252, 0.86) 100%),
      radial-gradient(circle at 72% 18%, rgba(45, 226, 230, 0.18), transparent 34%),
      url("../assets/time-clocks/hero-time-clocks.png") right -7rem top 4.2rem / 34rem auto no-repeat,
      url("../assets/hero-flow-motion-bg.png") 58% center / cover no-repeat;
    box-shadow: inset 0 -6rem 5rem rgba(246, 249, 252, 0.96);
  }

  .clock-hero::after {
    inset: 0 calc((100% - 100vw) / 2);
    background: linear-gradient(180deg, transparent, rgba(246, 249, 252, 0.9));
  }

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

  .clock-hero h1 {
    font-size: 2.2rem;
  }

  .page-side-panel {
    display: none;
  }

  .clock-hero-visual figcaption {
    max-width: none;
    margin-right: 0;
  }

  .clock-card.is-featured {
    grid-column: auto;
  }

  .clock-card-body,
  .clock-card-media {
    min-height: auto;
  }

  .clock-filterbar {
    width: 100%;
  }

  .clock-filterbar button {
    flex: 1 1 7rem;
  }

  .catalog-card {
    min-height: auto;
  }

  .section-heading h2,
  .detail-band h2,
  .software-workflow-section h2,
  .client-heading h2,
  .home-flow-heading h2,
  .contact-form-copy h2,
  .ticket-form-copy h2,
  .brand-quote h2,
  .contact-section h2 {
    font-size: 1.72rem;
  }

  .technology-card,
  .strategy-grid article,
  .service-grid article {
    min-height: auto;
  }

  .partner-band,
  .client-section,
  .brand-quote,
  .clock-process {
    width: min(100% - 1rem, var(--max));
  }

  .client-section {
    padding: 1rem;
  }

  .client-marquee {
    mask-image: none;
  }

  .client-card {
    flex-basis: 11rem;
    min-height: 6rem;
  }

  .workflow-section,
  .detail-band,
  .clock-compare-section {
    padding-inline: 0.5rem;
  }

  .contact-form-section,
  .ticket-form-section,
  .contact-section {
    width: min(100% - 1rem, var(--max));
  }

  .contact-form-section,
  .ticket-form-section,
  .contact-section {
    padding: 1.2rem;
  }

  .form-grid,
  .ticket-form-grid,
  .ticket-datetime-row {
    grid-template-columns: 1fr;
  }

  .form-submit,
  .ticket-submit {
    width: 100%;
    justify-self: stretch;
  }

  .footer-main,
  .footer-integrations,
  .footer-bottom {
    width: min(100% - 1rem, var(--max));
  }

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

  .footer-legal {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 0.5rem;
    bottom: 0.5rem;
    width: calc(100vw - 1rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 2.2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: min(100%, 17rem);
  }

  .footer-contact .footer-cta {
    width: 100%;
  }

  .footer-partner-logos {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-partner-logos img {
    width: 100%;
  }
}

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

  .client-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    animation: none !important;
  }

  .console-flow i::after,
  .home-flow-track article::after,
  .data-stream::after,
  .data-motion-orbit {
    animation: none !important;
  }
}
