@font-face {
  font-family: "Euclid Triangle";
  src: url("/assets/fonts/subset-EuclidTriangle-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Triangle";
  src: url("/assets/fonts/subset-EuclidTriangle-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Triangle";
  src: url("/assets/fonts/subset-EuclidTriangle-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Triangle";
  src: url("/assets/fonts/subset-EuclidTriangle-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #18182c;
  --muted: #61616c;
  --accent: #ca304b;
  --accent-dark: #b4253f;
  --paper: #f8f7f3;
  --white: #fff;
  --line: #dcdcd5;
  --peach: #f4e5df;
  --lilac: #e8e7ed;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 20px;
  --container: 1240px;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 16px/1.65 "Euclid Triangle",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body,
button,
input,
select {
  font-family: "Euclid Triangle", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  flex-shrink: 0;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
button,
input {
  accent-color: var(--accent);
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(44px, 4.7vw, 68px);
}
h2 {
  font-size: clamp(34px, 3.2vw, 48px);
}
h3 {
  font-size: 23px;
  letter-spacing: -0.03em;
  line-height: 1.3;
  font-weight: 650;
}
em {
  font-style: normal;
  color: var(--accent);
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 16px;
}
a svg {
  width: 22px;
  height: 22px;
}
.container {
  max-width: var(--container);
  width: calc(100% - 96px);
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.6;
  margin-bottom: 22px;
  color: inherit;
}
.lead {
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  margin-top: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  padding: 14px 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 50px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease);
  white-space: normal;
}
.button-primary {
  background: var(--accent);
  color: white;
}
.button-secondary {
  background: transparent;
  border-color: #bcbcc3;
  color: var(--ink);
}
.button:active {
  transform: scale(0.98);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-block: 5px;
}
.text-link svg {
  width: 20px;
  height: 20px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 8px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 12px 20px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 243, 0.97);
  border-bottom: 1px solid rgba(24, 24, 44, 0.1);
}
.nav-shell {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-block;
  flex-shrink: 0;
}
.brand img {
  width: 178px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  margin-inline: auto;
  align-items: center;
}
.desktop-nav a,
.support-link {
  font-size: 12px;
  font-weight: 650;
  position: relative;
  white-space: nowrap;
}
.desktop-nav a[aria-current="page"]:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -9px;
  inset-inline: 0;
  background: var(--accent);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-actions .button {
  font-size: 12px;
  min-height: 43px;
  padding: 10px 18px;
  gap: 15px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  background: transparent;
  padding: 12px 10px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 180ms var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}
.mobile-nav {
  border-top: 1px solid var(--line);
  max-height: calc(100dvh - 75px);
  overflow: auto;
  background: var(--paper);
}
.mobile-nav .container {
  padding-block: 20px 28px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.mobile-nav .button {
  margin-top: 16px;
  padding: 14px 20px;
  border-bottom: 0;
}
.home-hero {
  padding: 62px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hero-copy h1 {
  font-size: clamp(44px, 4.4vw, 66px);
  line-height: 1.06;
}
.hero-copy .lead {
  font-size: 16px;
  max-width: 455px;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-actions .button {
  font-size: 12px;
  padding: 14px 19px;
  gap: 14px;
}
.hero-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.hero-note li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tiny-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #b5b7ae;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.hero-visual {
  position: relative;
  padding-bottom: 20px;
  padding-top: 10px;
}
.hero-image-wrap {
  height: 530px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}
.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 43%);
}
.image-caption {
  position: absolute;
  bottom: 27px;
  left: 26px;
  color: white;
}
.image-caption span {
  font-size: 12px;
  display: block;
  opacity: 0.83;
  margin-bottom: 5px;
}
.image-caption strong {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.product-tag {
  position: absolute;
  left: -25px;
  top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(24, 24, 44, 0.09);
  border-radius: 12px;
  padding: 14px 20px 14px 14px;
  box-shadow: 0 8px 24px rgba(24, 24, 44, 0.08);
  font-weight: 700;
  font-size: 12px;
}
.product-tag img {
  background: var(--accent);
  padding: 9px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.product-tag small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.hero-stamp {
  position: absolute;
  right: -15px;
  bottom: -1px;
  width: 99px;
  height: 99px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--peach);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 650;
  transform: rotate(9deg);
  border: 6px solid var(--paper);
}
.value-strip {
  border-block: 1px solid var(--line);
  padding-block: 24px;
}
.value-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1020px;
}
.value-strip span {
  font-size: 12px;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 16px;
}
.value-strip b {
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-intro {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 3px;
}
.platform-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 70px;
  align-items: center;
}
.platform-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--peach);
  aspect-ratio: 1.13;
}
.platform-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--paper);
  padding: 8px 13px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}
