/* Tischify marketing site: shared, framework-free styles. */

@font-face {
  font-family: "DM Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 1000;
  src: url("/assets/fonts/dm-sans-latin-ext-wght-normal.woff2") format("woff2-variations");
  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: "DM Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 1000;
  src: url("/assets/fonts/dm-sans-latin-wght-normal.woff2") format("woff2-variations");
  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 {
  --wine: #542631;
  --wine-deep: #351a22;
  --accent: #844153;
  --accent-dark: #642b3a;
  --rose: #d5b9b6;
  --rose-light: #f2e7e3;
  --apricot: #f3be9a;
  --apricot-light: #fae5d5;
  --paper: #fffaf4;
  --canvas: #f5eee6;
  --canvas-rose: #eedbd5;
  --line: #e1d5cd;
  --ink: #33262a;
  --muted: #6b5d61;
  --danger: #a13d3d;
  --white: #fff;
  --shadow-sm: 0 10px 32px rgba(57, 29, 35, 0.07);
  --shadow-lg: 0 28px 70px rgba(57, 29, 35, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  color: var(--ink);
  background: var(--canvas);
  font-family: "DM Sans Variable", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.55;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

/* German and French compounds are longer than a 360px column. A heading must
   break the word rather than push its grid track past the container: no page
   may scroll horizontally. */
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

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

a {
  color: var(--accent-dark);
  text-underline-offset: 0.18em;
}

a,
button {
  transition: color 180ms ease, background-color 180ms ease,
    border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--wine);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(74px, 10vw, 126px);
}

.section--soft {
  background: var(--canvas);
}

.section--green {
  color: var(--white);
  background: var(--wine);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.legal-hero h1,
.error-section h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.section-heading p,
.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.section--green .section-heading p {
  color: #dfd4d6;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section--green .eyebrow {
  color: #e6b66f;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

.button--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(107, 51, 63, 0.2);
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--login {
  min-height: 40px;
  padding: 9px 14px;
  border-color: #d2cacc;
  background: transparent;
  color: #57464a;
  font-size: 13px;
  font-weight: 700;
}

.button--login:hover {
  border-color: #a89397;
  background: var(--rose-light);
  color: var(--wine);
}

.button--amber {
  background: var(--apricot);
  color: #2f1c20;
  box-shadow: 0 10px 24px rgba(217, 149, 61, 0.2);
}

.button--amber:hover {
  background: #c88735;
}

.button--signup {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(107, 51, 63, 0.2);
}

.button--signup:hover {
  background: var(--accent-dark);
}

.button--secondary {
  border-color: #c9bfc1;
  background: rgba(255, 253, 248, 0.75);
  color: var(--wine);
}

.button--secondary:hover {
  border-color: var(--accent);
  background: var(--white);
}

.button--text {
  min-height: auto;
  padding: 5px 0;
  color: var(--accent-dark);
}

.button[disabled] {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(57, 29, 35, 0.1);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--wine);
  text-decoration: none;
}

.brand-lockup {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.brand-lockup__name {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0;
  color: var(--wine);
}

.brand-lockup__logo {
  display: block;
  width: 34px;
  height: auto;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("/assets/img/logo.svg") center / contain no-repeat;
  mask: url("/assets/img/logo.svg") center / contain no-repeat;
}

.brand-lockup__wordmark {
  margin: 0 0 0 8px;
  transform: translateY(-1px);
  font-family: "Avenir Next", Avenir, "Century Gothic", Futura, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.brand-lockup__wordmark-primary,
.brand-lockup__wordmark-accent {
  display: inline;
  font-size: inherit;
}

.brand-lockup__wordmark-primary {
  color: inherit;
}

.brand-lockup__wordmark-accent {
  color: var(--accent);
}

.brand-lockup__tagline {
  margin-top: 4px;
  color: #50363b;
  font-family: "Avenir Next", Avenir, "Century Gothic", Futura, sans-serif;
  font-size: 6px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-lockup--vertical {
  align-items: center;
  text-align: center;
}

.brand-lockup--vertical .brand-lockup__name {
  justify-content: center;
}

.brand-lockup--vertical .brand-lockup__logo {
  width: clamp(56px, 6vw, 74px);
}

.brand-lockup--vertical .brand-lockup__wordmark {
  margin-left: 0;
  transform: translateY(0);
  font-size: clamp(38px, 4.6vw, 54px);
}

.brand-lockup--vertical .brand-lockup__tagline {
  max-width: 34rem;
  margin-top: 6px;
  font-size: clamp(7px, 0.65vw, 9px);
  letter-spacing: 0.13em;
  white-space: normal;
}

.site-header .brand-lockup--vertical .brand-lockup__logo {
  width: 40px;
}

.site-header .brand-lockup--vertical .brand-lockup__wordmark {
  margin-left: 0;
  transform: translateY(0);
  font-size: 30px;
}

.site-header .brand-lockup--vertical .brand-lockup__tagline {
  margin-top: 3px;
  font-size: 6px;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav > a:not(.button) {
  padding: 10px 11px;
  border-radius: 8px;
  color: #524245;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  background: var(--rose-light);
  color: var(--wine);
}

.locale-switcher {
  display: flex;
  margin-left: 6px;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f2eeef;
}

.locale-switcher a {
  display: grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border-radius: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.locale-switcher a:hover,
.locale-switcher a[aria-current="page"] {
  background: var(--white);
  color: var(--wine);
  box-shadow: 0 2px 9px rgba(57, 29, 35, 0.09);
}

.menu-toggle,
.menu-backdrop {
  display: none;
}

.campaign-strip {
  border-bottom: 1px solid rgba(57, 29, 35, 0.14);
  background: var(--wine);
  color: var(--white);
}

.campaign-strip__inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-block: 10px;
}

.campaign-strip p {
  margin: 0;
  font-size: 14px;
}

.campaign-strip a {
  flex: 0 0 auto;
  color: #f2c988;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.campaign-strip a:hover {
  color: var(--white);
}

/* Temporarily hidden while keeping the localized campaign content ready to reactivate. */
.campaign-strip {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(186, 168, 172, 0.45), transparent 28%),
    linear-gradient(135deg, var(--canvas) 0%, #f8f5ed 52%, var(--canvas-rose) 100%);
}

.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(107, 51, 63, 0.12);
  border-radius: 50%;
  content: "";
  right: -280px;
  bottom: -260px;
}

.hero-grid {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: clamp(38px, 6vw, 82px);
  padding-block: clamp(74px, 9vw, 118px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.swiss-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid #d5c9cc;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
}

.hero .swiss-badge {
  margin-top: 22px;
}

.swiss-mark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: #d52b1e;
  box-shadow: 0 1px 3px rgba(68, 22, 17, 0.18);
}

.swiss-mark::before,
.swiss-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.swiss-mark::before {
  width: 10px;
  height: 3px;
}

.swiss-mark::after {
  width: 3px;
  height: 10px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #57464a;
  font-size: clamp(18px, 2.3vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-notes li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

/* Semantic interface preview, based on implemented product workflows. */

.product-preview {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(57, 29, 35, 0.18);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
}

.preview-dots {
  display: flex;
  gap: 5px;
}

.preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0c8ca;
}

.preview-bar strong {
  font-size: 12px;
  letter-spacing: 0.03em;
}

.preview-body {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 440px;
}

.preview-sidebar {
  padding: 16px 11px;
  border-radius: 0 0 0 24px;
  background: var(--wine);
}

.preview-sidebar span {
  display: block;
  height: 8px;
  margin: 9px 5px 22px;
  border-radius: 99px;
  background: #b5a1a5;
  opacity: 0.72;
}

.preview-sidebar i {
  display: block;
  height: 31px;
  margin-bottom: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-sidebar i:nth-of-type(2) {
  background: #5b343c;
}

.preview-main {
  min-width: 0;
  padding: 23px;
}

.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.preview-heading div span,
.preview-heading div strong {
  display: block;
}

.preview-heading span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.preview-heading strong {
  font-size: 20px;
}

.preview-heading b {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.preview-metric {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfaf4;
}

.preview-metric span,
.preview-metric strong {
  display: block;
}

.preview-metric span {
  color: var(--muted);
  font-size: 9px;
}

.preview-metric strong {
  margin-top: 2px;
  font-size: 17px;
}

.preview-planner {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.preview-planner-header {
  display: grid;
  grid-template-columns: 110px repeat(5, 1fr);
  background: #f0eced;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  text-align: center;
}

.preview-planner-header span {
  padding: 8px 3px;
  border-left: 1px solid var(--line);
}

.preview-planner-header span:first-child {
  border-left: 0;
}

.preview-row {
  display: grid;
  min-height: 55px;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
}

.preview-row > span {
  padding: 8px;
  color: #57464a;
  font-size: 9px;
  font-weight: 700;
}

.preview-track {
  position: relative;
  height: 100%;
  border-left: 1px solid var(--line);
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(20% - 1px),
    #e8e4e5 calc(20% - 1px),
    #e8e4e5 20%
  );
}

.preview-booking {
  position: absolute;
  top: 13px;
  left: 8%;
  width: 48%;
  height: 28px;
  border-radius: 7px;
  background: #e8dee0;
  color: var(--accent-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
}

.preview-row:nth-child(3) .preview-booking {
  left: 35%;
  width: 58%;
  background: var(--apricot-light);
  color: #6b4413;
}

.preview-row:nth-child(4) .preview-booking {
  left: 18%;
  width: 29%;
  background: #e8e4f3;
  color: #524376;
}

.preview-float {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 190px;
  padding: 15px;
  border: 1px solid #d6cfd0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
}

.preview-float small,
.preview-float strong {
  display: block;
}

.preview-float small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.preview-float strong {
  margin: 3px 0 9px;
  font-size: 13px;
}

.preview-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--rose-light);
}

.preview-progress span {
  display: block;
  width: 74%;
  height: 100%;
  background: var(--accent);
}

/* Positioning and workflow */

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.intro-grid h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.intro-copy article {
  padding-top: 16px;
  border-top: 2px solid var(--rose);
}

.intro-copy h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: workflow;
}

.workflow article {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  counter-increment: workflow;
}

.workflow article::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  content: counter(workflow, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
}

.workflow article:not(:last-child)::after {
  position: absolute;
  top: 44px;
  right: -19px;
  z-index: 2;
  width: 18px;
  height: 1px;
  background: var(--rose);
  content: "";
}

.workflow h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.workflow p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Features */

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

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.feature-card:nth-child(1),
.feature-card:nth-child(6) {
  background: var(--wine);
  color: var(--white);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  background: var(--rose-light);
  color: var(--accent);
}

.feature-card:nth-child(1) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  background: #5b343c;
  color: #f0c381;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px;
}

.feature-card:nth-child(1) p,
.feature-card:nth-child(6) p {
  color: #dbd1d3;
}

.feature-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
}

.feature-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--apricot);
  content: "";
  transform: translateY(-50%);
}

/* Product spotlight */

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.spotlight-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.spotlight-copy > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #dfd4d6;
  font-size: 18px;
}

.homepage-spotlight .spotlight-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.spotlight-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spotlight-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.spotlight-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: #5b343c;
  color: #f0c381;
  font-size: 13px;
  font-weight: 800;
}

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

.spotlight-list small {
  margin-top: 3px;
  color: #cdc1c3;
}

.homepage-spotlight .spotlight-list small {
  color: var(--muted);
}

.portal-card {
  padding: 22px;
  border: 1px solid #685055;
  border-radius: var(--radius-lg);
  background: #f1eaec;
  color: var(--ink);
  box-shadow: 0 28px 60px rgba(31, 13, 17, 0.25);
}

.portal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.portal-brand {
  font-size: 15px;
  font-weight: 850;
}

.portal-language {
  padding: 4px 8px;
  border-radius: 7px;
  background: var(--white);
  color: var(--muted);
  font-size: 10px;
}

.portal-vehicle {
  display: grid;
  min-height: 220px;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.35), transparent),
    #e2dbdc;
}








