@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin-ext-var.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --white: #ffffff;
  --navy: #0f172a;
  --blue: #1e3a8a;
  --accent: #3b82f6;
  --light: #f8fafc;
  --border: #e2e8f0;
  --muted: #64748b;
  --soft-blue: #eff6ff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --shadow-hover: 0 22px 52px rgba(15, 23, 42, 0.11);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.section {
  padding: 82px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1200px, calc(100% - 40px));
  margin: 8px auto 0;
  padding: 7px 10px 7px 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}

.site-header.compact {
  position: relative;
}

.site-header.is-scrolled {
  border-color: rgba(203, 213, 225, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-wordmark {
  display: block;
  width: 148px;
  height: auto;
}

.brand-lockup {
  display: grid;
  gap: 0;
}

.brand-lockup > span {
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #dbeafe, 0 8px 18px rgba(15, 23, 42, 0.06);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  display: block;
}

.brand-mark img {
  display: block;
  width: 27px;
  height: 27px;
}

.brand-mark svg {
  fill: currentColor;
}

.brand-name {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 7px 8px;
  border-radius: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a:hover {
  background: var(--light);
  color: var(--navy);
}

.site-nav a[aria-current="page"] {
  background: var(--light);
  color: var(--blue);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--navy);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--blue);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: auto;
  padding-top: 58px;
  padding-bottom: 44px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 88%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 138, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 138, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  gap: 32px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-accent,
.brand-gradient {
  display: inline-block;
  color: var(--blue);
  background: linear-gradient(90deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

p {
  color: #475569;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.48;
}

.hero-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 920px;
  margin-bottom: 16px;
}

.hero-outcomes strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(239, 246, 255, 0.9);
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.04);
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, box-shadow 220ms ease;
}

.hero-trust strong {
  color: #1e293b;
  background: rgba(255, 255, 255, 0.9);
}

.hero-trust svg {
  color: var(--accent);
}

.hero-proof-line {
  position: relative;
  margin: 0 0 18px;
  padding-left: 18px;
  color: #334155;
  font-size: 15px;
  font-weight: 800;
}

.hero-proof-line::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.hero-outcomes strong:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px rgba(30, 58, 138, 0.09);
}

.hero-outcomes svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.25);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(30, 58, 138, 0.22);
}

.btn-primary:hover {
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #bfdbfe;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-proof {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  perspective: 1200px;
}

.dashboard-shell,
.office-animation-shell,
.service-card,
.legal-card,
.process-grid article,
.benefit-grid div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
  animation: dashboard-enter 800ms var(--ease-premium) both;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent), #94a3b8);
}

.dashboard-topbar,
.dashboard-heading,
.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topbar {
  height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
}

.live-status i,
.dashboard-footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.dashboard-heading {
  padding: 16px 22px 10px;
}

.mini-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-heading strong {
  display: block;
  font-size: 17px;
}

.request-id {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  background: var(--light);
  font-size: 11px;
  font-weight: 800;
}

.inquiry-card {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 22px 10px;
  padding: 10px 12px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #f8fbff;
}

.dashboard-progress {
  height: 6px;
  margin: 0 22px 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.dashboard-progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transition: width 520ms var(--ease-premium);
}

.inquiry-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.inquiry-card div {
  min-width: 0;
  flex: 1;
}

.inquiry-card strong,
.inquiry-card div span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inquiry-card strong {
  font-size: 12px;
}

.inquiry-card div span,
.inquiry-time {
  color: var(--muted);
  font-size: 10px;
}

.automation-flow {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 0 22px 12px;
}

.automation-flow::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 40px;
  left: 40px;
  width: 1px;
  background: #dbe3ee;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px 1fr 10px;
  gap: 10px;
  align-items: center;
  min-height: 32px;
  padding: 3px 9px 3px 0;
  border: 1px solid transparent;
  border-radius: 8px;
  opacity: 0.56;
  transition: opacity 400ms ease, transform 400ms var(--ease-premium), background 400ms ease, border-color 400ms ease;
}

.flow-step.active {
  transform: translateX(4px);
  border-color: #bfdbfe;
  background: var(--soft-blue);
  opacity: 1;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.08);
}

.flow-step.done {
  opacity: 0.86;
}

.flow-step.done .flow-icon {
  font-size: 0;
}

.flow-step.done .flow-icon::before {
  content: "";
  width: 6px;
  height: 11px;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: #475569;
  background: var(--white);
  font-size: 8px;
  font-weight: 800;
}