.feature-list article {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 25px;
}
.feature-list article:first-child {
  padding-top: 0;
}
.feature-number {
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 750;
  color: var(--accent);
  padding-top: 5px;
  display: block;
}
.feature-list h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.feature-list p {
  font-size: 13px;
  line-height: 1.85;
}
.feature-list > .text-link {
  margin-top: 28px;
}
.journeys-section {
  background: #efeee9;
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.journey-card {
  padding: 38px 40px 32px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  min-height: 358px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.journey-card h3 {
  font-size: 39px;
  font-weight: 550;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 17px;
}
.journey-card p {
  font-size: 13px;
  max-width: 260px;
  line-height: 1.8;
}
.journey-switch {
  background: var(--peach);
}
.journey-open {
  background: var(--lilac);
}
.journey-card .eyebrow {
  margin-bottom: 21px;
  font-size: 10px;
}
.card-link {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  font-weight: 750;
}
.journey-symbol {
  position: absolute;
  font-size: 145px;
  line-height: 1;
  right: 25px;
  bottom: 48px;
  opacity: 0.2;
  color: var(--accent);
  font-weight: 400;
  transition: transform 220ms var(--ease);
}
.journey-open .journey-symbol {
  color: #777593;
  font-size: 156px;
  bottom: 54px;
  right: 12px;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.price-teaser .lead {
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 27px;
}
.price-teaser-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
  padding: 36px 38px;
}
.price-teaser-card .eyebrow {
  margin-bottom: 16px;
}
.price-teaser-card h3 {
  font-size: 24px;
}
.big-price {
  font-size: 66px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.2;
  margin-block: 18px 12px;
}
.big-price span {
  font-size: 15px;
  letter-spacing: -0.01em;
  font-weight: 450;
}
.price-teaser-card p:not(.big-price) {
  font-size: 12px;
}
.price-teaser-card .price-fine {
  margin-top: 17px;
}
.price-fine {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.mini-costs {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.mini-costs span {
  font-size: 10px;
}
.mini-costs span:before {
  content: "✓";
  color: var(--accent);
  margin-right: 5px;
}
.setup-section {
  padding-top: 0;
}
.setup-section .lead {
  font-size: 17px;
  margin-bottom: 17px;
}
.setup-section p:not(.lead) {
  font-size: 13px;
  line-height: 1.8;
}
.setup-section .text-link {
  margin-top: 21px;
}
.setup-art {
  border-radius: 16px;
  overflow: hidden;
}
.setup-art > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.references-section {
  background: var(--ink);
  color: var(--white);
  padding-block: 74px;
}
.references-section .container {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 55px;
  align-items: center;
}
.reference-intro h2 {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.reference-intro p {
  color: #bdbcc9;
  font-size: 12px;
  max-width: 350px;
  margin-top: 18px;
}
.reference-intro .eyebrow {
  color: #cdbcbf;
  font-size: 10px;
}
.reference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.reference-grid article {
  padding-left: 32px;
  border-left: 1px solid #515063;
}
.customer-name {
  font-size: 14px;
  font-weight: 700;
}
.reference-number {
  font-size: 64px;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.05em;
  margin-top: 26px;
}
.reference-number span {
  display: block;
  font-size: 11px;
  letter-spacing: 0;
  color: #bdbcc9;
  margin-top: 13px;
}
.support-section .lead {
  font-size: 16px;
  max-width: 400px;
}
.support-card {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}
.support-card .eyebrow {
  font-size: 10px;
  margin-bottom: 19px;
}
.support-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 34px;
  letter-spacing: -0.04em;
  font-weight: 550;
  gap: 20px;
  margin-bottom: 15px;
}
.support-phone svg {
  width: 34px;
  height: 34px;
}
.support-card > .text-link {
  font-size: 14px;
}
.support-hours {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 11px;
}
.support-hours span {
  color: var(--muted);
}
.support-hours strong {
  font-weight: 650;
  text-align: right;
}
.faq-section {
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.faq-section .two-column {
  align-items: start;
}
.faq-section p {
  font-size: 13px;
  margin-top: 23px;
}
.faq-list {
  width: 100%;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 23px;
  font-weight: 400;
  color: var(--accent);
}
.faq-answer,
.faq-list details > p,
.faq-list details > div {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  padding: 0 25px 24px 0;
}
.faq-answer a,
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-band {
  background: var(--peach);
  padding: 67px 0;
}
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.cta-band h2 {
  font-size: 40px;
  max-width: 640px;
}
.cta-band p {
  max-width: 535px;
  font-size: 14px;
  margin-top: 20px;
}
.cta-band .eyebrow {
  font-size: 10px;
  margin-bottom: 17px;
}
.cta-band .button {
  flex-shrink: 0;
}
.site-footer {
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand .brand img {
  width: 160px;
}
.footer-brand p {
  font-size: 13px;
  margin-top: 22px;
}
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 20px;
}
.site-footer h2 {
  font:
    700 11px/1.5 "Euclid Triangle",
    Arial,
    sans-serif;
  letter-spacing: 0;
  margin: 2px 0 20px;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 12px;
  margin-block: 9px;
  width: fit-content;
}
.footer-grid > div > p {
  font-size: 11px;
  line-height: 1.85;
  margin-top: 18px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.footer-origin {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.page-hero {
  padding-block: 78px 82px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 800px;
}
.page-hero .two-column {
  gap: 65px;
  align-items: center;
}
.page-hero .hero-copy h1 {
  font-size: clamp(41px, 4vw, 59px);
}
.page-hero .hero-copy .lead {
  max-width: 540px;
  font-size: 16px;
}
.page-hero .button {
  margin-top: 28px;
}
.page-hero .button + .button {
  margin-left: 7px;
}
.page-hero .card {
  background: var(--peach);
  padding: 36px;
}
.page-hero .card h2 {
  font-size: 30px;
}
.page-hero .card p {
  font-size: 13px;
  margin-top: 20px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  font-size: 13px;
  line-height: 1.7;
}
.check-list li:before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 37px;
}
.card {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}
.card h3 {
  font-size: 22px;
  margin-bottom: 13px;
}
.card p {
  font-size: 13px;
  line-height: 1.9;
}
.card .feature-number {
  margin-bottom: 25px;
}
.card .text-link {
  margin-top: 18px;
}
.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  padding: 0;
  margin-top: 38px;
}
.step {
  display: flex;
  align-items: start;
  gap: 24px;
  padding-block: 27px;
  border-top: 1px solid var(--line);
}
.step-number {
  flex-shrink: 0;
  width: 41px;
  height: 41px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--accent);
}
.step h3 {
  font-size: 22px;
  max-width: 330px;
}
.step p {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 13px;
  max-width: 410px;
}
.section > .container > h2 + .lead {
  font-size: 16px;
}
.two-column > .card h2 {
  font-size: 30px;
}
.two-column > .card > p {
  margin-top: 18px;
}
.booking-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(24, 24, 44, 0.035);
}
.booking-icon {
  width: 59px;
  height: 59px;
  border-radius: 15px;
  background: var(--peach);
  color: var(--accent);
  padding: 14px;
  margin-bottom: 29px;
}
.booking-icon svg {
  width: 31px;
  height: 31px;
}
.booking-card h2 {
  font-size: 37px;
}
.booking-card .eyebrow {
  font-size: 10px;
  margin-bottom: 13px;
}
.booking-card > p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.9;
}
.booking-facts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.booking-facts span {
  font-size: 10px;
}
.booking-facts span:before {
  content: "✓";
  color: var(--accent);
  margin-right: 5px;
}
.booking-card .button {
  width: 100%;
  justify-content: space-between;
}
.booking-card .booking-note {
  font-size: 10px;
  margin-top: 13px;
}
.booking-help {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
}
.booking-help a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.demo-contact-note {
  font-size: 13px;
  margin-top: 30px;
}
.demo-contact-note .text-link {
  margin-top: 5px;
}
.support-inline {
  background: #efeee9;
  padding-block: 48px;
}
.support-inline .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.support-inline h2 {
  font-size: 28px;
}
.support-inline p {
  font-size: 13px;
  margin-top: 16px;
}
.support-inline .eyebrow {
  font-size: 10px;
  margin-bottom: 13px;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-block: 35px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  padding: 35px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-featured {
  border-color: #d1a3ac;
  background: #faeeeb;
}
.price-card h2 {
  font-size: 30px;
}
.price-card h3 {
  font-size: 26px;
}
.price-card > p {
  font-size: 13px;
  margin-top: 16px;
}
.price-card > .big-price {
  font-size: 63px;
  margin-top: 22px;
  color: var(--ink);
}
.price-card .big-price strong {
  font-weight: 600;
}
.price-card .price-fine {
  font-size: 11px;
  margin-top: 15px;
}
.price-includes {
  padding: 0;
  list-style: none;
  border-top: 1px solid #dfd4d3;
  margin-top: 23px;
  padding-top: 17px;
}
.price-includes li {
  font-size: 12px;
  padding-block: 7px;
}
.price-includes li:before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
}
.price-card .button {
  margin-top: 25px;
  width: 100%;
}
.cost-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  margin-block: 25px;
}
.cost-table th,
.cost-table td {
  padding: 15px 13px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cost-table th {
  font-size: 11px;
  font-weight: 700;
  background: #efeee9;
}
.cost-table td:last-child {
  white-space: nowrap;
}
.cost-table caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 15px;
}
.price-section > .container > p {
  margin-top: 20px;
  font-size: 14px;
}
.price-section details {
  margin-block: 25px;
  border-block: 1px solid var(--line);
}
.price-section details .price-fine {
  padding-bottom: 20px;
}
.price-section .two-column {
  align-items: start;
}
.prose {
  max-width: 810px;
}
.prose h2 {
  font-size: 27px;
  letter-spacing: -0.03em;
  margin: 36px 0 16px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p {
  font-size: 14px;
  line-height: 1.95;
}
.prose .button {
  color: var(--ink);
  text-decoration: none;
}
.review-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.review-overview h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.review-overview p {
  margin-top: 16px;
}
.review-overview .eyebrow {
  font-size: 10px;
}
.review-explanation {
  padding-top: 35px;
  max-width: 860px;
}
.review-explanation p {
  font-size: 13px;
  line-height: 1.85;
}
.review-explanation .button {
  margin-top: 25px;
}
.review-tools {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 90;
}
.review-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 40px;
  border: 1px solid #474758;
  background: var(--ink);
  color: white;
  box-shadow: 0 5px 20px #18182c25;
  font-size: 11px;
  font-weight: 650;
}
.review-launcher svg {
  width: 18px;
  height: 18px;
}
.review-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #d8b692;
  border-radius: 50%;
}
.review-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 332px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  padding: 21px;
  box-shadow: 0 15px 60px #18182c25;
  max-height: calc(100dvh - 110px);
  overflow: auto;
}
.review-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.review-close {
  border: 0;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  width: 30px;
  height: 30px;
}
.review-panel > p {
  font-size: 11px;
  margin-top: 8px;
}
.review-panel fieldset {
  border: 0;
  padding: 0;
  margin: 23px 0 0;
}
.review-panel legend {
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 750;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.review-panel label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  padding: 10px 0;
}
.review-panel label input {
  margin: 0;
  width: 16px;
  height: 16px;
}
.review-panel small {
  font-size: 8px;
  background: #f3eeeb;
  color: var(--muted);
  padding: 3px 5px;
  border-radius: 4px;
  margin-left: auto;
}
.review-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.text-button {
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 10px;
  padding: 5px 0;
}
.review-exit {
  display: inline-block;
  font-size: 10px;
  margin-top: 17px;
  color: var(--muted);
}
.review-status {
  display: block;
  font-size: 10px;
  margin-top: 8px;
  color: var(--accent);
  min-height: 16px;
}
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 14px 22px;
  border-radius: 9px;
  font-size: 12px;
  z-index: 100;
}
@media (hover: hover) and (pointer: fine) {
  .button-primary:hover {
    background: var(--accent-dark);
  }
  .button-secondary:hover {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
  }
  .desktop-nav a:hover,
  .support-link:hover,
  .site-footer a:hover {
    color: var(--accent);
  }
  .journey-card:hover .journey-symbol {
    transform: translate(4px, -4px);
  }
  .text-link:hover {
    color: var(--accent);
  }
  .review-launcher:hover {
    background: #303047;
  }
}
@media (min-width: 1450px) {
  .hero-copy h1 {
    font-size: 69px;
  }
  .hero-grid {
    gap: 70px;
  }
  .hero-image-wrap {
    height: 558px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav-shell {
    gap: 25px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .brand img {
    width: 157px;
  }
  .nav-actions {
    gap: 17px;
  }
  .hero-grid {
    gap: 34px;
  }
  .hero-copy h1 {
    font-size: 53px;
  }
  .hero-image-wrap {
    height: 485px;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    padding: 13px 14px;
    font-size: 11px;
    gap: 9px;
  }
  .two-column {
    gap: 50px;
  }
  .platform-layout {
    gap: 45px;
  }
  .footer-grid {
    gap: 25px;
  }
  .journey-symbol {
    right: 4px;
    opacity: 0.13;
  }
}
@media (max-width: 1050px) {
  .desktop-nav,
  .support-link {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .nav-shell {
    height: 78px;
  }
  .hero-copy h1 {
    font-size: 49px;
  }
  .hero-grid {
    gap: 27px;
  }
  .hero-image-wrap {
    height: 460px;
  }
  .home-hero {
    padding-top: 50px;
  }
  .product-tag {
    left: -14px;
    padding: 11px;
    font-size: 10px;
    top: 27px;
  }
  .product-tag small {
    font-size: 9px;
  }
  .product-tag img {
    width: 34px;
    height: 34px;
    padding: 7px;
  }
  .hero-copy .lead {
    font-size: 14px;
  }
  .hero-actions .button {
    font-size: 11px;
  }
  .section {
    padding-block: 78px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-intro {
    max-width: 275px;
    font-size: 13px;
  }
  .feature-list h3 {
    font-size: 18px;
  }
  .feature-list article {
    gap: 17px;
    padding-block: 20px;
  }
  .feature-list p {
    font-size: 12px;
  }
  .journey-card {
    padding: 30px;
    min-height: 337px;
  }
  .journey-card h3 {
    font-size: 35px;
  }
  .journey-card p {
    max-width: 230px;
  }
  .price-teaser-card {
    padding: 30px;
  }
  .references-section .container {
    gap: 35px;
  }
  .reference-grid article {
    padding-left: 22px;
  }
  .reference-number {
    font-size: 56px;
  }
  .reference-intro h2 {
    font-size: 26px;
  }
  .support-phone {
    font-size: 28px;
  }
  .support-card {
    padding-left: 28px;
  }
  .cta-band h2 {
    font-size: 35px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
  }
  .footer-grid > div {
    padding-bottom: 10px;
  }
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .card {
    padding: 23px;
  }
  .card h3 {
    font-size: 20px;
  }
  .page-hero .two-column {
    gap: 38px;
  }
  .page-hero .hero-copy h1 {
    font-size: 46px;
  }
  .page-hero .card {
    padding: 28px;
  }
  .page-hero .card h2 {
    font-size: 26px;
  }
  .page-hero .button + .button {
    margin-left: 0;
  }
  .booking-card {
    padding: 30px;
  }
  .booking-card h2 {
    font-size: 32px;
  }
}
@media (max-width: 760px) {
  :root {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 44px);
  }
  .nav-shell {
    height: 74px;
    gap: 15px;
  }
  .brand img {
    width: 153px;
  }
  .nav-actions {
    gap: 12px;
  }
  .nav-actions .button {
    font-size: 11px;
    padding: 10px 13px;
    min-height: 42px;
    gap: 10px;
  }
  .nav-actions .button svg {
    width: 17px;
    height: 17px;
  }
  .menu-toggle {
    width: 40px;
    height: 42px;
    padding: 11px 9px;
  }
  .home-hero {
    padding: 40px 0 34px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-copy > .eyebrow {
    margin-bottom: 19px;
    font-size: 10px;
  }
  .hero-copy h1 {
    font-size: clamp(43px, 7.6vw, 58px);
    max-width: 560px;
  }
  .hero-copy .lead {
    font-size: 15px;
    max-width: 540px;
    line-height: 1.85;
    margin-top: 23px;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 11px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 14px 18px;
    gap: 15px;
    min-height: 48px;
  }
  .hero-note {
    margin-top: 21px;
    font-size: 10px;
  }
  .hero-visual {
    padding-bottom: 15px;
    padding-top: 0;
  }
  .hero-image-wrap {
    height: auto;
    aspect-ratio: 1.12;
    max-height: 530px;
    border-radius: 13px;
  }
  .hero-photo {
    object-position: 50% 53%;
  }
  .product-tag {
    left: 12px;
    top: 13px;
    font-size: 11px;
    border-radius: 10px;
    padding: 11px 14px;
  }
  .product-tag small {
    font-size: 9px;
  }
  .hero-stamp {
    width: 86px;
    height: 86px;
    font-size: 10px;
    right: 9px;
    bottom: 0;
  }
  .image-caption {
    left: 20px;
    bottom: 23px;
  }
  .image-caption span {
    font-size: 10px;
  }
  .image-caption strong {
    font-size: 17px;
  }
  .desktop-break {
    display: none;
  }
  .value-strip {
    padding-block: 20px;
  }
  .value-strip .container {
    gap: 10px;
  }
  .value-strip span {
    font-size: 10px;
    gap: 8px;
    line-height: 1.5;
    max-width: 100px;
    align-items: start;
  }
  .value-strip b {
    font-size: 9px;
    padding-top: 1px;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 35px;
  }
  .section-intro {
    max-width: 500px;
    font-size: 14px;
    margin-top: 21px;
  }
  .platform-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .platform-photo {
    aspect-ratio: 1.16;
    max-height: 490px;
  }
  .feature-list h3 {
    font-size: 22px;
  }
  .feature-list p {
    font-size: 14px;
  }
  .feature-list article {
    gap: 22px;
    padding-block: 22px;
  }
  .feature-list .feature-number {
    padding-top: 6px;
  }
  .feature-list > .text-link {
    margin-top: 24px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .journey-card {
    min-height: 325px;
    padding: 30px;
  }
  .journey-card h3 {
    font-size: 38px;
  }
  .journey-card p {
    max-width: 265px;
    font-size: 13px;
  }
  .journey-symbol {
    opacity: 0.19;
    right: 26px;
    bottom: 43px;
  }
  .journey-open .journey-symbol {
    right: 18px;
    bottom: 49px;
  }
  .two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .price-teaser .lead {
    font-size: 15px;
    max-width: 510px;
  }
  .price-teaser-card {
    padding: 30px;
  }
  .price-teaser-card .big-price {
    font-size: 63px;
  }
  .price-teaser-card p:not(.big-price) {
    font-size: 13px;
  }
  .setup-section {
    padding-top: 0;
  }
  .setup-section .two-column > .setup-art {
    order: 2;
    margin-top: 6px;
  }
  .setup-section .lead {
    font-size: 16px;
  }
  .setup-section p:not(.lead) {
    font-size: 14px;
  }
  .references-section {
    padding-block: 52px;
  }
  .references-section .container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .reference-intro h2 {
    font-size: 28px;
  }
  .reference-intro p {
    font-size: 13px;
    max-width: 460px;
  }
  .reference-grid article {
    padding-left: 25px;
  }
  .reference-number {
    font-size: 62px;
    margin-top: 23px;
  }
  .reference-number span {
    font-size: 11px;
  }
  .customer-name {
    font-size: 14px;
  }
  .support-card {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 30px;
  }
  .support-phone {
    font-size: 33px;
  }
  .support-hours {
    font-size: 12px;
  }
  .support-section .lead {
    max-width: 530px;
    font-size: 15px;
  }
  .faq-section {
    padding-top: 55px;
  }
  .faq-section .two-column {
    gap: 30px;
  }
  .faq-section p {
    font-size: 14px;
    margin-top: 19px;
  }
  summary {
    font-size: 14px;
    padding-block: 21px;
  }
  .faq-answer,
  .faq-list details > p,
  .faq-list details > div {
    font-size: 13px;
    padding-right: 5px;
  }
  .cta-band {
    padding-block: 50px;
  }
  .cta-band .container {
    display: block;
  }
  .cta-band h2 {
    font-size: 34px;
  }
  .cta-band p {
    font-size: 14px;
    margin-top: 20px;
  }
  .cta-band .button {
    margin-top: 25px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 23px;
    padding-bottom: 36px;
  }
  .footer-brand .brand img {
    width: 148px;
  }
  .footer-brand p {
    font-size: 12px;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 11px;
    overflow-wrap: anywhere;
  }
  .site-footer h2 {
    font-size: 11px;
    margin-bottom: 15px;
  }
  .footer-grid > div > p {
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 9px;
    align-items: flex-start;
  }
  .footer-origin {
    flex-direction: column;
  }
  .footer-bottom > div {
    gap: 10px;
    flex-direction: column;
    text-align: right;
  }
  .page-hero {
    padding: 45px 0 52px;
  }
  .page-hero .hero-copy h1,
  .page-hero h1 {
    font-size: 44px;
    max-width: 570px;
  }
  .page-hero .hero-copy .lead {
    font-size: 15px;
  }
  .page-hero .two-column {
    gap: 35px;
  }
  .page-hero .card {
    padding: 28px;
  }
  .page-hero .card h2 {
    font-size: 29px;
  }
  .page-hero .button {
    font-size: 12px;
    gap: 13px;
    margin-top: 23px;
  }
  .page-hero .button + .button {
    margin-left: 5px;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 29px;
  }
  .card {
    padding: 28px;
  }
  .card h3 {
    font-size: 23px;
  }
  .card p {
    font-size: 14px;
  }
  .card .feature-number {
    margin-bottom: 20px;
  }
  .steps-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .step {
    gap: 19px;
    padding-block: 24px;
  }
  .step h3 {
    font-size: 23px;
    max-width: 100%;
  }
  .step p {
    font-size: 14px;
    max-width: 100%;
  }
  .check-list li {
    font-size: 14px;
  }
  .page-hero .check-list {
    margin-block: 20px;
  }
  .booking-card {
    padding: 29px;
  }
  .booking-card .button {
    font-size: 13px;
  }
  .booking-card h2 {
    font-size: 35px;
  }
  .booking-card .booking-note {
    font-size: 11px;
  }
  .booking-facts span {
    font-size: 11px;
  }
  .booking-help {
    font-size: 13px;
  }
  .demo-contact-note {
    margin-top: 22px;
  }
  .demo-prep .card-grid {
    margin-top: 28px;
  }
  .support-inline {
    padding-block: 38px;
  }
  .support-inline .container {
    display: block;
  }
  .support-inline .button {
    margin-top: 22px;
  }
  .support-inline h2 {
    font-size: 28px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .price-card {
    padding: 29px;
  }
  .price-card .big-price {
    font-size: 62px;
  }
  .price-card .price-fine {
    font-size: 12px;
  }
  .price-includes li {
    font-size: 13px;
  }
  .cost-table {
    font-size: 12px;
  }
  .cost-table th,
  .cost-table td {
    padding: 13px 8px;
  }
  .prose h2 {
    font-size: 25px;
  }
  .prose p {
    font-size: 14px;
  }
  .review-overview {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-overview h2 {
    font-size: 28px;
  }
  .review-tools {
    right: 14px;
    bottom: 14px;
  }
  .review-panel {
    width: min(332px, calc(100vw - 28px));
  }
  .review-launcher {
    font-size: 11px;
  }
  .review-explanation p {
    font-size: 13px;
  }
  .page-hero > .container > .lead {
    font-size: 16px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 34px);
  }
  .brand img {
    width: 133px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .button {
    padding: 10px 11px;
    font-size: 10px;
    gap: 8px;
  }
  .nav-actions .button svg {
    display: none;
  }
  .hero-copy h1 {
    font-size: 41px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 13px 12px;
    gap: 9px;
  }
  .hero-note {
    font-size: 9px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .value-strip span {
    font-size: 9px;
    gap: 5px;
  }
  .value-strip b {
    font-size: 8px;
  }
  .journey-card {
    padding: 25px;
  }
  .journey-symbol {
    right: 12px;
    font-size: 126px;
  }
  .journey-open .journey-symbol {
    font-size: 134px;
  }
  .price-teaser-card,
  .booking-card,
  .price-card {
    padding: 24px;
  }
  .support-phone {
    font-size: 29px;
  }
  .reference-grid article {
    padding-left: 18px;
  }
  .customer-name {
    font-size: 12px;
  }
  .reference-number span {
    font-size: 10px;
  }
  .page-hero .hero-copy h1,
  .page-hero h1 {
    font-size: 39px;
  }
  .page-hero .button + .button {
    margin-left: 0;
  }
  .footer-grid {
    gap: 25px 19px;
  }
  .footer-brand .brand img {
    width: 130px;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 10px;
  }
  .footer-brand span {
    font-size: 9px;
  }
  .booking-facts {
    gap: 10px;
  }
  .booking-facts span {
    font-size: 10px;
  }
  .cta-band h2 {
    font-size: 31px;
  }
  .cost-table {
    font-size: 11px;
  }
  .cost-table th,
  .cost-table td {
    padding: 11px 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0s !important;
  }
  .button:active {
    transform: none;
  }
  .journey-card:hover .journey-symbol {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .review-tools,
  .button,
  .support-inline {
    display: none !important;
  }
  .container {
    width: 100%;
    max-width: none;
  }
  .section,
  .page-hero {
    padding-block: 20px;
  }
  body {
    background: white;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .two-column {
    gap: 25px;
  }
  .price-card {
    break-inside: avoid;
  }
  .faq-list details > * {
    display: block;
  }
  a {
    color: black;
  }
}

.demo-mobile-cta {
  display: none;
}
@media (max-width: 760px) {
  .demo-mobile-cta {
    display: block;
  }
  .page-hero .demo-mobile-cta .button {
    margin-top: 23px;
  }
}

.footer-tracking {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: inherit;
}
.footer-tracking:hover { text-decoration: underline; }
.footer-bottom > div { flex-wrap: wrap; }
.tracking-settings { padding: 20px; border: 1px solid var(--line); border-radius: 12px; }
.tracking-feedback { color: var(--accent-dark); }
.tracking-feedback:empty { display: none; }

.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 24px; }
.team-card { min-width: 0; }
.team-card > img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: var(--radius); }
.team-details { padding: 18px 2px 0; }
.team-details h3 { margin: 0 0 4px; font-size: 25px; letter-spacing: -.03em; }
.team-role { margin: 0 0 8px; color: var(--muted); }
.team-digital { margin: 6px 0; font-size: 13px; color: var(--muted); }
.team-email { display: inline-block; text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.team-email:hover { color: var(--accent-dark); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Visible navigation mirrors BreadcrumbList structured data. */
.breadcrumbs { padding-top: 24px; font-size: .85rem; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }

.company-address { font-style: normal; margin: 24px 0; line-height: 1.7; }

.case-photo { display: block; width: 100%; height: auto; aspect-ratio: 1.83; object-fit: cover; border-radius: 16px; }
.case-note { font-size: .875rem; color: var(--muted, #555); }