.portal-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 20px 4px 4px;
}

.portal-summary strong {
  font-size: 17px;
}

.portal-summary span {
  color: var(--muted);
  font-size: 13px;
}

.portal-summary b {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
}

/* Simplicity and automation */

.automation-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 8%, rgba(107, 51, 63, 0.12), transparent 25%),
    var(--paper);
}

.automation-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: end;
  margin-bottom: 42px;
}

.automation-heading h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.automation-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.automation-promise {
  padding: 24px;
  border: 1px solid #d9cfd1;
  border-radius: var(--radius-md);
  background: var(--rose-light);
}

.automation-promise strong {
  display: block;
  color: var(--wine);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.automation-promise p {
  margin: 12px 0 0;
  color: #57464a;
  font-size: 14px;
}

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

.automation-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.automation-card:first-child {
  border-color: #ddd1d4;
  background: var(--rose-light);
}

.automation-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 13px;
  background: var(--wine);
  color: var(--white);
}

.automation-icon svg {
  width: 22px;
  height: 22px;
}

.automation-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.automation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Languages */

.language-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 8vw, 100px);
  align-items: center;
}

.language-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.language-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.language-grid article {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 15px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.language-grid b {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--rose-light);
  color: var(--accent-dark);
  font-size: 12px;
}

.language-grid strong,
.language-grid small {
  display: block;
}

.language-grid small {
  color: var(--muted);
}

/* FAQ */

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  color: var(--wine);
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--accent-dark);
  content: "+";
  font-size: 20px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 820px;
  padding: 0 50px 24px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.homepage-faq .faq-list,