.flow-step.active .flow-icon,
.flow-step.done .flow-icon {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.flow-step strong,
.flow-step small {
  display: block;
}

.flow-step strong {
  font-size: 10px;
}

.flow-step small {
  margin-top: 0;
  color: var(--muted);
  font-size: 7.7px;
}

.flow-step > i {
  width: 7px;
  height: 7px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  background: var(--white);
}

.flow-step.active > i {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
}

.flow-step.done > i {
  border-color: #16a34a;
  background: #16a34a;
}

.dashboard-footer {
  min-height: 38px;
  padding: 0 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: var(--light);
  font-size: 9px;
}

.dashboard-footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dashboard-footer strong {
  color: var(--blue);
}

@keyframes dashboard-enter {
  from { opacity: 0; transform: translateY(16px) rotateX(2deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.office-animation-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  background:
    radial-gradient(circle at 90% 12%, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
  animation: dashboard-enter 800ms var(--ease-premium) both;
}

.office-animation-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent), #94a3b8);
}

.office-animation-shell::after {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(30, 58, 138, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 138, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 78%);
}

.office-demo-topbar,
.office-demo-heading,
.office-demo-result {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.office-demo-topbar {
  height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.92);
}

.office-demo-heading {
  padding: 16px 22px 8px;
}

.office-demo-heading strong {
  display: block;
  font-size: 17px;
}

.office-status-pill {
  padding: 6px 9px;
  border: 1px solid #dbeafe;
  border-radius: 6px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.office-sort-stage {
  position: relative;
  z-index: 1;
  height: 378px;
  margin: 0 18px 0;
  overflow: hidden;
}

.office-flow-line {
  position: absolute;
  right: 74px;
  bottom: 76px;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.34), transparent);
  transform: rotate(-14deg);
  transform-origin: right center;
  opacity: 0;
  animation: office-line 9.6s var(--ease-premium) infinite;
}

.office-problem-card {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 8px;
  gap: 10px;
  align-items: center;
  width: 224px;
  min-height: 72px;
  padding: 11px 12px;
  border: 1px solid rgba(191, 219, 254, 0.82);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
  transform: translate(var(--from-x), var(--from-y)) scale(0.96);
  opacity: 0;
  animation: office-sort-card 9.6s var(--ease-premium) infinite;
  animation-delay: var(--delay);
}

.office-card-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #dbeafe;
  border-radius: 9px;
  color: var(--blue);
  background: var(--soft-blue);
}

.office-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.office-problem-card strong,
.office-problem-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.office-problem-card strong {
  font-size: 12px;
}

.office-problem-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.office-problem-card > i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  animation: office-dot 9.6s ease infinite;
  animation-delay: var(--delay);
}

.card-call {
  --from-x: 18px;
  --from-y: 16px;
  --to-x: 20px;
  --to-y: 218px;
  --delay: 0s;
}

.card-inbox {
  --from-x: 288px;
  --from-y: 18px;
  --to-x: 205px;
  --to-y: 218px;
  --delay: 0.22s;
}

.card-callback {
  --from-x: 56px;
  --from-y: 118px;
  --to-x: 390px;
  --to-y: 218px;
  --delay: 0.44s;
}

.card-calendar {
  --from-x: 326px;
  --from-y: 126px;
  --to-x: 205px;
  --to-y: 270px;
  --delay: 0.66s;
}

.card-request {
  --from-x: 168px;
  --from-y: 198px;
  --to-x: 20px;
  --to-y: 270px;
  --delay: 0.88s;
}

.office-structure-board {
  position: absolute;
  z-index: 2;
  right: 4px;
  bottom: 14px;
  left: 4px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.office-lane {
  position: relative;
  min-height: 94px;
  padding: 13px 12px;
  border: 1px dashed #bfdbfe;
  border-radius: 12px;
  color: var(--blue);
  background: rgba(239, 246, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
}

.office-lane span {
  position: relative;
  z-index: 1;
}

.office-lane b {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  animation: office-lane-dot 9.6s ease infinite;
}

.lane-capture b {
  animation-delay: 5.25s;
}

.lane-prepare b {
  animation-delay: 5.65s;
}

.lane-forward b {
  animation-delay: 6.05s;
}

.office-demo-result {
  min-height: 40px;
  padding: 0 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: rgba(248, 250, 252, 0.92);
  font-size: 10px;
}

.office-demo-result span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.office-demo-result i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.office-demo-result strong {
  color: var(--blue);
  animation: office-result 9.6s ease infinite;
}

@keyframes office-sort-card {
  0%, 7% {
    opacity: 0;
    transform: translate(var(--from-x), calc(var(--from-y) + 14px)) scale(0.96);
  }
  16%, 43% {
    opacity: 1;
    transform: translate(var(--from-x), var(--from-y)) scale(1);
  }
  62%, 86% {
    opacity: 0.92;
    transform: translate(var(--to-x), var(--to-y)) scale(0.72);
    box-shadow: 0 10px 28px rgba(30, 58, 138, 0.12);
  }
  96%, 100% {
    opacity: 0;
    transform: translate(var(--to-x), var(--to-y)) scale(0.72);
  }
}

@keyframes office-dot {
  0%, 54% {
    background: #cbd5e1;
    box-shadow: none;
  }
  62%, 88% {
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.14);
  }
  100% {
    background: #cbd5e1;
    box-shadow: none;
  }
}

@keyframes office-lane-dot {
  0%, 8%, 92%, 100% {
    background: #cbd5e1;
    box-shadow: none;
  }
  18%, 62% {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
  }
}

@keyframes office-line {
  0%, 42%, 95%, 100% {
    opacity: 0;
  }
  52%, 78% {
    opacity: 1;
  }
}

@keyframes office-result {
  0%, 58%, 100% {
    opacity: 0.65;
  }
  70%, 90% {
    opacity: 1;
  }
}

.office-step-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0 22px 12px;
}

.office-inbox-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
  animation: office-inbox-pulse 9.6s ease infinite;
}

.office-inbox-card strong,
.office-inbox-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.office-inbox-card strong {
  font-size: 13px;
}

.office-inbox-card small,
.office-inbox-time {
  color: var(--muted);
  font-size: 10px;
}

.office-stepper {
  position: relative;
  display: grid;
  gap: 5px;
}

.office-stepper::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 25px;
  left: 17px;
  width: 1px;
  background: #dbe3ee;
}

.office-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 9px;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 6px 10px 6px 0;
  border: 1px solid transparent;
  border-radius: 10px;
  opacity: 0.56;
  transform: translateX(0);
  animation: office-step-cycle 9.6s var(--ease-premium) infinite;
  animation-delay: var(--step-delay);
}

.office-step span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  color: #475569;
  background: var(--white);
  font-size: 9px;
  font-weight: 900;
}

.office-step strong,
.office-step small {
  display: block;
}

.office-step strong {
  font-size: 11.5px;
}

.office-step small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 9px;
}

.office-step i {
  width: 8px;
  height: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: var(--white);
  animation: office-step-dot 9.6s ease infinite;
  animation-delay: var(--step-delay);
}

.step-one { --step-delay: 0s; }
.step-two { --step-delay: 1.35s; }
.step-three { --step-delay: 2.7s; }
.step-four { --step-delay: 4.05s; }
.step-five { --step-delay: 5.4s; }

.office-mini-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
  animation: office-mini-result 9.6s ease infinite;
}

.office-mini-result span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.office-mini-result strong {
  color: var(--blue);
  font-size: 12px;
  white-space: nowrap;
}

@keyframes office-inbox-pulse {
  0%, 100% {
    border-color: #dbeafe;
    transform: translateY(0);
  }
  12%, 26% {
    border-color: #bfdbfe;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(30, 58, 138, 0.09);
  }
}

@keyframes office-step-cycle {
  0%, 9%, 29%, 100% {
    opacity: 0.56;
    transform: translateX(0);
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }
  12%, 23% {
    opacity: 1;
    transform: translateX(4px);
    border-color: #bfdbfe;
    background: var(--soft-blue);
    box-shadow: 0 8px 22px rgba(30, 58, 138, 0.08);
  }
  26%, 84% {
    opacity: 0.84;
  }
}

@keyframes office-step-dot {
  0%, 9%, 29%, 100% {
    border-color: #cbd5e1;
    background: var(--white);
    box-shadow: none;
  }
  12%, 84% {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
  }
}

@keyframes office-mini-result {
  0%, 62%, 100% {
    opacity: 0.72;
    transform: translateY(0);
  }
  72%, 88% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

.tool-strip {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.tool-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.tool-strip-label {
  flex: 0 0 auto;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tool-strip-marquee {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tool-strip-logos {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: logo-marquee 34s linear infinite;
  will-change: transform;
}

.tool-strip-marquee:hover .tool-strip-logos {
  animation-play-state: paused;
}

.tool-strip-logos span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 38px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.tool-strip-logos img {
  max-width: 30px;
  max-height: 24px;
  object-fit: contain;
}

.tool-strip-logos img[src*="sap.svg"] {
  max-width: 38px;
}

.tool-strip-logos img[src*="claude-product.svg"],
.tool-strip-logos img[src*="openai.svg"] {
  max-width: 32px;
}

.tool-strip-logos img[src*="power-automate.svg"] {
  max-width: 34px;
  max-height: 26px;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}

@media (prefers-reduced-motion: reduce) {
  .tool-strip-logos {
    animation: none;
  }
}

.why-assistone-section {
  padding: 86px 0;
  background: #020617;
}

.why-assistone {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
  align-items: center;
}

.why-assistone-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 590px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius);
  background: #0f172a;
}

.why-assistone-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.88));
  pointer-events: none;
}

.why-assistone-media img {
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 56% center;
}

.why-assistone-media figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 800;
}

.why-assistone .eyebrow {
  color: #94a3b8;
}

.why-assistone h2 {
  max-width: 660px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
}

.why-assistone-intro {
  max-width: 660px;
  margin-bottom: 28px;
  color: #cbd5e1;
  font-size: 16px;
}

.why-assistone-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-assistone-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 18px;
  align-items: start;
  color: var(--white);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.35;
}

.why-assistone-list li > div {
  display: grid;
  gap: 4px;
}

.why-assistone-list strong {
  font-size: 17px;
}

.why-assistone-list small {
  max-width: 660px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.why-assistone-list span {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.14);
}