.homepage-faq .faq-list details {
  border-color: rgba(255, 255, 255, 0.2);
}

.homepage-faq .faq-list summary {
  color: var(--white);
}

.homepage-faq .faq-list summary::after {
  background: #5b343c;
  color: #f0c381;
}

.homepage-faq .faq-answer {
  color: #dfd4d6;
}

.homepage-faq .faq-answer a {
  color: var(--white);
}

/* Contact */

.contact-section {
  background:
    radial-gradient(circle at 12% 85%, rgba(186, 168, 172, 0.28), transparent 24%),
    var(--wine-deep);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact-copy > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #dbd1d3;
  font-size: 18px;
}

.contact-direct {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 700;
}

.contact-form {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(22, 8, 11, 0.28);
}

.form-intro {
  margin: 0 0 26px;
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--wide,
.consent-row,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c3bbbc;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--accent);
}

.required-mark {
  color: var(--danger);
}

.consent-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.consent-row input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
}

.consent-row label {
  color: var(--muted);
  font-size: 13px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
}

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

.form-status.is-success {
  background: #e6eee7;
  color: #244c31;
}

.form-status.is-error {
  background: #f8e8e5;
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

/* Legal and error pages */

.legal-hero,
.error-section {
  background: linear-gradient(135deg, var(--canvas), var(--canvas-rose));
}

.legal-hero {
  padding-block: clamp(70px, 10vw, 116px);
}

.legal-content {
  padding-block: clamp(56px, 8vw, 90px);
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #57464a;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--canvas);
}

.analytics-preference {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--canvas-rose);
}

.analytics-preference .legal-note {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.error-section {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding-block: 90px;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: clamp(70px, 13vw, 130px);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.error-section p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.error-section .locale-switcher {
  width: max-content;
  margin-inline: auto;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(150px, 0.55fr));
  gap: 50px;
  padding-block: 60px;
}

.footer-brand p {
  max-width: 350px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand .swiss-badge {
  width: max-content;
  margin-top: 18px;
  padding: 6px 9px;
  font-size: 11px;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom .locale-switcher {
  margin-left: 0;
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 15px;
  }

  .site-nav > a:not(.button) {
    padding-inline: 7px;
  }

  .site-nav .button {
    padding-inline: 14px;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .product-preview {
    width: min(720px, 100%);
    margin-inline: auto;
    transform: none;
  }

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

  .automation-heading {
    grid-template-columns: 1fr;
  }

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

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

  .workflow article::after {
    display: none;
  }
}

@media (max-width: 1199px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .container,
  .narrow {
    width: min(100% - 36px, 1180px);
  }

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

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--wine);
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle {
    gap: 5px;
  }

  .menu-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    z-index: 102;
    display: none;
    width: min(360px, 88vw);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 24px;
    background: var(--paper);
    box-shadow: -18px 30px 60px rgba(57, 29, 35, 0.2);
  }

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

  .site-nav > a:not(.button) {
    min-height: 44px;
    padding: 11px 12px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .site-nav .locale-switcher {
    align-self: flex-start;
    margin: 14px 0 0;
  }

  .menu-backdrop {
    position: fixed;
    inset: 68px 0 0;
    z-index: 101;
    border: 0;
    background: rgba(34, 16, 20, 0.5);
  }

  .menu-backdrop.is-visible {
    display: block;
  }

  .intro-grid,
  .spotlight-grid,
  .language-panel,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-copy {
    position: static;
  }

  .campaign-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-block: 12px;
  }
}

@media (max-width: 650px) {
  .section {
    padding-block: 68px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 54px 70px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.8vw, 44px);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 17px;
  }

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

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

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

  .preview-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 15px;
  }

  .preview-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .preview-metric:last-child {
    display: none;
  }

  .preview-planner-header {
    grid-template-columns: 78px repeat(5, 1fr);
  }

  .preview-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .preview-float {
    right: 10px;
    bottom: -30px;
    width: 165px;
  }

  .intro-copy,
  .feature-grid,
  .automation-grid,
  .workflow,
  .language-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--wide,
  .consent-row,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 46px;
  }

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