.why-assistone-list span::before {
  content: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.problem-section {
  padding-top: 86px;
  background: linear-gradient(180deg, var(--white), var(--light));
}

.problem-heading {
  max-width: 820px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid #cbd5e1;
  list-style: none;
}

.problem-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 88px;
  padding: 22px 0;
  border-bottom: 1px solid #cbd5e1;
}

.problem-list span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.problem-list strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.metrics-section {
  padding-top: 76px;
  background: linear-gradient(180deg, var(--light), var(--white));
}

.compact-heading {
  margin-bottom: 30px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:last-child {
  font-size: 18px;
}

.savings-calculator {
  margin-top: 8px;
  padding: 34px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.12), transparent 36%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.calculator-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.calculator-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.calculator-copy p:last-child {
  margin-bottom: 0;
}

.calculator-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.calculator-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-controls label {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #334155;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.calculator-controls input[type="number"] {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.calculator-controls input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.calculator-controls input:focus {
  outline: 3px solid rgba(59, 130, 246, 0.22);
  border-color: var(--accent);
}

.range-value {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.range-value strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-card,
.package-recommendation {
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.primary-result {
  border-color: #bfdbfe;
  background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.calculator-results span,
.calculator-results small,
.package-recommendation span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calculator-results strong,
.package-recommendation strong {
  display: block;
  margin: 7px 0 4px;
  color: var(--blue);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
}

.package-recommendation {
  grid-column: 1 / -1;
  border-color: var(--accent);
  background: var(--navy);
}

.package-recommendation span,
.package-recommendation p {
  color: #cbd5e1;
}

.package-recommendation strong {
  color: var(--white);
  line-height: 1.12;
}

.package-recommendation p {
  margin-bottom: 18px;
  font-size: 14px;
}

.package-recommendation .btn {
  width: 100%;
}

.calculator-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.calculator-cta strong,
.calculator-cta span {
  display: block;
}

.calculator-cta strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 17px;
}

.calculator-cta span {
  color: var(--muted);
  font-size: 14px;
}

.calculator-cta .btn {
  flex: 0 0 auto;
}

.calculator-note {
  max-width: 920px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.automation-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.1), transparent 34%);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.automation-summary .section-heading {
  margin-bottom: 0;
}

.automation-summary h2 {
  max-width: 520px;
}

.automation-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.automation-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, box-shadow 220ms ease;
}

.automation-points span:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.automation-points svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--accent);
}

.relief-grid {
  display: grid;
  gap: 12px;
}

.relief-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  min-height: 102px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, box-shadow 220ms ease;
}

.relief-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.075);
}

.relief-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: var(--blue);
  background: var(--soft-blue);
}

.relief-icon svg {
  width: 19px;
  height: 19px;
}

.relief-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.relief-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: linear-gradient(145deg, var(--white) 70%, #f8fbff);
  transition: transform 280ms var(--ease-premium), border-color 280ms ease, box-shadow 280ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: var(--shadow-hover);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: var(--blue);
  background: var(--soft-blue);
  transition: transform 260ms var(--ease-premium), background 260ms ease;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
  background: #dbeafe;
}

.service-card h3 {
  margin-top: 22px;
}

.service-kicker {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-kicker + h3 {
  margin-top: 10px;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #334155;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag-list span {
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 13px;
  font-weight: 700;
}

.muted-section {
  background: var(--light);
}

.pricing-section {
  padding-top: 92px;
}

.homepage-workspace-section {
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.1), transparent 30%),
    linear-gradient(180deg, var(--white), var(--light));
}

.homepage-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(500px, 1.26fr);
  gap: 76px;
  align-items: center;
  padding: 42px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.13), transparent 38%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}

.homepage-workspace-copy .eyebrow {
  color: var(--blue);
}

.homepage-workspace-copy h2 {
  max-width: 500px;
  margin-bottom: 16px;
}

.homepage-workspace-copy > p {
  max-width: 620px;
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
}

.homepage-workspace-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.homepage-workspace-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}

.homepage-workspace-list span {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
}

.homepage-workspace-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.homepage-workspace-preview img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 16% top;
}

.before-after-section {
  background: var(--white);
}

.before-after-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.before-after-column {
  padding: 38px 42px;
}

.before-after-column + .before-after-column {
  border-left: 1px solid #bfdbfe;
  background: #f8fbff;
}

.before-after-column.is-before {
  background: #fffafa;
}