@media (max-width: 420px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .contact-form,
  .feature-card,
  .automation-card,
  .workflow article {
    padding: 22px;
  }

  .preview-heading b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Localized product landing pages */

.site-nav > a[aria-current="page"]:not(.button) {
  background: var(--rose-light);
  color: var(--wine);
}

.solution-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(57, 29, 35, 0.1);
  background: radial-gradient(circle at 84% 8%, rgba(186, 168, 172, 0.5), transparent 30%), linear-gradient(140deg, var(--canvas) 0%, #faf7ef 52%, var(--canvas-rose) 100%);
}

.solution-hero::after {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(107, 51, 63, 0.13);
  border-radius: 50%;
  content: "";
}

.solution-hero__grid {
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  gap: clamp(44px, 7vw, 92px);
  padding-block: clamp(72px, 9vw, 112px);
}

.solution-hero__copy,
.solution-visual {
  position: relative;
  z-index: 1;
}

.solution-hero__copy .swiss-badge {
  margin-bottom: 22px;
}

.solution-hero__copy h1,
.contact-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(43px, 6.2vw, 70px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.055em;
}

.solution-hero__lead {
  max-width: 680px;
  margin: 25px 0 0;
  color: #57464a;
  font-size: clamp(18px, 2.2vw, 22px);
}

.solution-visual {
  overflow: hidden;
  border: 1px solid rgba(57, 29, 35, 0.18);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.solution-visual__top {
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.solution-visual__top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfc9ca;
}

.solution-visual__top span:nth-child(2) { background: var(--apricot); }
.solution-visual__top span:nth-child(3) { background: var(--accent); }

.solution-visual__top strong {
  margin-left: auto;
  color: var(--wine);
}

.solution-visual__body {
  display: grid;
  min-height: 360px;
  grid-template-columns: 72px 1fr;
}

.solution-visual__sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-top: 35px;
  background: var(--wine-deep);
}

.solution-visual__sidebar i {
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.solution-visual__sidebar i:first-child { background: rgba(255, 255, 255, 0.14); }

.solution-visual__main {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(rgba(57, 29, 35, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(57, 29, 35, 0.045) 1px, transparent 1px), #fbfaf5;
  background-size: 34px 34px;
}

.solution-visual__eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.solution-visual__main > strong {
  max-width: 330px;
  margin-top: 6px;
  color: var(--wine);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.solution-visual__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.solution-visual__metrics span {
  min-height: 68px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--wine);
  font-size: 13px;
  font-weight: 750;
}

.solution-visual__track {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr 1fr;
  gap: 5px;
  margin-top: 16px;
}

.solution-visual__track i {
  height: 9px;
  border-radius: 999px;
  background: var(--rose);
}

.solution-visual__track i:nth-child(2) { background: var(--accent); }
.solution-visual__track i:nth-child(3) { background: var(--apricot); }

.solution-visual__main > b {
  align-self: flex-start;
  margin-top: 20px;
  padding: 7px 11px;
  border: 1px solid #d5c8cb;
  border-radius: 999px;
  background: #f1e9eb;
  color: var(--accent-dark);
  font-size: 12px;
}

.solution-visual--guests-reviews .solution-visual__main > b,
.solution-visual--digital-menu .solution-visual__main > b {
  border-color: #e3c99e;
  background: var(--apricot-light);
  color: #744b18;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(35px, 8vw, 110px);
}

.split-heading h2,
.conversion-panel h2,
.evidence-panel h2,
.contact-aside h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.split-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

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

.capability-card {
  min-height: 285px;
  padding: clamp(27px, 4vw, 39px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.64);
}

.capability-card > span {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.capability-card h2 {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.capability-card p,
.process-grid p {
  margin: 15px 0 0;
  color: var(--muted);
}

[data-swiss-only][hidden] {
  display: none !important;
}

.market-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.48);
}

.market-note > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.market-note h3 {
  margin: 1px 0 0;
  font-size: 18px;
}

.market-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

/* Narrative alternatives for product pages that do not use the capability-card template. */
.story-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.story-rail article {
  padding-top: 24px;
  border-top: 3px solid var(--accent);
}

.story-rail article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.story-rail h2 {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 31px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.story-rail p {
  margin: 18px 0 0;
  color: var(--muted);
}

.security-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.security-groups article {
  padding: clamp(34px, 6vw, 64px);
}

.security-groups article + article {
  border-left: 1px solid var(--line);
}

.security-groups h2 {
  margin: 0;
  font-size: clamp(27px, 3.5vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.security-groups p {
  margin: 18px 0 0;
  color: var(--muted);
}

.security-groups ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.security-groups li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
}

.security-groups li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--apricot);
  content: "";
}

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

.process-grid article {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.process-grid article:not(:last-child)::after {
  position: absolute;
  top: 42px;
  right: -15px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--accent);
  content: "→";
  font-weight: 800;
  line-height: 25px;
  text-align: center;
}

.process-grid b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--wine);
  color: var(--white);
  font-size: 13px;
}

.process-grid h3 {
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.2;
}

.evidence-section { padding-top: 0; }

.evidence-panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(38px, 7vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--wine);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.evidence-panel > div > p:last-of-type {
  margin: 22px 0 0;
  color: #dfd6d8;
  font-size: 18px;
}

.evidence-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-panel li {
  position: relative;
  padding: 15px 0 15px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #f2eeef;
}

.evidence-panel li::before {
  position: absolute;
  top: 17px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--apricot);
  color: var(--wine);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.related-section { background: var(--canvas); }

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

.related-grid a {
  display: flex;
  min-height: 130px;
  justify-content: space-between;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--wine);
  text-decoration: none;
}

.related-grid a:hover,
.contact-aside__links a:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.related-grid span { font-size: 21px; font-weight: 780; }
.related-grid small { color: var(--accent); font-weight: 750; }
.conversion-section { background: var(--paper); }

.conversion-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid #d6d5c9;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 90% 15%, rgba(186, 168, 172, 0.52), transparent 30%), var(--canvas);
}

.conversion-panel > div { max-width: 760px; }
.conversion-panel p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.conversion-panel .button { flex: 0 0 auto; }

.feature-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: none;
}

.feature-link:hover { color: var(--wine); }

.feature-card:nth-child(1) .feature-link,
.feature-card:nth-child(6) .feature-link {
  color: #f0c381;
}

.feature-card:nth-child(1) .feature-link:hover,
.feature-card:nth-child(6) .feature-link:hover {
  color: var(--white);
}

/* Dedicated contact page */

.contact-page-hero {
  padding-block: clamp(72px, 10vw, 118px);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 78% 22%, rgba(186, 168, 172, 0.48), transparent 27%), var(--canvas);
}

.contact-page-hero p:last-child {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

.contact-page-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(38px, 7vw, 84px);
}

.contact-aside { position: sticky; top: 112px; }
.contact-aside h2 { margin-top: 30px; }
.contact-aside > p { color: var(--muted); font-size: 18px; }

.contact-aside__links {
  display: grid;
  gap: 8px;
  margin-top: 38px;
}

.contact-aside__links a {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--canvas);
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

@media (max-width: 1227px) {
  .site-nav > a:not(.button) { padding-inline: 7px; font-size: 13px; }
  .site-nav { gap: 2px; }
  .header-inner { gap: 14px; }
}

@media (max-width: 1199px) {
  html { scroll-padding-top: 78px; }
  .site-header { background: var(--paper); backdrop-filter: none; }
  .header-inner { min-height: 68px; }
  .menu-toggle { display: grid; width: 44px; height: 44px; margin-left: auto; place-items: center; border: 0; border-radius: 9px; background: transparent; color: var(--wine); cursor: pointer; gap: 5px; }
  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after { width: 22px; height: 2px; border-radius: 99px; background: currentColor; content: ""; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; top: 68px; right: 0; bottom: 0; z-index: 102; display: none; width: min(380px, 90vw); overflow-y: auto; align-items: stretch; justify-content: flex-start; flex-direction: column; gap: 5px; padding: 24px; background: var(--paper); box-shadow: -18px 30px 60px rgba(57, 29, 35, 0.2); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { min-height: 44px; padding: 11px 12px; font-size: 14px; }
  .site-nav .button { margin-top: 8px; }
  .site-nav .locale-switcher { align-self: flex-start; margin: 14px 0 0; }
  .menu-backdrop { position: fixed; inset: 68px 0 0; z-index: 101; border: 0; background: rgba(34, 16, 20, 0.5); }
  .menu-backdrop.is-visible { display: block; }
  .solution-hero__grid { min-height: auto; grid-template-columns: 1fr; }
  .solution-visual { width: min(100%, 700px); }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid article:nth-child(2)::after { display: none; }
}

@media (max-width: 1000px) {
  .split-heading,
  .evidence-panel { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conversion-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .solution-hero__copy h1,
  .contact-page-hero h1 { font-size: clamp(38px, 11vw, 46px); }
  .solution-visual__body { min-height: 320px; grid-template-columns: 1fr; }
  .solution-visual__sidebar { display: none; }
  .capability-grid,
  .process-grid,
  .related-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 0; }
  .process-grid article::after { display: none; }
  .evidence-panel,
  .conversion-panel { padding: 30px 24px; }
}

/* Product imagery and transparent pricing */

.product-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(57, 29, 35, 0.18);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.product-shot picture,
.product-shot img {
  display: block;
  width: 100%;
}

.product-shot img {
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.product-shot__zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.product-shot__zoom-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(43, 20, 25, 0.9);
  color: var(--white);
  box-shadow: 0 7px 20px rgba(25, 11, 14, 0.24);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.product-shot__zoom-trigger:focus-visible {
  outline: 4px solid var(--apricot);
  outline-offset: -4px;
}

.product-shot figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 13px;
  background: rgba(43, 20, 25, 0.92);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(43, 20, 25, 0.22);
  backdrop-filter: blur(10px);
}

.product-shot figcaption strong,
.product-shot figcaption span {
  display: block;
}

.product-shot figcaption strong {
  flex: 0 0 auto;
  font-size: 14px;
}

.product-shot figcaption span {
  color: #e4dadc;
  font-size: 12px;
  text-align: right;
}

.product-carousel {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-bottom: 30px;
}

.product-carousel__viewport {
  position: relative;
}

.product-carousel__slide:not([hidden]) {
  animation: product-carousel-slide-in 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes product-carousel-slide-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-carousel__arrow {
  position: absolute;
  top: calc(50% - 15px);
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(43, 20, 25, 0.92);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(25, 11, 14, 0.28);
  font: inherit;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-carousel__arrow:hover {
  background: var(--accent-dark);
}

.product-carousel__arrow:focus-visible,
.product-carousel__dots button:focus-visible,
.image-lightbox__nav:focus-visible,
.image-lightbox__close:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 3px;
}

.product-carousel__arrow--previous {
  left: 14px;
}

.product-carousel__arrow--next {
  right: 14px;
}

.product-carousel__dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.product-carousel__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(57, 29, 35, 0.3);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.product-carousel__dots button[aria-current="true"] {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.product-shot--hero {
  z-index: 2;
  transform: none;
}

.product-shot--hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  content: "";
  pointer-events: none;
}

.product-shot--dark {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 72px rgba(25, 11, 14, 0.42);
}

.image-lightbox {
  width: min(94vw, 1440px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(21, 9, 12, 0.88);
  backdrop-filter: blur(6px);
}

.image-lightbox__content {
  position: relative;
  display: grid;
  max-height: 94vh;
  place-items: center;
}

.image-lightbox__figure {
  position: relative;
  display: grid;
  width: fit-content;
  max-width: 100%;
  max-height: 90vh;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--wine);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  place-items: center;
}

.image-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(90vh - 76px);
}

.image-lightbox__caption {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--wine);
  color: var(--white);
}

.image-lightbox__caption strong,
.image-lightbox__caption span {
  display: block;
}

.image-lightbox__caption strong {
  flex: 0 0 auto;
  font-size: 15px;
}

.image-lightbox__caption span {
  color: #e4dadc;
  font-size: 13px;
  text-align: right;
}

.image-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(43, 20, 25, 0.94);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox__close:hover {
  background: var(--accent-dark);
}

.image-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0 0 4px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(43, 20, 25, 0.94);
  color: var(--white);
  font: inherit;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.image-lightbox__nav:hover {
  background: var(--accent-dark);
}

.image-lightbox__nav--previous {
  left: 14px;
}

.image-lightbox__nav--next {
  right: 14px;
}

.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;
}

.device-coverage {
  background: var(--wine);
  color: var(--white);
}

.device-coverage__panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(46px, 8vw, 100px);
}

.device-coverage__copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.device-coverage__copy > p:last-child {
  max-width: 660px;
  margin: 24px 0 0;
  color: #dfd4d6;
  font-size: clamp(17px, 2vw, 20px);
}

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

.device-coverage__list li {
  display: grid;
  min-height: 92px;
  align-items: center;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.device-coverage__list strong,
.device-coverage__list small {
  display: block;
}

.device-coverage__list strong {
  margin-bottom: 4px;
  font-size: 17px;
}

.device-coverage__list small {
  color: #dfd4d6;
  font-size: 14px;
}

.device-coverage__icon {
  position: relative;
  display: block;
  justify-self: center;
  border: 2px solid var(--apricot);
}

.device-coverage__icon--desktop {
  width: 46px;
  height: 31px;
  border-radius: 4px;
}

.device-coverage__icon--desktop::after {
  position: absolute;
  bottom: -8px;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--apricot);
  box-shadow: 0 -4px 0 -0.5px var(--apricot);
  content: "";
}

.device-coverage__icon--tablet {
  width: 34px;
  height: 44px;
  border-radius: 5px;
}

.device-coverage__icon--phone {
  width: 25px;
  height: 43px;
  border-radius: 6px;
}

.device-coverage__icon--tablet::after,
.device-coverage__icon--phone::after {
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--apricot);
  content: "";
  transform: translateX(-50%);
}

.feature-overview {
  background: var(--paper);
}

.feature-overview-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-overview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.feature-overview-card[open] {
  border-color: rgba(107, 51, 63, 0.4);
  box-shadow: var(--shadow-sm);
}

.feature-overview-card summary {
  display: grid;
  align-items: center;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  gap: 15px;
  padding: 23px 24px;
  cursor: pointer;
  list-style: none;
}

.feature-overview-card summary::-webkit-details-marker {
  display: none;
}

.feature-overview-card summary:hover {
  background: rgba(227, 219, 220, 0.48);
}

.feature-overview-card summary:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: -4px;
}

.feature-overview-card summary > span {
  align-self: start;
  padding-top: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-overview-card h3 {
  margin: 0;
  font-size: 20px;
}

.feature-overview-card summary p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-overview-card summary i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(107, 51, 63, 0.32);
  border-radius: 50%;
}

.feature-overview-card summary i::before,
.feature-overview-card summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.feature-overview-card summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature-overview-card[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.feature-overview-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 21px 25px 25px 69px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-overview-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.feature-overview-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.feature-overview-shot {
  padding: 21px 25px 0 69px;
  border-top: 1px solid var(--line);
}

.feature-overview-shot + ul {
  border-top: 0;
}

.feature-overview-shot .product-shot {
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.feature-overview-shot .product-shot__zoom-badge {
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  font-size: 18px;
}

.feature-overview-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: -6px 25px 24px 69px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.feature-overview-more:hover,
.feature-overview-more:focus-visible {
  text-decoration: underline;
}

.website-service {
  background: var(--canvas-rose);
}

.website-service__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(57, 29, 35, 0.16);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.website-service__panel > div {
  max-width: 780px;
}

.website-service h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.website-service p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-hero__grid,
.contact-page-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(42px, 7vw, 90px);
}

.pricing-hero__grid .pricing-hero__inner {
  max-width: none;
}

.contact-page-hero__grid > div > p:not(.eyebrow) {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

.footer-legal {
  display: grid;
  gap: 4px;
}

.footer-legal a {
  color: inherit;
}

.product-tour {
  overflow: hidden;
  background: var(--paper);
}

.screen-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.screen-story--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  margin-top: clamp(32px, 5vw, 56px);
}

.pricing-teaser {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(217, 149, 61, 0.2), transparent 28%),
    var(--canvas);
  color: var(--ink);
}