.before-after-label {
  display: block;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.before-after-column.is-before .before-after-label {
  color: #991b1b;
}

.before-after-column.is-after .before-after-label {
  color: var(--blue);
}

.before-after-column ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after-column li {
  position: relative;
  min-height: 38px;
  padding: 5px 0 0 50px;
  color: #334155;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.before-after-column li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-weight: 900;
}

.before-after-column.is-before li::before {
  content: "×";
  border: 1px solid #fecaca;
  color: #b91c1c;
  background: #fef2f2;
}

.before-after-column.is-after li::before {
  content: "✓";
  border: 1px solid #bbf7d0;
  color: #15803d;
  background: #f0fdf4;
}

.pricing-ai-note {
  margin-top: 16px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 20px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-premium);
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.pricing-card.is-recommended {
  border-color: var(--accent);
  box-shadow: 0 30px 70px rgba(30, 58, 138, 0.2);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: var(--blue);
  background: var(--soft-blue);
}

.pricing-icon svg {
  width: 20px;
  height: 20px;
}

.pricing-kicker {
  align-self: flex-start;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.pricing-result {
  min-height: 76px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.42;
}

.pricing-for {
  min-height: 90px;
  margin-bottom: 12px;
  font-size: 14px;
}

.pricing-service {
  min-height: 92px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #1e293b;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.price-stack {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #f8fbff;
  overflow: hidden;
}

.price-stack > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
}

.price-stack > div + div {
  border-top: 1px solid #dbeafe;
}

.price-stack strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
  white-space: nowrap;
}

.price-stack span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.price-primary {
  background: var(--white);
}

.price-primary strong {
  color: var(--blue);
  font-size: 25px;
}

.pricing-included {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 13px;
  line-height: 1.48;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.pricing-note {
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.pricing-workspace-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: -6px 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.pricing-workspace-link::after {
  content: "→";
  margin-left: 7px;
  transition: transform 180ms ease;
}

.pricing-workspace-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.pricing-workspace-link:hover::after {
  transform: translateX(3px);
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-tax-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.pricing-scope-note {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 16px 18px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.compact-process-section {
  padding-top: 76px;
}

.compact-process .section-heading {
  margin-bottom: 32px;
}

.integrations-section {
  background: var(--white);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.integration-grid span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light);
  color: #334155;
  font-weight: 800;
}

.integration-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: #cbd5e1;
}

.process-grid article {
  position: relative;
  z-index: 1;
  padding: 18px 16px;
  background: var(--white);
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.process-grid article:hover {
  border-color: #bfdbfe;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: var(--accent);
  background: var(--white);
  font-weight: 800;
}

.process-grid h3 {
  font-size: 17px;
}

.process-grid p {
  font-size: 13px;
  line-height: 1.5;
}

.process-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: #f8fbff;
}

.process-benefits span {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.process-benefits span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-grid div {
  padding: 20px;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.benefit-grid div:hover {
  border-color: #bfdbfe;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.benefit-grid strong {
  display: block;
  margin-bottom: 8px;
}

.benefit-grid span {
  color: var(--muted);
}

.why-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.why-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
}

.why-checklist li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 8px;
  transition: background 220ms ease, transform 220ms var(--ease-premium);
}

.why-checklist li + li {
  border-top: 1px solid var(--border);
}

.why-checklist li:hover {
  background: #f8fbff;
  transform: translateY(-1px);
}

.why-checklist li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--soft-blue);
  box-shadow: inset 0 0 0 1px #bfdbfe;
}

.why-checklist li::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 27px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--blue);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.why-checklist strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.why-checklist span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.founder-section {
  padding-top: 84px;
  background: linear-gradient(180deg, var(--white), var(--light));
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.founder-copy {
  max-width: 920px;
}

.founder-copy h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.35vw, 44px);
}

.founder-copy p {
  max-width: 860px;
  font-size: 17px;
}

.founder-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 22px;
}

.founder-facts span {
  position: relative;
  padding: 9px 12px 9px 28px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #334155;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 800;
}

.founder-facts span::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 220ms var(--ease-premium), border-color 220ms ease, box-shadow 220ms ease;
}

.founder-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.linkedin-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

.linkedin-link img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-list details[open] {
  border-color: #bfdbfe;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--blue);
  background: var(--light);
  font-size: 18px;
  font-weight: 500;
  transform: translateY(-50%);
  transition: transform 260ms var(--ease-premium), background 260ms ease;
}

.faq-list details[open] summary::after {
  content: "\2212";
  transform: translateY(-50%) rotate(180deg);
  background: var(--soft-blue);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  animation: faq-in 260ms var(--ease-premium) both;
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-points span {
  display: flex;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: #334155;
  font-weight: 700;
}

.contact-trust {
  position: relative;
  margin: 18px 0 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-trust::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--navy);
  font: inherit;
  resize: vertical;
  background: #fcfdff;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(59, 130, 246, 0.25);
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.08);
}

.contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.form-honeypot {
  display: none;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.form-consent a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.form-consent a:hover {
  text-decoration: underline;
}

.form-wide {
  grid-column: 1 / -1;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease-premium), transform 650ms var(--ease-premium);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready:nth-child(2) { transition-delay: 70ms; }
.reveal-ready:nth-child(3) { transition-delay: 140ms; }
.reveal-ready:nth-child(4) { transition-delay: 210ms; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-success,
.form-note.is-error {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.form-note.is-success {
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  background: #eff6ff;
}

.form-note.is-error {
  border: 1px solid #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.workspace-page {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 38%, #f8fafc 100%);
}

.workspace-hero {
  padding-top: 126px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 86% 20%, rgba(59, 130, 246, 0.15), transparent 30%),
    linear-gradient(180deg, var(--white), var(--light));
}

.workspace-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 46px;
  align-items: end;
}

.workspace-hero-copy {
  max-width: 820px;
}

.workspace-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.workspace-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #334155;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.workspace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.workspace-status-card {
  padding: 24px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.14), transparent 44%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.workspace-status-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-status-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.workspace-status-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.workspace-preview-section {
  padding-top: 58px;
  background: var(--white);
}