.pricing-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
}

.pricing-teaser__copy h2,
.support-strip h2,
.pricing-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.pricing-teaser__copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-inclusions li {
  padding: 8px 12px;
  border: 1px solid #d6cdcf;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

.price-card {
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.price-card__kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card__amount {
  margin: 18px 0;
}

.price-card__amount strong,
.price-card__amount span,
.price-card small {
  display: block;
}

.price-card__amount strong {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-card__amount span,
.price-card p,
.price-card small {
  color: var(--muted);
}

.price-card p {
  margin: 0;
}

.price-card hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.price-card > small {
  margin-top: 18px;
}

.support-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.support-strip__grid > div:last-child p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Dedicated pricing pages */

.pricing-hero {
  padding-block: clamp(78px, 11vw, 132px) clamp(58px, 8vw, 96px);
  background: radial-gradient(circle at 84% 18%, rgba(186, 168, 172, 0.5), transparent 27%), var(--canvas);
}

.pricing-hero__inner {
  max-width: 890px;
}

.pricing-hero__inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

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

.pricing-facts article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.pricing-facts h3 {
  margin: 0 0 10px;
}

.pricing-facts p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .product-shot--hero { width: min(820px, 100%); margin-inline: auto; transform: none; }
  .feature-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-hero__grid,
  .contact-page-hero__grid { grid-template-columns: 1fr; }
  .pricing-hero__grid .product-shot,
  .contact-page-hero__grid .product-shot { width: min(820px, 100%); }
}

@media (max-width: 860px) {
  .pricing-teaser__grid,
  .support-strip__grid { grid-template-columns: 1fr; }
  .price-card { width: min(560px, 100%); }
  .pricing-facts { grid-template-columns: 1fr; }
  .device-coverage__panel { grid-template-columns: 1fr; }
  .website-service__panel { align-items: flex-start; flex-direction: column; }
  .story-rail,
  .security-groups { grid-template-columns: 1fr; }
  .security-groups article + article { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 650px) {
  .screen-story,
  .feature-overview-grid { grid-template-columns: 1fr; }
  .product-shot { border-radius: 15px; }
  .product-shot figcaption { position: static; display: block; border: 0; border-radius: 0; background: var(--wine); }
  .product-shot figcaption span { margin-top: 3px; text-align: left; }
  .product-shot--hero img,
  .screen-story .product-shot img { aspect-ratio: 8 / 5; }
  .product-carousel__arrow { top: calc(40% - 15px); width: 40px; height: 40px; font-size: 29px; }
  .product-carousel__arrow--previous { left: 8px; }
  .product-carousel__arrow--next { right: 8px; }
  .image-lightbox__nav { width: 44px; height: 44px; font-size: 32px; }
  .image-lightbox__nav--previous { left: 8px; }
  .image-lightbox__nav--next { right: 8px; }
  .image-lightbox__caption { display: block; padding: 11px 13px; }
  .image-lightbox__caption span { margin-top: 3px; text-align: left; }
  .feature-overview-card summary { grid-template-columns: 26px minmax(0, 1fr) 28px; gap: 11px; padding: 20px 18px; }
  .feature-overview-card ul { padding: 19px 20px 22px 55px; }
  .feature-overview-shot { padding: 19px 20px 0 20px; }
  .feature-overview-more { margin: -4px 20px 20px 55px; }
  .device-coverage__list li { grid-template-columns: 48px 1fr; padding-inline: 17px; }
  .pricing-inclusions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel__slide:not([hidden]) {
    animation: none;
  }

  .product-carousel__dots button {
    transition: none;
  }
}

/* Scaffold layout: the hero and the product heroes carry copy only until the
   curated product screenshots are published. Adding the media column back means
   removing the --single modifier from the page, not editing these rules. */
.hero-grid--single,
.solution-hero__grid--single,
.contact-page-hero__grid--single,
.pricing-hero__grid--single {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
}

.hero-grid--single .hero-copy,
.solution-hero__grid--single .solution-hero__copy,
.contact-page-hero__grid--single > div,
.pricing-hero__grid--single .pricing-hero__inner {
  max-width: 46rem;
}

/* The square brand mark needs an optical gap the previous horizontal
   lockup did not. */
.brand-lockup__name {
  gap: 9px;
}

.site-header .site-nav .button--signup,
.site-header .site-nav .button--login {
  white-space: nowrap;
}

/* Cross-links between the product page families. */
.related-links {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.related-links a:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* The direct contact link is authored for the dark homepage contact panel.
   In the light contact-page aside it needs the regular text colour. */
.contact-aside .contact-direct {
  color: var(--wine);
}

/* Hospitality identity: warm paper, wine, editorial type and open layouts. */
:root {
  --display-font: Georgia, "Times New Roman", serif;
}

.container { width: min(1280px, calc(100% - 80px)); }
.section { padding-block: clamp(72px, 8vw, 112px); }
.site-header { background: rgba(255, 250, 244, 0.97); border-color: var(--line); }
.header-inner { min-height: 86px; gap: 24px; }
.site-header .brand-lockup__tagline { display: none; }
.site-header .brand-lockup--vertical .brand-lockup__wordmark { font-size: 34px; }
.site-header .brand-lockup--vertical .brand-lockup__logo { width: 38px; }
.brand-lockup__wordmark { font-family: "DM Sans Variable", sans-serif; letter-spacing: -0.075em; }
.brand-lockup__wordmark-accent { color: inherit; }
.site-nav { gap: 8px; }
.site-nav > a:not(.button) { padding-inline: 9px; font-size: 13px; font-weight: 600; }
.site-nav .button { font-size: 13px; }
.button { border-radius: 5px; min-height: 50px; padding: 14px 23px; font-weight: 650; }
.button--amber, .button--primary, .button--signup { color: var(--paper); background: var(--wine); box-shadow: none; }
.button--amber:hover, .button--primary:hover, .button--signup:hover { color: var(--white); background: var(--wine-deep); }
.button--secondary { background: transparent; border-color: var(--line); }
.button--login { border: 0; padding-inline: 8px; }
.locale-switcher { background: transparent; border: 0; padding: 0; gap: 1px; }
.locale-switcher a { min-width: 28px; border-radius: 0; font-weight: 600; }
.locale-switcher a[aria-current="page"] { background: transparent; box-shadow: inset 0 -2px var(--wine); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; }
h1, h2, h3 { text-wrap: balance; }
h2 em { font-family: var(--display-font); font-weight: 400; }
.section-heading h2, .intro-grid h2, .spotlight-copy h2,
.contact-copy h2, .language-copy h2 { font-weight: 550; letter-spacing: -0.045em; }

/* The text-first hero keeps photography separate from product screenshots. */
.hospitality-hero { background: var(--canvas); padding-bottom: 0; }
.hospitality-hero::before { display: none; }
.hospitality-hero .hero-grid { padding-block: 66px 44px; }
.hospitality-hero .hero-copy { width: 100%; max-width: 1080px; margin-inline: auto; text-align: center; }
.hospitality-hero .eyebrow { margin-bottom: 24px; }
.hospitality-hero h1 { max-width: none; font-size: clamp(46px, 6.5vw, 88px); font-weight: 550; line-height: 1.07; letter-spacing: -0.065em; }
.hospitality-hero h1 em { color: var(--wine); font-family: var(--display-font); font-weight: 400; letter-spacing: -0.055em; }
.hospitality-hero .hero-lead { max-width: 650px; margin: 25px auto 0; font-size: 18px; line-height: 1.65; color: var(--muted); }
.hospitality-hero .hero-actions { justify-content: center; margin-top: 26px; }
.availability-note { margin: 18px 0 0; font-size: 12px; color: var(--muted); }
.hospitality-image { position: relative; height: clamp(320px, 30vw, 410px); margin-block: 0; overflow: hidden; border-radius: 8px; }
.hospitality-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.hospitality-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(31, 16, 15, .65), transparent 75%); }
.hospitality-image figcaption { position: absolute; left: 5%; bottom: 14%; z-index: 1; color: #fffaf4; }
.hospitality-image figcaption > span { display: block; margin-bottom: 15px; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.hospitality-image figcaption strong { display: block; font-family: var(--display-font); font-size: clamp(30px, 3.4vw, 48px); font-weight: 400; line-height: 1.12; letter-spacing: -.03em; }
.hospitality-seal { position: absolute; top: 28px; right: 30px; z-index: 1; display: flex; width: 100px; height: 100px; flex-direction: column; justify-content: center; align-items: center; border: 1px solid rgba(255,250,244,.6); border-radius: 50%; color: var(--paper); font-family: var(--display-font); font-size: 24px; font-style: italic; transform: rotate(12deg); }
.hospitality-seal span { margin-top: 6px; font: 9px "DM Sans Variable", sans-serif; letter-spacing: .18em; }
.platform-links { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); padding-block: 24px; }
.platform-links a { display: flex; min-height: 48px; align-items: center; gap: 12px; padding: 8px 22px; color: var(--wine); font-size: 13px; text-decoration: none; border-right: 1px solid var(--line); }
.platform-links a:first-child { padding-left: 0; }
.platform-links a:last-child { padding-right: 0; border-right: 0; }
.platform-links a:hover { color: var(--accent); background: var(--rose-light); }
.platform-index { font-size: 10px; color: var(--muted); }
.platform-links a > span:last-child { margin-left: auto; }
.editorial-grid { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: clamp(40px, 8vw, 110px); }
.editorial-grid h2, .website-story h2 { margin: 0; font-size: clamp(34px, 3.65vw, 49px); font-weight: 550; line-height: 1.14; letter-spacing: -.045em; }
.editorial-copy { font-size: 17px; line-height: 1.75; color: var(--muted); }
.editorial-copy > p { margin: 0 0 20px; }
.editorial-copy .editorial-note { margin: 24px 0 0; padding-left: 18px; border-left: 2px solid var(--rose); font-size: 14px; }
.website-story { padding-block: 0 96px; }
.website-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 100px); align-items: center; }
.website-art { position: relative; min-height: 610px; height: 100%; max-height: 720px; overflow: hidden; background: var(--wine); border-radius: 180px 180px 8px 8px; }
.website-art > img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 72% center; opacity: .55; }
.website-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent, rgba(35, 14, 20, .72)); }
.website-art__type { position: absolute; z-index: 1; bottom: 105px; left: 40px; right: 20px; font: 400 clamp(38px, 4vw, 60px)/1.1 var(--display-font); letter-spacing: -.05em; color: var(--paper); }
.website-art__type span { display: block; }
.website-art__type span:last-child { font-style: italic; color: var(--apricot); }
.website-art__signature { position: absolute; z-index: 1; left: 40px; bottom: 38px; color: var(--paper); font-size: 22px; font-weight: 650; letter-spacing: -.06em; }
.website-story__copy > p:not(.eyebrow) { margin: 24px 0; font-size: 16px; color: var(--muted); line-height: 1.75; }
.editorial-benefits { list-style: none; padding: 0; margin: 26px 0 30px; }
.editorial-benefits li { padding-block: 16px; border-top: 1px solid var(--line); }
.editorial-benefits strong { display: block; font-size: 15px; font-weight: 650; }
.editorial-benefits li > span { display: block; font-size: 14px; color: var(--muted); margin-top: 5px; }
.editorial-link { display: inline-flex; align-items: center; gap: 26px; padding-bottom: 9px; border-bottom: 1px solid currentColor; color: var(--wine); font-size: 14px; font-weight: 650; text-decoration: none; }
.editorial-link:hover { gap: 34px; color: var(--accent); }
.service-story { background: var(--wine-deep); color: var(--paper); }
.service-story .eyebrow { color: var(--apricot); }
.service-story .editorial-copy { color: #dbccd0; }
.service-list { margin-top: 55px; }
.service-row { display: grid; grid-template-columns: 40px 1fr 230px; align-items: center; gap: 28px; border-top: 1px solid rgba(255,255,255,.18); padding-block: 30px; }
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.service-number { align-self: start; padding-top: 6px; color: var(--apricot); font-size: 11px; }
.service-row h3 { margin: 0 0 8px; font-size: 23px; font-weight: 500; letter-spacing: -.025em; }
.service-row p { max-width: 630px; margin: 0; color: #dbccd0; font-size: 14px; }
.service-row a { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--paper); font-size: 13px; text-decoration: none; padding-block: 14px; }
.service-row a > span { display: grid; width: 38px; height: 38px; flex-shrink: 0; place-items: center; border: 1px solid #90717a; border-radius: 50%; font-size: 20px; }
.service-row a:hover > span { color: var(--wine); background: var(--apricot); border-color: var(--apricot); }
.homepage .feature-overview { background: var(--canvas); }
.homepage .feature-overview-grid { gap: 0 40px; }
.homepage .feature-overview-card { border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.homepage .feature-overview-card summary { padding: 24px 0; }
.homepage .feature-overview-card summary > span { width: auto; background: none; color: var(--accent); }
.homepage .feature-overview-card[open] { background: transparent; }
.homepage .feature-overview-card h3 { font-weight: 600; }
.onboarding-story .workflow { gap: 34px; }
.onboarding-story .workflow article { padding: 22px 0 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; box-shadow: none; background: transparent; }
.onboarding-story .workflow article::before { width: auto; height: auto; display: block; margin-bottom: 26px; background: none; color: var(--accent); font: italic 36px var(--display-font); }
.onboarding-story .workflow article::after { display: none; }
.onboarding-story .workflow h3 { font-size: 18px; font-weight: 600; }
.price-story { background: var(--canvas-rose); }
.homepage-faq { background: var(--paper); color: var(--ink); }
.homepage-faq .eyebrow { color: var(--accent); }
.homepage-faq .faq-list, .homepage-faq .faq-list details { border-color: var(--line); }
.homepage-faq .faq-list summary { color: var(--wine); font-weight: 550; }
.homepage-faq .faq-list summary::after { background: var(--rose-light); color: var(--wine); }
.homepage-faq .faq-answer, .homepage-faq .faq-answer a { color: var(--muted); }
.contact-section { background: var(--wine-deep); }
.contact-section .button--amber { background: var(--wine); color: var(--paper); }
.contact-section .eyebrow { color: var(--apricot); }
.contact-form { box-shadow: none; border-radius: 8px; }
.site-footer { background: var(--canvas); }
.footer-main { padding-block: 70px; }
.footer-brand .brand-lockup { align-items: flex-start; }
.footer-brand .brand-lockup__tagline { font-size: 8px; }

/* Every product family shares the new identity with quieter section treatments. */
.solution-hero, .pricing-hero, .contact-page-hero { background: var(--canvas); }
.solution-hero::after, .pricing-hero::after { display: none; }
.solution-hero__grid, .pricing-hero__grid, .contact-page-hero__grid { padding-block: 80px; }
.solution-hero__copy h1, .contact-page-hero h1, .pricing-hero h1 { font-family: var(--display-font); font-weight: 400; letter-spacing: -.045em; line-height: 1.08; }
.solution-hero__grid--single .solution-hero__copy,
.pricing-hero__grid--single .pricing-hero__inner,
.contact-page-hero__grid--single > div { max-width: 880px; }
.solution-hero__lead { max-width: 740px; font-size: 19px; line-height: 1.7; }
.capability-card, .feature-card, .evidence-panel, .narrative-card { box-shadow: none; }
.workflow article, .related-links a { box-shadow: none; }
.website-banner { position: relative; height: 290px; margin-top: 40px; overflow: hidden; border-radius: 8px; }
.website-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.website-banner::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(35,14,20,.75), transparent); }
.website-banner p { position: absolute; z-index: 1; bottom: 28px; left: 40px; right: 30px; margin: 0; color: var(--paper); font: 400 clamp(26px, 3.3vw, 44px)/1.2 var(--display-font); }
.process-grid { gap: 30px; }
.process-grid article { padding: 22px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.process-grid article::after { display: none; }
.process-grid b { display: block; width: auto; height: auto; margin-bottom: 20px; padding: 0; background: transparent; color: var(--accent); font: italic 36px var(--display-font); }
.pricing-teaser { background: var(--canvas-rose); }
.price-card { border-radius: 8px; box-shadow: none; }
.footer-brand .footer-status { font-size: 12px; }
.homepage-faq .section-heading .eyebrow { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible { outline-color: #b46646; }
.feature-overview-card summary:focus-visible { outline-color: #b46646; }

@media (max-width: 1199px) {
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; overflow-y: auto; padding-bottom: 40px; }
  .menu-backdrop { inset: 72px 0 0; }
  .site-nav > a:not(.button), .site-nav .button { font-size: 15px; }
  .site-nav .locale-switcher a { min-width: 44px; min-height: 44px; }
  .hospitality-hero h1 { font-size: clamp(48px, 7.4vw, 82px); }
  .platform-links a { padding-inline: 14px; gap: 8px; font-size: 12px; }
  .website-art { min-height: 580px; }
  .website-art__type { left: 28px; }
  .website-art__signature { left: 28px; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 40px; }
}

@media (max-width: 800px) {
  .container { width: calc(100% - 40px); }
  .hospitality-hero .hero-grid { padding-block: 50px 32px; }
  .hospitality-hero h1 { font-size: clamp(45px, 8.4vw, 65px); }
  .hospitality-hero .hero-lead { font-size: 16px; max-width: 550px; }
  .hospitality-image { height: 320px; }
  .platform-links { grid-template-columns: repeat(3, minmax(0,1fr)); padding-block: 16px; }
  .platform-links a { padding: 10px !important; border-right: 0; }
  .editorial-grid { grid-template-columns: 1fr; gap: 25px; }
  .editorial-copy { font-size: 16px; }
  .website-story__grid { gap: 32px; }
  .website-art { min-height: 650px; border-radius: 130px 130px 8px 8px; }
  .website-art__type { font-size: 38px; left: 22px; }
  .website-story h2 { font-size: 34px; }
  .service-row { grid-template-columns: 28px 1fr; gap: 15px; }
  .service-row a { grid-column: 2; width: fit-content; gap: 25px; padding: 0; }
  .service-row h3 { font-size: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 36px); }
  .site-header .brand-lockup--vertical .brand-lockup__wordmark { font-size: 30px; }
  .site-header .brand-lockup--vertical .brand-lockup__logo { width: 34px; }
  .hospitality-hero .eyebrow { font-size: 9px; letter-spacing: .1em; margin-bottom: 20px; }
  .hospitality-hero h1 { font-size: clamp(37px, 10.3vw, 56px); letter-spacing: -.055em; }
  .hospitality-hero .hero-actions { flex-direction: column; align-items: stretch; margin-inline: auto; max-width: 330px; }
  .hospitality-hero .hero-lead { margin-top: 22px; }
  .availability-note { font-size: 11px; }
  .hospitality-image { height: 320px; border-radius: 5px; }
  .hospitality-image figcaption { left: 22px; right: 20px; bottom: 30px; }
  .hospitality-image figcaption > span { font-size: 9px; }
  .hospitality-image figcaption strong { font-size: 29px; }
  .hospitality-seal { width: 72px; height: 72px; top: 20px; right: 20px; font-size: 20px; }
  .hospitality-seal span { font-size: 7px; }
  .platform-links { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .platform-links a { font-size: 12px; }
  .platform-links a:last-child { grid-column: 1 / -1; }
  .platform-links a:last-child > span:last-child { margin-left: 10px; }
  .editorial-grid h2 { font-size: 34px; }
  .website-story { padding-bottom: 68px; }
  .website-story__grid { grid-template-columns: 1fr; gap: 35px; }
  .website-art { height: 440px; min-height: 0; border-radius: 150px 150px 5px 5px; }
  .website-art__type { left: 30px; font-size: 47px; bottom: 90px; }
  .website-art__signature { left: 30px; bottom: 30px; }
  .homepage .feature-overview-grid { grid-template-columns: 1fr; }
  .onboarding-story .workflow { grid-template-columns: 1fr; gap: 28px; }
  .onboarding-story .workflow article::before { margin-bottom: 15px; }
  .footer-main { gap: 36px; }
  .solution-hero__grid, .pricing-hero__grid, .contact-page-hero__grid { padding-block: 56px; }
  .solution-hero__lead { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-link, .service-row a > span { transition: none; }
}