.workspace-preview-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.workspace-preview-heading h2 {
  margin-bottom: 12px;
}

.workspace-preview-heading p {
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
}

.workspace-preview-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.workspace-browser-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.workspace-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cbd5e1;
}

.workspace-browser-bar strong {
  margin-left: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-preview-card img {
  display: block;
  width: 100%;
  height: auto;
}

.workspace-preview-card figcaption {
  padding: 13px 18px 16px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 700;
}

.workspace-benefits-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, var(--white), var(--light));
}

.workspace-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.workspace-benefits article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.workspace-benefits span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.workspace-benefits h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
}

.workspace-benefits p {
  color: #475569;
  font-size: 14px;
  line-height: 1.58;
}

.workspace-cta-section {
  padding-top: 72px;
  background: #020617;
}

.workspace-cta {
  display: grid;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.workspace-cta .eyebrow {
  color: #93c5fd;
}

.workspace-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
}

.workspace-cta p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #cbd5e1;
  font-size: 18px;
}

.site-footer {
  padding: 42px 0;
  color: #cbd5e1;
  background: var(--navy);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-wordmark {
  width: 166px;
}

.footer-inner p {
  max-width: 430px;
  margin: 16px 0 0;
  color: #cbd5e1;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-inner nav a {
  color: #e2e8f0;
  font-weight: 700;
}

.footer-social {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.legal-page {
  background: var(--light);
}

.legal-page h1 {
  margin-bottom: 28px;
  font-size: clamp(40px, 7vw, 68px);
}

.legal-card {
  padding: 34px;
  background: var(--white);
}

.legal-card h2 {
  margin: 28px 0 8px;
  font-size: 22px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }

  .office-problem-card {
    opacity: 0.92;
    transform: translate(var(--to-x), var(--to-y)) scale(0.72);
  }

  .office-flow-line,
  .office-demo-result strong {
    opacity: 1;
  }

  .office-problem-card > i,
  .office-lane b {
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
  }

  .office-step {
    opacity: 0.9;
    border-color: transparent;
    background: transparent;
  }

  .office-step i {
    border-color: var(--accent);
    background: var(--accent);
  }

  .office-mini-result {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
  }

  .hero-proof,
  .split-section,
  .split-section.reverse,
  .why-assistone,
  .founder-card,
  .contact-grid,
  .calculator-body,
  .workspace-hero-inner,
  .homepage-workspace {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero-proof {
    margin: 16px auto 0;
  }

  .automation-summary {
    grid-template-columns: 1fr;
  }

  .tool-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-strip-marquee {
    width: 100%;
  }

  .tool-strip-logos {
    justify-content: flex-start;
  }

  .why-assistone-media,
  .why-assistone-media img {
    min-height: 520px;
    height: 520px;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid,
  .pricing-grid,
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workspace-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-workspace-preview img {
    height: 360px;
    object-position: left top;
  }

}

@media (max-width: 760px) {
  .container,
  .container.narrow,
  .site-header {
    width: min(100% - 40px, 1120px);
  }

  .site-header {
    min-height: 64px;
    margin-top: 8px;
    padding: 8px 10px 8px 14px;
  }

  .brand-wordmark {
    width: 142px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 40px;
    height: 40px;
    place-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .static-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .static-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 36px;
    overflow: hidden;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
    width: min(100% - 40px, 1120px);
  }

  .hero-content,
  .hero-proof {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }

  .hero-content .eyebrow {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 7px 10px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    color: var(--blue);
    background: rgba(239, 246, 255, 0.92);
    font-size: 11px;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  .hero-content .eyebrow {
    font-size: 0;
  }

  .hero-content .eyebrow::after {
    content: "Lösungen für KMU";
    font-size: 11px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .workspace-hero {
    padding-top: 92px;
    padding-bottom: 46px;
  }

  .workspace-hero h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1;
  }

  .workspace-hero-copy p:not(.eyebrow),
  .workspace-preview-heading p,
  .workspace-cta p {
    font-size: 16px;
    line-height: 1.55;
  }

  .workspace-actions {
    flex-direction: column;
  }

  .workspace-actions .btn,
  .workspace-cta .btn {
    width: 100%;
  }

  .workspace-status-card {
    padding: 20px;
  }

  .workspace-preview-section,
  .workspace-benefits-section,
  .workspace-cta-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .homepage-workspace-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .homepage-workspace {
    gap: 32px;
    padding: 24px;
    border-radius: 12px;
  }

  .homepage-workspace-copy > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .homepage-workspace-preview {
    border-radius: 10px;
  }

  .homepage-workspace-preview img {
    height: 300px;
  }

  .workspace-preview-card {
    border-radius: 10px;
  }

  .workspace-preview-card img {
    min-height: 300px;
    object-fit: cover;
    object-position: left top;
  }

  .workspace-benefits {
    grid-template-columns: 1fr;
  }

  .workspace-benefits article {
    min-height: auto;
  }

  .workspace-benefits span {
    margin-bottom: 20px;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-lead {
    font-size: 0;
  }

  .hero-lead::before {
    content: "AssistOne übernimmt E-Mails, Anfragen, Termine und wiederkehrende Büroaufgaben.";
    display: block;
    color: #475569;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-lead::after {
    content: "Komplett eingerichtet und in Ihre bestehenden Programme eingebunden.";
    display: block;
    margin-top: 6px;
    color: #475569;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-outcomes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-outcomes strong {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 8px 10px;
    gap: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  .hero-outcomes svg {
    width: 16px;
    height: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .hero-actions .btn {
    min-height: 50px;
    padding: 13px 16px;
  }

  .hero-actions .btn-primary {
    font-size: 0;
  }

  .hero-actions .btn-primary::after {
    content: "Kostenlose Erstberatung";
    font-size: 15px;
  }

  .hero-actions .btn-secondary {
    font-size: 0;
  }

  .hero-actions .btn-secondary::after {
    content: "Potenzial berechnen";
    font-size: 15px;
  }

  .trust-line {
    flex-direction: column;
  }

  .calculator-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .calculator-cta .btn {
    width: 100%;
  }

  .automation-summary {
    padding: 24px;
  }

  .automation-points {
    grid-template-columns: 1fr;
  }

  .relief-card {
    min-height: auto;
    padding: 16px;
  }

  .hero-proof,
  .why-assistone,
  .workflow-grid,
  .service-grid,
  .product-grid,
  .pricing-grid,
  .integration-grid,
  .process-grid,
  .benefit-grid,
  .calculator-controls,
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    overflow: hidden;
  }

  .dashboard-shell {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-color: #dbeafe;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  }

  .office-animation-shell {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-color: #dbeafe;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  }

  .office-demo-topbar {
    height: 38px;
    padding: 0 14px;
  }

  .office-demo-heading {
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px 8px;
  }

  .office-demo-heading strong {
    font-size: 14px;
  }

  .office-status-pill {
    padding: 5px 7px;
    font-size: 9px;
  }

  .office-sort-stage {
    height: 448px;
    margin: 0 12px;
  }

  .office-step-stage {
    gap: 10px;
    padding: 0 14px 10px;
  }

  .office-inbox-card {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .office-inbox-time {
    display: none;
  }

  .office-stepper {
    gap: 3px;
  }

  .office-stepper::before {
    left: 15px;
  }

  .office-step {
    grid-template-columns: 30px minmax(0, 1fr) 8px;
    gap: 8px;
    min-height: 42px;
    padding: 5px 8px 5px 0;
  }

  .office-step span {
    width: 28px;
    height: 28px;
    font-size: 8px;
  }

  .office-step strong {
    font-size: 10.5px;
  }

  .office-step small {
    font-size: 8px;
    line-height: 1.25;
  }

  .office-mini-result {
    align-items: flex-start;
    flex-direction: column;
    min-height: 54px;
    gap: 3px;
  }

  .office-mini-result strong {
    white-space: normal;
  }

  .office-problem-card {
    width: min(218px, calc(100% - 24px));
    min-height: 64px;
    grid-template-columns: 30px minmax(0, 1fr) 7px;
    gap: 8px;
    padding: 9px 10px;
  }

  .office-card-icon {
    width: 30px;
    height: 30px;
  }

  .office-card-icon svg {
    width: 16px;
    height: 16px;
  }

  .office-problem-card strong {
    font-size: 11px;
  }

  .office-problem-card small {
    font-size: 9px;
  }

  .card-call {
    --from-x: 12px;
    --from-y: 10px;
    --to-x: 16px;
    --to-y: 274px;
  }

  .card-inbox {
    --from-x: 72px;
    --from-y: 86px;
    --to-x: 16px;
    --to-y: 318px;
  }

  .card-callback {
    --from-x: 12px;
    --from-y: 162px;
    --to-x: 16px;
    --to-y: 362px;
  }

  .card-calendar {
    --from-x: 76px;
    --from-y: 238px;
    --to-x: 16px;
    --to-y: 406px;
  }

  .card-request {
    display: none;
  }

  .office-structure-board {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .office-lane {
    min-height: 42px;
    padding: 10px 12px;
  }

  .office-demo-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 9px 14px;
    line-height: 1.35;
  }

  .dashboard-topbar {
    height: 38px;
    padding: 0 14px;
  }

  .live-status {
    font-size: 10px;
  }

  .dashboard-heading {
    padding: 14px 16px 9px;
  }

  .dashboard-heading strong {
    font-size: 15px;
  }

  .mini-label,
  .request-id {
    font-size: 10px;
  }

  .request-id {
    padding: 5px 7px;
  }

  .inquiry-card {
    margin: 0 16px 10px;
    padding: 10px;
  }

  .inquiry-avatar {
    width: 30px;
    height: 30px;
  }

  .inquiry-card strong {
    font-size: 11px;
  }

  .inquiry-card div span,
  .inquiry-time {
    font-size: 9px;
  }

  .dashboard-progress {
    height: 5px;
    margin: 0 16px 10px;
  }

  .automation-flow {
    gap: 3px;
    padding: 0 16px 12px;
  }

  .automation-flow::before {
    top: 22px;
    bottom: 36px;
    left: 31px;
  }

  .flow-step {
    grid-template-columns: 30px minmax(0, 1fr) 8px;
    gap: 8px;
    min-height: 34px;
    padding: 3px 8px 3px 0;
  }

  .flow-step:nth-child(2),
  .flow-step:nth-child(6),
  .flow-step:nth-child(8) {
    display: none;
  }

  .flow-icon {
    width: 28px;
    height: 28px;
    font-size: 8px;
  }

  .flow-step strong {
    font-size: 10.5px;
  }

  .flow-step small {
    font-size: 8px;
    line-height: 1.25;
  }

  .flow-step.active {
    transform: none;
  }

  .dashboard-footer {
    min-height: 36px;
    padding: 0 14px;
    font-size: 8.5px;
  }

  .savings-calculator {
    padding: 22px;
  }

  .why-assistone-section {
    padding: 70px 0;
  }

  .why-assistone {
    gap: 32px;
  }

  .why-assistone-media,
  .why-assistone-media img {
    min-height: 430px;
    height: 430px;
  }

  .why-assistone-list {
    gap: 16px;
  }

  .why-assistone-list li {
    font-size: 17px;
  }

  .before-after {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .before-after-column + .before-after-column {
    border-top: 1px solid #dbeafe;
    border-left: 0;
  }

  .before-after-column {
    padding: 28px 24px;
  }

  .problem-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .problem-list strong {
    font-size: 16px;
  }

  .process-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
  }

  .process-grid {
    gap: 0;
    border-top: 1px solid #dbeafe;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 3px 12px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid #dbeafe;
    border-radius: 0;
    box-shadow: none;
  }

  .process-grid article:hover {
    box-shadow: none;
  }

  .process-grid article span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-grid article h3,
  .process-grid article p {
    grid-column: 2;
    margin: 0;
  }

  .pricing-grid {
    padding-top: 22px;
  }

  .pricing-service {
    min-height: auto;
  }

  .pricing-scope-note {
    text-align: left;
  }

  .pricing-tax-note {
    text-align: left;
  }

  .founder-card {
    padding: 0;
  }

  .dashboard-shell {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.13);
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-wordmark {
    width: 132px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(32px, 9.5vw, 38px);
    line-height: 1.03;
  }

  .workspace-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .workspace-preview-card figcaption {
    padding: 12px 14px;
  }

  .homepage-workspace-list li {
    font-size: 14px;
  }

  .homepage-workspace {
    padding: 18px;
  }

  .homepage-workspace-preview img {
    height: 240px;
  }

  .workspace-browser-bar strong {
    font-size: 10px;
  }

  .hero-inner {
    gap: 28px;
  }

  .why-assistone-media,
  .why-assistone-media img {
    min-height: 360px;
    height: 360px;
  }

  .linkedin-link {
    width: 100%;
    justify-content: center;
  }

  .founder-socials {
    width: 100%;
    flex-direction: column;
  }

  .dashboard-heading,
  .automation-flow {
    padding-right: 14px;
    padding-left: 14px;
  }

  .inquiry-card {
    margin-right: 14px;
    margin-left: 14px;
  }

  .automation-flow::before {
    left: 29px;
  }

  .service-card,
  .pricing-card,
  .contact-form,
  .legal-card {
    padding: 22px;
  }

  .price-stack > div {
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .container,
  .container.narrow,
  .site-header,
  .hero-inner {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    min-height: 60px;
    padding: 7px 8px 7px 12px;
  }

  .brand-wordmark {
    width: 124px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(31px, 9.4vw, 34px);
  }

  .hero-lead::before,
  .hero-lead::after {
    font-size: 15px;
  }

  .hero-outcomes {
    gap: 8px;
  }

  .hero-outcomes strong {
    min-height: 40px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .hero-outcomes svg {
    width: 15px;
    height: 15px;
  }

  .process-benefits {
    grid-template-columns: 1fr;
  }

  .dashboard-heading {
    align-items: flex-start;
    gap: 10px;
  }

  .dashboard-heading strong {
    font-size: 14px;
  }

  .flow-step small {
    display: none;
  }
}

@media (max-width: 330px) {
  .hero-outcomes {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 36px;
  }
}
