:root {
  --brand-orange: #d7542f;
  --brand-gold: #f6bf1d;
  --brand-blue: #1f6f9d;
  --brand-navy: #153f67;
  --brand-ink: #111111;
  --brand-muted: #4d5967;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(17, 17, 17, 0.08);
  --page-bg:
    radial-gradient(circle at top left, rgba(31, 111, 157, 0.14), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(215, 84, 47, 0.12), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 56%, #f7fbff 100%);
  --shadow-soft: 0 20px 70px rgba(21, 63, 103, 0.09);
  --shadow-large: 0 40px 120px rgba(21, 63, 103, 0.16);
  --radius-pill: 999px;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1320px;
  --benefit-card-mobile-height: 430px;
  --benefit-card-mobile-visual-height: 176px;
  --story-card-mobile-height: 516px;
  --story-card-mobile-visual-height: 188px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--brand-ink);
  background: var(--page-bg);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.booking-modal-open {
  overflow: hidden;
}

.booking-modal[hidden],
.booking-extra-fields[hidden],
.calendar-popover[hidden] {
  display: none !important;
}

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

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

button {
  font: inherit;
}

.site-shell {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  padding: 10px 0;
}

.navbar-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.navbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

.brand-wordmark {
  width: 160px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  align-items: center;
  gap: 28px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: clamp(22px, 2vw, 34px);
}

.nav-links a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--brand-muted);
  transition: color 0.24s ease;
}

.nav-links a::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--brand-ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-dropdown-details[open] > .nav-dropdown-trigger::after,
.nav-dropdown-details.is-current > .nav-dropdown-trigger::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-details {
  position: relative;
}

.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-muted);
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: color 0.24s ease;
}

.nav-dropdown-trigger::-webkit-details-marker {
  display: none;
}

.nav-dropdown-details.is-current > .nav-dropdown-trigger {
  color: var(--brand-ink);
}

.nav-dropdown-caret {
  width: 14px;
  height: 14px;
  color: currentColor;
  transition: transform 0.24s ease;
}

.nav-dropdown-caret path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown-details[open] .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  display: grid;
  gap: 6px;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(21, 63, 103, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-details[open] .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--brand-muted);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  content: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(215, 84, 47, 0.08);
  color: var(--brand-ink);
}

.nav-cta,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.nav-cta {
  background: var(--brand-ink);
  color: #ffffff;
}

.hero-cta {
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(215, 84, 47, 0.24);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--brand-navy);
  box-shadow: 0 18px 36px rgba(21, 63, 103, 0.16);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: #c94924;
  box-shadow: 0 22px 46px rgba(215, 84, 47, 0.3);
}

.nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  flex-direction: column;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-ink);
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.site-header {
  padding: 54px 0 88px;
  overflow: clip;
}

.hero {
  padding: clamp(34px, 5vw, 76px) 0 0;
  text-align: center;
}

.hero-copy {
  max-width: 1080px;
  margin: 0 auto;
}

.hero h1 {
  max-width: 750px;
  margin: 0 auto 22px;
  font-size: clamp(2.7rem, 4.6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.042em;
  font-weight: 700;
}

.hero p {
  max-width: 750px;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.95;
  font-weight: 400;
}

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

.hero-visual {
  position: relative;
  margin-top: clamp(44px, 6vw, 76px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -30px 6% auto;
  height: 58%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 45%, rgba(215, 84, 47, 0.18), transparent 32%),
    radial-gradient(circle at 80% 25%, rgba(31, 111, 157, 0.26), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(246, 191, 29, 0.18), transparent 24%);
  filter: blur(34px);
  z-index: 0;
}

.hero-visual-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 14px);
  border-radius: clamp(28px, 2vw, 40px);
  background:
    linear-gradient(135deg, rgba(21, 63, 103, 0.96), rgba(31, 111, 157, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-large);
}

.hero-dashboard-image {
  width: 100%;
  height: auto;
  border-radius: clamp(20px, 1.8vw, 30px);
  background: var(--surface-strong);
}

.benefits-section {
  padding: 88px 0 104px;
}

.benefits-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  margin-bottom: 14px;
  color: var(--brand-orange);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefits-intro h2 {
  max-width: 650px;
  margin: 0 auto 18px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.benefits-intro > p:last-child {
  max-width: 750px;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.benefits-heading {
  margin-top: 46px;
  margin-bottom: 22px;
  text-align: center;
}

.benefits-heading h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.benefits-slider {
  max-width: 940px;
  margin: 0 auto;
}

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

.benefit-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 22px 52px rgba(21, 63, 103, 0.08);
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.benefit-visual {
  position: relative;
  height: 156px;
  padding: 16px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(247, 251, 255, 0.92), rgba(255, 250, 245, 0.82));
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.benefit-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 28%, rgba(31, 111, 157, 0.12), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(215, 84, 47, 0.12), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(246, 191, 29, 0.1), transparent 22%);
}

.benefit-copy {
  padding: 14px 16px 18px;
  text-align: center;
}

.benefit-number {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.benefit-copy h4 {
  max-width: 18ch;
  margin: 0 auto 8px;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.benefit-copy p {
  max-width: 34ch;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.benefit-visual > * {
  position: relative;
  z-index: 1;
}

.benefit-image-stage {
  width: min(100%, 304px);
  height: 124px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(21, 63, 103, 0.12);
  overflow: hidden;
}

.benefit-image-stage--team {
  padding: 0;
  background: rgba(255, 255, 255, 0.88);
}

.benefit-card--website .benefit-image-stage,
.benefit-card--dashboard .benefit-image-stage {
  width: 100%;
  height: 140px;
}

.benefit-visual--screenshot .benefit-image-stage {
  padding: 0;
}

.benefit-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
}

.benefit-showcase-image--booking {
  object-fit: cover;
  object-position: center top;
  /*border-radius: 20px;*/
}

.benefit-showcase-image--team {
  object-fit: cover;
  object-position: center top;
  /*border-radius: 20px;*/
}

.brand-card-grid {
  width: min(100%, 304px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.brand-logo-card {
  min-height: 124px;
  padding: 14px 10px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 14px 28px rgba(21, 63, 103, 0.09);
}

.brand-logo-card--blue {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(236, 245, 251, 0.98)
  );
}

.brand-logo-card--white {
  background: linear-gradient(
    180deg,
    rgba(21, 63, 103, 0.98),
    rgba(31, 111, 157, 0.94)
  );
}

.brand-logo-card--orange {
  background: linear-gradient(
    180deg,
    rgba(255, 250, 247, 0.98),
    rgba(255, 236, 227, 0.98)
  );
}

.brand-logo-card img {
  width: 100%;
  max-width: 68px;
  max-height: 68px;
  object-fit: contain;
}

.implementation-diagram {
  width: min(100%, 304px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(72px, 1fr) 24px 68px 24px minmax(72px, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 124px;
}

.implementation-hub {
  width: 68px;
  height: 68px;
  padding: 11px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(21, 63, 103, 0.12);
}

.implementation-hub img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-card {
  width: 100%;
  padding: 10px 10px;
  text-align: center;
}

.flow-card--new {
  justify-self: end;
}

.flow-card--existing {
  justify-self: start;
}

.implementation-arrow {
  position: relative;
  display: block;
  height: 2px;
  border-radius: 999px;
}

.implementation-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
}

.implementation-arrow--left {
  background: linear-gradient(
    90deg,
    rgba(31, 111, 157, 0.72),
    rgba(31, 111, 157, 0.24)
  );
}

.implementation-arrow--left::after {
  left: 0;
  border-top: 2px solid rgba(31, 111, 157, 0.84);
  border-left: 2px solid rgba(31, 111, 157, 0.84);
  transform: translate(-1px, -50%) rotate(-45deg);
}

.implementation-arrow--right {
  background: linear-gradient(
    90deg,
    rgba(215, 84, 47, 0.24),
    rgba(215, 84, 47, 0.78)
  );
}

.implementation-arrow--right::after {
  right: 0;
  border-top: 2px solid rgba(215, 84, 47, 0.88);
  border-right: 2px solid rgba(215, 84, 47, 0.88);
  transform: translate(1px, -50%) rotate(45deg);
}

.mock-browser {
  position: relative;
  z-index: 1;
  width: min(100%, 270px);
  margin: 2px auto 0;
  padding: 8px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(21, 63, 103, 0.1);
}

.mock-browser-top {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.mock-browser-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(21, 63, 103, 0.22);
}

.mock-browser-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 7px;
}

.mock-browser-sidebar {
  min-height: 66px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(21, 63, 103, 0.12), rgba(21, 63, 103, 0.04));
}

.mock-browser-content {
  display: grid;
  gap: 10px;
}

.mock-browser-content span {
  display: block;
  height: 15px;
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(31, 111, 157, 0.22), rgba(215, 84, 47, 0.12));
}

.floating-booking-card {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(21, 63, 103, 0.12);
}

.floating-booking-card strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.floating-booking-card span {
  color: var(--brand-muted);
  font-size: 0.72rem;
}

.brand-orbit {
  position: relative;
  z-index: 1;
  min-height: 118px;
}

.brand-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(21, 63, 103, 0.1);
}

.brand-core img {
  width: 54px;
  height: 54px;
}

.orbit-chip {
  position: absolute;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 24px rgba(21, 63, 103, 0.08);
}

.orbit-chip--orange {
  top: 16px;
  left: 16px;
  color: var(--brand-orange);
}

.orbit-chip--blue {
  top: 22px;
  right: 16px;
  color: var(--brand-blue);
}

.orbit-chip--gold {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #ab7b00;
}

.mock-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  width: min(100%, 278px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(21, 63, 103, 0.1);
}

.mock-dashboard-sidebar {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(21, 63, 103, 0.9), rgba(31, 111, 157, 0.78));
}

.mock-dashboard-main {
  display: grid;
  gap: 8px;
}

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

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

.tile {
  display: block;
  min-height: 30px;
  border-radius: 11px;
  background: rgba(21, 63, 103, 0.12);
}

.tile--navy {
  background: rgba(21, 63, 103, 0.16);
}

.tile--orange {
  background: rgba(215, 84, 47, 0.2);
}

.tile--blue {
  min-height: 42px;
  background: rgba(31, 111, 157, 0.18);
}

.tile--soft {
  background: rgba(21, 63, 103, 0.08);
}

.tile--green {
  background: rgba(93, 168, 138, 0.2);
}

.implementation-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 118px;
}

.flow-card {
  width:  100px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(21, 63, 103, 0.1);
}

.flow-card strong,
.flow-card span {
  display: block;
}

.flow-card strong {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.flow-card span {
  color: var(--brand-muted);
  font-size: 0.6rem;
}

.flow-card--secondary {
  justify-self: end;
}

.flow-connector {
  width: calc(100% - 98px);
  height: 2px;
  justify-self: center;
  background:
    linear-gradient(90deg, rgba(215, 84, 47, 0.5), rgba(31, 111, 157, 0.5));
  position: relative;
}

.flow-connector::before,
.flow-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(21, 63, 103, 0.22);
  transform: translateY(-50%);
}

.flow-connector::before {
  left: -4px;
}

.flow-connector::after {
  right: -4px;
}

.benefits-slider-controls {
  display: none;
}

.direct-booking-section {
  padding: 32px 0 112px;
}

.direct-booking-intro {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}

.direct-booking-intro h2 {
max-width: 650px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.direct-booking-intro > p:last-child {
max-width: 750px;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.direct-booking-stories {
  display: grid;
  gap: 72px;
}

.direct-booking-slider-controls {
  display: none;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 52px;
}

.story-row--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.story-copy {
  max-width: 520px;
}

.story-kicker {
  margin-bottom: 12px;
  color: var(--brand-orange);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.story-copy > p {
  color: var(--brand-muted);
  font-size: 1.04rem;
  line-height: 1.86;
}

.story-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.story-list li {
  position: relative;
  padding-left: 30px;
  color: var(--brand-ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #f0b61b;
  box-shadow: 0 10px 20px rgba(240, 182, 27, 0.28);
}

.story-visual {
  position: relative;
}

.story-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 12px;

}

.story-image {
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  background: #ffffff;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: auto 8% -5% 8%;
  height: 26%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(215, 84, 47, 0.18), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(31, 111, 157, 0.24), transparent 28%);
  filter: blur(34px);
  z-index: 0;
}

.story-image-frame,
.story-floating-card {
  position: relative;
  z-index: 1;
}

.story-floating-card {
  position: absolute;
  bottom: -22px;
  right: 26px;
  max-width: 260px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 18px 42px rgba(21, 63, 103, 0.12);
}

.story-floating-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(215, 84, 47, 0.1);
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.story-floating-card p {
  color: var(--brand-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.story-row--reverse .story-copy {
  order: 2;
  margin-left: auto;
}

.story-row--reverse .story-visual {
  order: 1;
}

.story-floating-card--team {
  right: auto;
  left: 26px;
}

.story-floating-card--business {
  top: 26px;
  right: auto;
  bottom: auto;
  left: 26px;
}

.story-floating-card--client .story-floating-label {
  background: rgba(31, 111, 157, 0.1);
  color: var(--brand-blue);
}

.how-it-works-section {
  position: relative;
  padding: 88px 0 104px;
  background:
    radial-gradient(circle at 12% 16%, rgba(215, 84, 47, 0.1), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(31, 111, 157, 0.12), transparent 28%);
}

.how-it-works-intro {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.how-it-works-intro h2 {
  max-width: 650px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.how-it-works-intro > p:last-child {
  max-width:750px;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.implementation-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.implementation-option-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(215, 84, 47, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 241, 0.95)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 54px rgba(21, 63, 103, 0.08);
}

.implementation-option-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(215, 84, 47, 0.16), transparent 72%);
  transform: translate(-26%, -24%);
  pointer-events: none;
}

.implementation-option-card--secondary {
  border-color: rgba(31, 111, 157, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.94)),
    rgba(255, 255, 255, 0.92);
}

.implementation-option-card--secondary::before {
  background: radial-gradient(circle, rgba(31, 111, 157, 0.16), transparent 72%);
}

.implementation-option-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 84, 47, 0.1);
  color: var(--brand-orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.implementation-option-card--secondary .implementation-option-tag {
  background: rgba(31, 111, 157, 0.1);
  color: var(--brand-blue);
}

.implementation-option-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.implementation-option-card p {
  max-width: 44ch;
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.82;
}

.implementation-steps {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 0 34px;
  
}

.implementation-steps::before {
  content: "";
  position: absolute;
  inset: auto -4% -20% auto;
  width: 240px;
  height: 240px;
  /*background: radial-gradient(circle, rgba(246, 191, 29, 0.18), transparent 70%);*/
  pointer-events: none;
}

.implementation-steps-intro {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 40px;
}

.implementation-steps-intro h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;

}

.implementation-steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.implementation-step-card {
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.implementation-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.implementation-step-card:nth-child(2) .implementation-step-number {
  color: var(--brand-orange);
}

.implementation-step-card:nth-child(3) .implementation-step-number {
  color: var(--brand-gold);
}

.implementation-step-card h4 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.implementation-step-card p {
  color: var(--brand-muted);
  font-size: 0.98rem;
  line-height: 1.76;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(215, 84, 47, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(31, 111, 157, 0.16), transparent 32%),
    rgba(12, 24, 38, 0.56);
  backdrop-filter: blur(12px);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(92vh, 920px);
  overflow: auto;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.96)),
    #ffffff;
  box-shadow: 0 36px 120px rgba(10, 27, 42, 0.28);
}

.booking-modal-panel {
  padding: 34px;
}

.booking-modal-copy {
  max-width: 680px;
  margin: 0 auto;
  padding: 6px 54px 0;
  text-align: center;
}

.booking-modal-copy h2 {
  max-width: none;
  margin-inline: auto;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.booking-modal-copy p:not(.section-label) {
  margin-inline: auto;
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.82;
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(21, 63, 103, 0.12);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.booking-modal-close:hover,
.booking-modal-close:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(21, 63, 103, 0.16);
}

.booking-form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.booking-form-intro {
  max-width: 64ch;
  margin-inline: auto;
  color: var(--brand-muted);
  font-size: 0.96rem;
  line-height: 1.72;
  text-align: center;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px 18px;
}

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

.booking-field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.booking-field label {
  color: var(--brand-ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.booking-field input,
.booking-field select,
.calendar-trigger {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.booking-field input::placeholder {
  color: rgba(77, 89, 103, 0.7);
}

.booking-field input:focus,
.booking-field select:focus,
.calendar-trigger:focus-visible {
  outline: none;
  border-color: rgba(31, 111, 157, 0.36);
  box-shadow:
    0 0 0 4px rgba(31, 111, 157, 0.12),
    0 16px 38px rgba(21, 63, 103, 0.08);
  background: #ffffff;
}

.booking-field select:disabled {
  cursor: not-allowed;
  color: rgba(77, 89, 103, 0.78);
  background: rgba(245, 247, 250, 0.96);
}

.booking-field-help {
  color: var(--brand-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.booking-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.booking-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.booking-tooltip-trigger {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(31, 111, 157, 0.2);
  border-radius: 999px;
  background: rgba(31, 111, 157, 0.08);
  color: var(--brand-blue);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: help;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-tooltip-text {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 64px));
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(17, 24, 33, 0.96);
  color: #f7fbff;
  font-size: 0.82rem;
  line-height: 1.6;
  box-shadow: 0 18px 34px rgba(10, 27, 42, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  pointer-events: none;
  z-index: 3;
}

.booking-tooltip:hover .booking-tooltip-text,
.booking-tooltip:focus-within .booking-tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.booking-field-date {
  position: relative;
  z-index: 4;
}

.calendar-field {
  position: relative;
  z-index: 4;
}

.calendar-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}

.calendar-trigger.is-placeholder {
  color: rgba(77, 89, 103, 0.72);
}

.calendar-trigger-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.calendar-trigger-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 40;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 252, 255, 0.98)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(21, 63, 103, 0.16);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.calendar-header strong {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.calendar-nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.calendar-nav:hover:not(:disabled),
.calendar-nav:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(21, 63, 103, 0.12);
}

.calendar-nav:disabled {
  opacity: 0.42;
  cursor: default;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 10px;
}

.calendar-weekdays span {
  text-align: center;
  color: rgba(77, 89, 103, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-day-spacer {
  aspect-ratio: 1;
}

.calendar-day {
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  background: rgba(246, 247, 249, 0.94);
  color: rgba(77, 89, 103, 0.82);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.calendar-day:disabled {
  cursor: default;
}

.calendar-day.is-today {
  border-color: rgba(21, 63, 103, 0.2);
}

.calendar-day.is-available {
  background: rgba(31, 111, 157, 0.1);
  border-color: rgba(31, 111, 157, 0.18);
  color: var(--brand-blue);
}

.calendar-day.is-available:hover,
.calendar-day.is-available:focus-visible {
  transform: translateY(-1px);
  background: rgba(31, 111, 157, 0.15);
  box-shadow: 0 12px 22px rgba(21, 63, 103, 0.1);
}

.calendar-day.is-selected {
  background: linear-gradient(135deg, var(--brand-orange), #ee7a44);
  border-color: rgba(215, 84, 47, 0.32);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(215, 84, 47, 0.24);
}

.calendar-status {
  margin-top: 14px;
  color: var(--brand-muted);
  font-size: 0.85rem;
  line-height: 1.62;
}

.calendar-status.is-error {
  color: #b64320;
}

.calendar-legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(77, 89, 103, 0.82);
  font-size: 0.8rem;
  line-height: 1.5;
}

.calendar-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(31, 111, 157, 0.56);
  box-shadow: 0 8px 18px rgba(31, 111, 157, 0.18);
  flex-shrink: 0;
}

.booking-extra-fields {
  margin-top: 0;
}

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

.booking-human-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    border-color 0.22s ease,
    background 0.22s ease;
}

.booking-human-card.is-checked {
  border-color: transparent;
}

.booking-human-card.is-verified {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.booking-human-card.is-error {
  border-color: transparent;
  background: transparent;
}

.booking-human-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
  cursor: pointer;
}

.booking-human-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-human-box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 7px;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.booking-human-icon {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0.75);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.booking-human-icon path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-human-control input:focus-visible + .booking-human-box {
  border-color: rgba(31, 111, 157, 0.42);
  box-shadow: 0 0 0 3px rgba(31, 111, 157, 0.12);
}

.booking-human-control input:checked + .booking-human-box {
  transform: none;
  border-color: rgba(215, 84, 47, 0.72);
  background: var(--brand-orange);
  box-shadow: none;
}

.booking-human-card.is-error .booking-human-box {
  border-color: rgba(182, 67, 32, 0.46);
}

.booking-human-control input:checked + .booking-human-box .booking-human-icon {
  opacity: 1;
  transform: scale(1);
}

.booking-human-copy {
  display: block;
  min-width: 0;
}

.booking-human-copy strong {
  display: block;
  color: var(--brand-ink);
  font-size: 0.94rem;
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 600;
}

.booking-human-copy a {
  color: var(--brand-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.booking-human-copy a:hover,
.booking-human-copy a:focus-visible {
  color: #c94924;
}

.booking-human-copy span {
  display: none;
  color: var(--brand-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking-human-badge {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 84, 47, 0.1);
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-human-card.is-verified .booking-human-badge {
  background: rgba(31, 111, 157, 0.1);
  color: var(--brand-blue);
}

.booking-human-status {
  display: none;
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.booking-human-status.is-ready {
  color: var(--brand-blue);
}

.booking-human-status.is-error {
  color: #b64320;
}

.booking-bot-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form-actions {
  margin-top: 6px;
  display: flex;
  justify-content: center;
}

.booking-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 250px;
  padding: 0 28px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-orange), #e66a3a);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 20px 44px rgba(215, 84, 47, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.booking-submit-button:hover,
.booking-submit-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(215, 84, 47, 0.28);
}

.booking-submit-button:disabled {
  cursor: not-allowed;
  filter: saturate(0.7);
  opacity: 0.84;
}

.dotbloom-section {
  padding: 104px 0;
  background: #d14d2f;
}

.dotbloom-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.dotbloom-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dotbloom-logo {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.dotbloom-copy {
  color: #fff8f3;
}

.dotbloom-label {
  color: var(--brand-gold);
}

.dotbloom-copy h2 {
  max-width: 12ch;
  margin-bottom: 5px;
  color: #fffaf6;
  font-size: clamp(2.2rem, 3.2vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.dotbloom-lead {
  margin-bottom: 22px;
  /*color: #ffe5d6;*/
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.55;
}

.dotbloom-copy p:not(.section-label):not(.dotbloom-lead) {
  max-width: 60ch;
  color: rgba(255, 244, 236, 0.9);
  font-size: 1.02rem;
  line-height: 1.86;
}

.dotbloom-copy p + p {
  margin-top: 16px;
}

.home-cta-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 132px;
  background:
    radial-gradient(
      circle at top left,
      rgba(209, 77, 47, 0.34) 0%,
      rgba(209, 77, 47, 0.18) 20%,
      rgba(209, 77, 47, 0.08) 32%,
      rgba(255, 255, 255, 0) 52%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(8, 70, 109, 0.3) 0%,
      rgba(8, 70, 109, 0.16) 20%,
      rgba(8, 70, 109, 0.08) 32%,
      rgba(255, 255, 255, 0) 52%
    ),
    #fffaf5;
}

.home-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(700px, 31vw, 430px);
  aspect-ratio: 1;
  background: url("media/logos-time-to-bloom/PF_original orange.png") center / contain
    no-repeat;
  opacity: 0.14;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: homeCtaSpin 32s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.home-cta-section::after {
  display: none;
}

.home-cta-panel {
  position: relative;
  z-index: 1;
  padding: 18px 0;
}

.home-cta-copy {
  position: relative;
  z-index: 1;
  max-width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

.home-cta-copy h2 {
  max-width: 650px;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.home-cta-copy p:not(.section-label) {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--brand-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.home-cta-button {
  justify-self: center;
  margin-top: 28px;
}

.site-footer {
  position: relative;
  padding: 88px 0 58px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #08466d;
  color: rgba(244, 249, 255, 0.92);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

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

.footer-brand h2,
.footer-column h3 {
  margin-bottom: 16px;
  color: var(--brand-gold);
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 600;
}

.footer-brand p {
  max-width: 42ch;
  color: rgba(224, 236, 247, 0.88);
  font-size: 0.98rem;
  line-height: 1.82;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(4, 29, 46, 0.12);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-social-icon svg * {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links li,
.footer-legal a,
.footer-legal span,
.footer-bottom p {
  color: rgba(224, 236, 247, 0.88);
  font-size: 0.96rem;
  line-height: 1.72;
}

.footer-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #ffffff;
}

.legal-page {
  background: var(--page-bg);
}

.legal-hero-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 54px;
}

.legal-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 111, 157, 0.12), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(215, 84, 47, 0.14), transparent 24%);
  pointer-events: none;
}

.legal-hero {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.legal-hero h1 {
  max-width: 13ch;
  margin: 0 auto 20px;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  text-wrap: balance;
}

.legal-hero p:not(.section-label) {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.legal-content-section {
  padding: 18px 0 104px;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
}

.legal-note {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(215, 84, 47, 0.16);
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.82);
  color: var(--brand-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-block {
  padding: 28px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.legal-block:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.legal-block h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.legal-block p,
.legal-block li {
  color: var(--brand-muted);
  font-size: 0.98rem;
  line-height: 1.86;
}

.legal-block p + p {
  margin-top: 12px;
}

.legal-block ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 20px;
}

@media (max-width: 820px) {
  .legal-hero-section {
    padding: 56px 0 38px;
  }

  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 8.5vw, 3.2rem);
  }

  .legal-content-section {
    padding-bottom: 76px;
  }

  .legal-note {
    padding: 16px;
    border-radius: 16px;
  }

  .legal-block {
    padding: 24px 0;
  }
}

@media (max-width: 520px) {
  .legal-hero-section {
    padding: 44px 0 30px;
  }

  .legal-hero p:not(.section-label),
  .legal-block p,
  .legal-block li {
    font-size: 0.94rem;
  }
}

.footer-links--muted li {
  max-width: 24ch;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 26px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px 26px;
  flex-wrap: wrap;
}

.nav-links a[aria-current="page"] {
  color: var(--brand-ink);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.pricing-page .navbar {
  background: rgba(255, 255, 255, 0.82);
}

.page-hero-section {
  position: relative;
  padding: 48px 0 40px;
  overflow: clip;
}

.page-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(31, 111, 157, 0.14), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(215, 84, 47, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 44px;
}

.page-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.page-hero-copy p:not(.section-label) {
  max-width: 58ch;
  color: var(--brand-muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-hero-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-ink);
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 36px rgba(21, 63, 103, 0.08);
}

.page-hero-secondary:hover,
.page-hero-secondary:focus-visible {
  background: #ffffff;
  color: var(--brand-navy);
}

.page-hero-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.page-hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--brand-ink);
  font-size: 0.96rem;
  line-height: 1.7;
}

.page-hero-points li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  transform: translateY(-50%);
}

.page-hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.page-hero-frame {
  width: min(100%, 640px);
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(14px);
}

.page-hero-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.page-hero-card,
.page-hero-stat,
.pricing-model-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 60px rgba(21, 63, 103, 0.12);
  backdrop-filter: blur(14px);
}

.page-hero-card {
  position: absolute;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.page-hero-card--website {
  top: 20px;
  left: 0;
}

.page-hero-card--saas {
  right: 0;
  bottom: 56px;
  background: linear-gradient(135deg, rgba(21, 63, 103, 0.96), rgba(31, 111, 157, 0.9));
  color: #ffffff;
}

.page-hero-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(215, 84, 47, 0.1);
  color: var(--brand-orange);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-hero-card--saas .page-hero-card-label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.page-hero-card strong,
.page-hero-stat strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.42rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.page-hero-card p,
.page-hero-stat span {
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-hero-card p {
  color: var(--brand-muted);
}

.page-hero-card--saas p,
.page-hero-stat span {
  color: rgba(244, 249, 255, 0.84);
}

.page-hero-stat {
  position: absolute;
  left: 48px;
  bottom: -16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(215, 84, 47, 0.94), rgba(246, 191, 29, 0.9));
  color: #ffffff;
}

.pricing-model-strip {
  padding: 0 0 34px;
}

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

.pricing-model-card {
  padding: 26px 26px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.pricing-model-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(215, 84, 47, 0.08);
  color: var(--brand-orange);
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.pricing-model-card h2 {
  max-width: 18ch;
  margin: 18px 0 14px;
  font-size: 1.42rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.pricing-model-card p {
  color: var(--brand-muted);
  line-height: 1.8;
}

.pricing-section--standalone {
  padding-top: 24px;
}

.pricing-section {
  position: relative;
  padding: 12px 0 104px;
  scroll-margin-top: 96px;
  overflow: clip;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 36px 0 auto;
  height: 560px;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 84, 47, 0.14), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(31, 111, 157, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.pricing-section .site-shell {
  position: relative;
  z-index: 1;
}

.pricing-intro {
  max-width: min(100%, 860px);
  margin: 0 auto;
  text-align: center;
}

.pricing-intro h2 {
  max-width: 14ch;
  margin: 0 auto 20px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.pricing-intro p:not(.section-label) {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--brand-muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.pricing-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.pricing-pillar,
.pricing-block,

.pricing-comparison-panel,
.pricing-fit-panel,
.pricing-faq-panel {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.pricing-pillar {
  padding: 28px 30px;
  border-radius: 30px;
}

.pricing-pillar--accent {
  background:
    linear-gradient(135deg, rgba(21, 63, 103, 0.96), rgba(31, 111, 157, 0.92));
  border-color: rgba(21, 63, 103, 0.22);
  color: #ffffff;
}

.pricing-pillar-tag,
.pricing-plan-tag,
.pricing-tier-users,
.pricing-tier-badge,
.pricing-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-pillar-tag,
.pricing-plan-tag,
.pricing-tier-users {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(215, 84, 47, 0.08);
  color: var(--brand-orange);
}

.pricing-pillar--accent .pricing-pillar-tag {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.pricing-pillar h3 {
  max-width: 18ch;
  margin: 16px 0 14px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.pricing-pillar p {
  max-width: 44ch;
  color: var(--brand-muted);
  line-height: 1.85;
}

.pricing-pillar--accent p {
  color: rgba(244, 249, 255, 0.84);
}

.pricing-block,
.pricing-included-panel,
.pricing-comparison-panel,
.pricing-fit-panel,
.pricing-faq-panel {
  margin-top: 32px;
  padding: 34px;
  border-radius: 34px;
}

.pricing-block-heading {
  max-width: min(100%, 760px);
  margin-bottom: 28px;
}

.pricing-block-heading--compact {
  margin-bottom: 24px;
}

.pricing-block-heading h3 {
  max-width: 22ch;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.pricing-block-heading p:not(.section-label) {
  max-width: 60ch;
  color: var(--brand-muted);
  line-height: 1.86;
}

.pricing-subgroup + .pricing-subgroup {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.pricing-subgroup-heading {
  max-width: min(100%, 720px);
  margin-bottom: 22px;
}

.pricing-subgroup-heading h4 {
  margin: 14px 0 12px;
  font-size: clamp(1.26rem, 2vw, 1.62rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.pricing-subgroup-heading p {
  max-width: 58ch;
  color: var(--brand-muted);
  line-height: 1.8;
}

.pricing-card-grid,
.app-pricing-grid,
.pricing-extras-grid,
.pricing-included-grid,
.pricing-fit-grid,
.pricing-faq-grid {
  display: grid;
  gap: 22px;
}

.pricing-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.pricing-extras-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

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

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

.pricing-plan-card,
.pricing-tier-card,
.pricing-extra-card,
.pricing-included-item,
.pricing-fit-card,
.pricing-faq-item {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow: 0 24px 54px rgba(21, 63, 103, 0.08);
}

.pricing-plan-card,
.pricing-tier-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
}

.pricing-plan-card--accent {
  background:
    linear-gradient(180deg, rgba(231, 242, 250, 0.98), rgba(255, 255, 255, 0.96));
}

.pricing-plan-card--support {
  background:
    linear-gradient(180deg, rgba(255, 247, 224, 0.98), rgba(255, 255, 255, 0.96));
}

.pricing-plan-card h4,
.pricing-tier-card h4,
.pricing-included-item h4,
.pricing-fit-card h4 {
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.pricing-plan-card p,
.pricing-tier-note,
.pricing-extra-card p,
.pricing-included-item p,
.pricing-fit-card p,
.pricing-faq-item p,
.pricing-table-note {
  color: var(--brand-muted);
  line-height: 1.8;
}

.pricing-amount {
  display: grid;
  gap: 8px;
}

.pricing-amount strong {
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.pricing-amount span {
  color: var(--brand-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.pricing-amount--monthly span {
  font-size: 0.98rem;
}

.pricing-feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--brand-ink);
  font-size: 0.94rem;
  line-height: 1.6;
}

.pricing-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  transform: translateY(-50%);
}

.pricing-tier-card {
  overflow: clip;
}

.pricing-tier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pricing-tier-head h4 {
  margin-top: 14px;
}

.pricing-tier-card--featured {
  padding-top: 58px;
  transform: translateY(-10px);
  border-color: rgba(215, 84, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 1), rgba(255, 255, 255, 0.98));
  box-shadow: 0 34px 80px rgba(215, 84, 47, 0.16);
}

.pricing-tier-card--dark {
  background:
    linear-gradient(180deg, rgba(21, 63, 103, 0.98), rgba(11, 45, 74, 0.98));
  border-color: rgba(21, 63, 103, 0.24);
  color: #ffffff;
}

.pricing-tier-card--featured .pricing-plan-tag,
.pricing-tier-card--featured .pricing-tier-users {
  background: rgba(215, 84, 47, 0.12);
  border-color: rgba(215, 84, 47, 0.12);
  color: var(--brand-orange);
}

.pricing-tier-card--dark .pricing-plan-tag,
.pricing-tier-card--dark .pricing-tier-users {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.pricing-tier-card--dark .pricing-amount span,
.pricing-tier-card--dark .pricing-tier-note,
.pricing-tier-card--dark .pricing-feature-list li {
  color: rgba(244, 249, 255, 0.86);
}

.pricing-tier-card--dark .pricing-feature-list li::before {
  background: linear-gradient(135deg, #ffffff, rgba(246, 191, 29, 0.92));
}

.pricing-tier-badge {
  position: absolute;
  top: 18px;
  left: 26px;
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(215, 84, 47, 0.22);
}

.pricing-extra-card,
.pricing-included-item,
.pricing-fit-card,
.pricing-faq-item {
  padding: 24px;
}

.pricing-extra-card strong {
  display: block;
  margin: 16px 0 12px;
  font-size: 1.4rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.pricing-extra-card--note strong {
  max-width: 16ch;
}

.pricing-included-item h4,
.pricing-fit-card h4 {
  margin: 16px 0 12px;
}

.pricing-table-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 18px 16px;
}

.pricing-table th {
  color: var(--brand-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-table td {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--brand-ink);
  font-size: 0.96rem;
  line-height: 1.68;
  vertical-align: middle;
}

.pricing-table tbody tr:hover {
  background: rgba(31, 111, 157, 0.04);
}

.pricing-status {
  min-width: 88px;
  padding-inline: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.78rem;
}

.pricing-status--included {
  background: rgba(54, 160, 101, 0.12);
  color: #216540;
}

.pricing-status--basic {
  background: rgba(246, 191, 29, 0.18);
  color: #8a6708;
}

.pricing-status--expanded {
  background: rgba(31, 111, 157, 0.12);
  color: var(--brand-blue);
}

.pricing-status--priority {
  background: rgba(21, 63, 103, 0.12);
  color: var(--brand-navy);
}

.pricing-status--muted {
  background: rgba(17, 17, 17, 0.06);
  color: var(--brand-muted);
}

.pricing-table-note {
  margin-top: 18px;
  font-size: 0.94rem;
}

.pricing-faq-item {
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.pricing-faq-item[open] {
  border-color: rgba(215, 84, 47, 0.16);
  box-shadow: 0 28px 62px rgba(215, 84, 47, 0.12);
  transform: translateY(-2px);
}

.pricing-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 600;
}

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

.pricing-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.pricing-faq-item[open] summary::after {
  content: "-";
}

.pricing-faq-item p {
  margin-top: 14px;
}

.section-anchor {
  height: 1px;
}

@media (max-width: 980px) {
  .navbar-inner {
    width: min(100% - 28px, var(--container));
  }

  .navbar-row {
    gap: 18px;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero p {
    max-width: 48ch;
  }

  .benefit-copy p {
    max-width: 36ch;
  }

  .direct-booking-intro h2 {
    max-width: 18ch;
  }

  .direct-booking-stories {
    gap: 58px;
  }

  .story-row,
  .story-row--reverse {
    gap: 34px;
  }

  .story-copy h3 {
    max-width: 17ch;
  }

  .story-image {
    min-height: 300px;
  }

  .how-it-works-intro h2 {
    max-width: 16ch;
  }

  .implementation-option-card h3 {
    max-width: 100%;
  }

  .implementation-step-card h4 {
    max-width: 100%;
  }

  .booking-modal-panel {
    padding: 28px;
  }

  .booking-modal-copy {
    max-width: 100%;
    padding: 0 52px 0;
  }

  .booking-modal-copy h2 {
    max-width: 100%;
  }

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

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

  .dotbloom-panel {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.84fr);
  }

  .home-cta-copy h2 {
    max-width: 20ch;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 24px, var(--container));
  }

  .navbar-inner {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .navbar {
    top: 0;
  }

  .navbar-row {
    min-height: 64px;
    gap: 12px;
  }

  .brand-wordmark {
    width: 138px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 50px rgba(21, 63, 103, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease,
      transform 0.24s ease;
  }

  .navbar.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    gap: 16px;
  }

  .nav-links a::after,
  .nav-dropdown-trigger::after {
    bottom: -6px;
    transform-origin: left;
  }

  .nav-dropdown,
  .nav-dropdown-details,
  .nav-dropdown-trigger {
    width: 100%;
  }

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

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 12px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 250, 245, 0.9);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-details[open] .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown-menu a {
    width: 100%;
    white-space: normal;
  }

  .nav-cta {
    width: 100%;
  }

  .navbar.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 7.8vw, 3.8rem);
  }

  .hero p {
    max-width: 40ch;
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .hero-visual {
    margin-top: 46px;
  }

  .hero-visual::before {
    inset: 8% 4% auto;
    height: 48%;
  }

  .hero-visual-frame {
    width: min(100%, 290px);
    padding: 8px;
    border-radius: 28px;
  }

  .hero-dashboard-image {
    border-radius: 22px;
  }

  .benefits-section {
    padding: 74px 0 88px;
  }

  .benefits-intro h2 {
    max-width: 16ch;
  }

  .benefits-intro > p:last-child {
    max-width: 46ch;
    font-size: 1rem;
  }

  .benefits-heading {
    margin-top: 42px;
  }

  .benefits-slider {
    max-width: none;
  }

  .benefits-grid {
    display: block;
  }

  .benefit-card {
    display: none;
    height: var(--benefit-card-mobile-height);
  }

  .benefit-card.is-active {
    display: block;
    animation: benefitCardFade 0.24s ease;
  }

  .benefit-visual {
    height: var(--benefit-card-mobile-visual-height);
    min-height: var(--benefit-card-mobile-visual-height);
  }

  .benefit-copy {
    min-height: calc(
      var(--benefit-card-mobile-height) - var(--benefit-card-mobile-visual-height)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .benefits-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
  }

  .benefits-slider-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(21, 63, 103, 0.08);
  }

  .benefits-slider-arrow:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .benefits-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .benefits-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(21, 63, 103, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .benefits-slider-dot.is-active {
    background: var(--brand-orange);
    transform: scale(1.1);
  }

  .direct-booking-section {
    padding: 12px 0 88px;
  }

  .direct-booking-intro {
    margin-bottom: 34px;
    text-align: center;
  }

  .direct-booking-intro h2 {
    max-width: 12ch;
    margin: 0 auto 14px;
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .direct-booking-intro > p:last-child {
    max-width: 33ch;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.78;
  }

  .direct-booking-stories {
    display: block;
    position: relative;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
  }

  .story-row,
  .story-row--reverse {
    display: none;
    min-height: 0;


  }

  .story-row.is-active {
    display: block;
    animation: benefitCardFade 0.24s ease;
  }

  .story-copy {
    max-width: 100%;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  .story-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    margin-bottom: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .story-kicker::before {
    display: none;
  }

  .story-copy h3 {
    max-width: 16ch;
    margin-bottom: 12px;
    font-size: clamp(1.34rem, 4.8vw, 1.72rem);
    line-height: 1.12;
  }

  .story-copy > p {
    max-width: 100%;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .story-list {
    gap: 10px;
    width: 100%;
    margin: 18px 0 0;
  }

  .story-list li {
    padding-left: 26px;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .story-list li::before {
    width: 14px;
    height: 14px;
  }

  .story-visual {
    max-width: none;
    margin: 0;
    height: auto;
    min-height: 0;
    padding: 0 18px 18px;
    background: none;
    border-bottom: 0;
  }

  .story-visual::before {
    display: none;
  }

  .story-image-frame,
  .story-image {
    display: none;
  }

  .story-floating-card,
  .story-floating-card--team {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: 0;
    padding: 16px 16px 14px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.96));
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 16px 34px rgba(21, 63, 103, 0.08);
    backdrop-filter: none;
  }

  .story-floating-label {
    margin-bottom: 8px;
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .story-floating-card strong {
    font-size: 0.94rem;
    line-height: 1.28;
  }

  .story-floating-card p {
    font-size: 0.82rem;
    line-height: 1.52;
  }

  .direct-booking-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 50%;
    right: -10px;
    z-index: 4;
    margin-top: 0;
    transform: translateY(-50%);
  }

  .direct-booking-slider-controls .benefits-slider-dots {
    flex-direction: column;
    gap: 10px;
  }

  .direct-booking-slider-controls .benefits-slider-dot {
    background: rgba(21, 63, 103, 0.16);
  }

  .direct-booking-slider-controls .benefits-slider-dot.is-active {
    background: #f0b61b;
  }

  .direct-booking-slider-arrow {
    border-color: rgba(240, 182, 27, 0.32);
    background: rgba(255, 251, 239, 0.94);
    color: var(--brand-navy);
    box-shadow: 0 12px 28px rgba(240, 182, 27, 0.2);
  }

  .booking-modal {
    padding: 18px;
  }

  .booking-modal-dialog {
    width: min(100%, 760px);
    max-height: min(92vh, 960px);
    border-radius: 28px;
  }

  .booking-modal-panel {
    padding: 24px;
  }

  .booking-modal-copy {
    padding: 0 56px 0;
  }

  .booking-modal-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .booking-modal-copy p:not(.section-label) {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.76;
  }

  .booking-form {
    margin-top: 22px;
    padding: 20px;
  }

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

  .booking-field input,
  .booking-field select,
  .calendar-trigger {
    min-height: 54px;
    border-radius: 18px;
  }

  .calendar-popover {
    position: relative;
    top: 10px;
    width: 100%;
  }

  .booking-tooltip-text {
    right: auto;
    left: 0;
    width: min(280px, calc(100vw - 72px));
  }

  .booking-human-card {
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    border-radius: 0;
  }

  .booking-human-badge {
    order: 2;
  }

  .booking-form-actions {
    margin-top: 18px;
  }

  .booking-submit-button {
    width: 100%;
    min-width: 0;
  }

  .how-it-works-section {
    padding: 0 0 88px;
  }

  .how-it-works-intro {
    margin-bottom: 34px;
    text-align: center;
  }

  .how-it-works-intro h2 {
    max-width: 12ch;
    margin: 0 auto 14px;
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .how-it-works-intro > p:last-child {
    max-width: 34ch;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.78;
  }

  .implementation-options {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .implementation-option-card {
    padding: 24px 22px;
    border-radius: 26px;
  }

  .implementation-option-card h3 {
    font-size: 1.3rem;
  }

  .implementation-option-card p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .implementation-steps {
    padding: 24px 18px 18px;
    border-radius: 28px;
  }

  .implementation-steps-intro {
    margin-bottom: 18px;
  }

  .implementation-steps-intro h3 {
    max-width: 12ch;
    font-size: clamp(1.38rem, 5vw, 1.78rem);
  }

  .implementation-steps-grid {
    grid-template-columns: 1fr;
  }

  .implementation-step-card {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .implementation-step-number {
    margin-bottom: 12px;
    font-size: 0.86rem;
  }

  .implementation-step-card h4 {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .implementation-step-card p {
    font-size: 0.93rem;
    line-height: 1.7;
  }

  .dotbloom-section {
    padding: 86px 0;
  }

  .dotbloom-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dotbloom-visual {
    order: 2;
  }

  .dotbloom-logo {
    width: min(100%, 260px);
  }

  .dotbloom-copy h2 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(1.92rem, 8vw, 2.36rem);
  }

  .dotbloom-lead {
    max-width: 100%;
    font-size: 1.04rem;
  }

  .dotbloom-copy p:not(.section-label):not(.dotbloom-lead) {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.76;
  }

  .home-cta-section {
    padding: 64px 0 96px;
  }

  .home-cta-panel {
    padding: 12px 0;
  }

  .home-cta-section::before {
    width: 548px;
    opacity: 0.12;
  }

  .home-cta-copy h2 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.76rem, 8vw, 2.2rem);
  }

  .home-cta-copy p:not(.section-label) {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .home-cta-button {
    margin-top: 24px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
  }

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

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(2.28rem, 11vw, 3.25rem);
    line-height: 1.04;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }

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

  .hero-cta {
    min-height: 50px;
    padding-inline: 24px;
  }

  .hero-visual-frame {
    width: min(100%, 252px);
  }

  .benefits-section {
    padding: 64px 0 78px;
  }

  .section-label {
    font-size: 0.82rem;
  }

  .benefits-intro h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .benefits-heading h3 {
    font-size: 1.35rem;
  }

  .benefit-visual {
    height: var(--benefit-card-mobile-visual-height);
    min-height: var(--benefit-card-mobile-visual-height);
    padding: 18px;
  }

  .benefit-copy {
    min-height: calc(
      var(--benefit-card-mobile-height) - var(--benefit-card-mobile-visual-height)
    );
    padding: 18px 18px 22px;
  }

  .benefit-copy h4 {
    max-width: 100%;
    font-size: 1.08rem;
  }

  .benefit-copy p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .mock-browser-body,
  .mock-dashboard {
    grid-template-columns: 1fr;
  }

  .mock-browser-sidebar,
  .mock-dashboard-sidebar {
    min-height: 42px;
  }

  .floating-booking-card {
    right: 14px;
    bottom: 14px;
  }

  .brand-core {
    width: 92px;
    height: 92px;
  }

  .brand-core img {
    width: 60px;
    height: 60px;
  }

  .benefit-image-stage {
    height: 136px;
  }

  .brand-card-grid {
    gap: 8px;
  }

  .brand-logo-card {
    min-height: 132px;
    padding: 12px 8px;
  }

  .brand-logo-card img {
    max-width: 56px;
    max-height: 56px;
  }

  .implementation-diagram {
    width: 100%;
    grid-template-columns: minmax(68px, 1fr) 20px 60px 20px minmax(68px, 1fr);
    gap: 5px;
  }

  .implementation-hub {
    width: 60px;
    height: 60px;
    padding: 9px;
    border-radius: 18px;
  }

  .flow-card {
    padding: 9px 8px;
  }

  .flow-card strong {
    font-size: 0.72rem;
  }

  .flow-card span {
    font-size: 0.65rem;
  }

  .direct-booking-section {
    padding: 0 0 78px;
  }

  .direct-booking-intro {
    margin-bottom: 30px;
  }

  .direct-booking-intro h2 {
    max-width: 100%;
    font-size: clamp(1.48rem, 8vw, 1.9rem);
  }

  .story-copy h3 {
    max-width: 100%;
    font-size: 1.28rem;
  }

  .story-copy > p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .story-list li {
    font-size: 0.9rem;
  }

  .story-list li::before {
    width: 13px;
    height: 13px;
  }

  .story-floating-card {
    padding: 13px 13px 12px;
  }

  .story-floating-card strong {
    font-size: 0.9rem;
  }

  .story-floating-card p {
    font-size: 0.8rem;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-modal-dialog {
    border-radius: 24px;
  }

  .booking-modal-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.6rem;
  }

  .booking-modal-panel {
    padding: 18px 14px 14px;
  }

  .booking-modal-copy {
    padding: 0 44px 0;
  }

  .booking-modal-copy h2 {
    font-size: clamp(1.5rem, 8vw, 1.9rem);
  }

  .booking-modal-copy p:not(.section-label) {
    font-size: 0.92rem;
  }

  .booking-form {
    padding: 16px;
  }

  .booking-form-intro {
    font-size: 0.9rem;
  }

  .booking-field label {
    font-size: 0.86rem;
  }

  .booking-field input,
  .booking-field select,
  .calendar-trigger {
    min-height: 52px;
    padding-inline: 16px;
  }

  .booking-field-help,
  .calendar-status,
  .calendar-legend {
    font-size: 0.8rem;
  }

  .booking-form-grid,
  .booking-form-grid--details {
    grid-template-columns: 1fr;
  }

  .booking-tooltip-text {
    width: min(240px, calc(100vw - 64px));
  }

  .calendar-popover {
    padding: 14px;
    border-radius: 20px;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 6px;
  }

  .calendar-day {
    border-radius: 13px;
    font-size: 0.88rem;
  }

  .booking-human-card {
    padding: 0;
    border-radius: 0;
  }

  .booking-human-control {
    gap: 10px;
  }

  .booking-human-box {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .booking-human-copy strong {
    font-size: 0.9rem;
  }

  .booking-human-copy span,
  .booking-human-status {
    font-size: 0.82rem;
  }

  .booking-human-badge {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .booking-extra-fields {
    margin-top: 14px;
  }

  .how-it-works-section {
    padding: 0 0 78px;
  }

  .how-it-works-intro h2 {
    max-width: 100%;
    font-size: clamp(1.48rem, 8vw, 1.9rem);
  }

  .how-it-works-intro > p:last-child {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .implementation-option-card {
    padding: 20px 18px;
  }

  .implementation-option-tag {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .implementation-option-card h3 {
    font-size: 1.14rem;
  }

  .implementation-option-card p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .implementation-steps {
    padding: 20px 14px 14px;
  }

  .implementation-steps-intro h3 {
    max-width: 100%;
    font-size: 1.28rem;
  }

  .implementation-step-card {
    padding: 18px 16px;
  }

  .implementation-step-card h4 {
    font-size: 1rem;
  }

  .implementation-step-card p {
    font-size: 0.88rem;
  }

  .dotbloom-section {
    padding: 72px 0;
  }

  .dotbloom-logo {
    width: min(100%, 176px);
  }

  .dotbloom-copy h2 {
    font-size: clamp(1.58rem, 8vw, 1.96rem);
  }

  .dotbloom-lead {
    font-size: 0.98rem;
  }

  .dotbloom-copy p:not(.section-label):not(.dotbloom-lead) {
    font-size: 0.93rem;
  }

  .home-cta-section {
    padding: 52px 0 78px;
  }

  .home-cta-panel {
    padding: 8px 0;
  }

  .home-cta-section::before {
    width: 406px;
    opacity: 0.1;
  }

  .home-cta-copy p:not(.section-label) {
    font-size: 0.94rem;
  }

  .home-cta-button {
    width: 100%;
  }

  .site-footer {
    padding: 42px 0 22px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p,
  .footer-links--muted li {
    max-width: 100%;
  }

  .footer-social-icon {
    width: 40px;
    height: 40px;
  }

  .footer-legal {
    gap: 10px 18px;
  }
}

@media (max-width: 980px) {
  .page-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-hero-copy h1 {
    max-width: 13ch;
  }

  .page-hero-visual {
    min-height: 470px;
  }

  .page-hero-card--website {
    left: 14px;
  }

  .page-hero-card--saas {
    right: 14px;
  }

  .page-hero-stat {
    left: 30px;
  }

  .pricing-model-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 4px 0 92px;
  }

  .pricing-pillars,
  .pricing-extras-grid,
  .pricing-included-grid,
  .pricing-fit-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-tier-card--dark {
    grid-column: span 2;
  }

  .pricing-block,
  .pricing-included-panel,
  .pricing-comparison-panel,
  .pricing-fit-panel,
  .pricing-faq-panel {
    padding: 28px;
  }

  .pricing-subgroup + .pricing-subgroup {
    margin-top: 30px;
    padding-top: 26px;
  }
}

@media (max-width: 820px) {
  .page-hero-section {
    padding: 38px 0 28px;
  }

  .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 9vw, 3.3rem);
  }

  .page-hero-copy p:not(.section-label) {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .page-hero-actions {
    gap: 12px;
  }

  .page-hero-visual {
    min-height: 430px;
  }

  .page-hero-frame {
    padding: 14px;
    border-radius: 28px;
  }

  .page-hero-card {
    max-width: 220px;
  }

  .pricing-model-strip {
    padding-bottom: 24px;
  }

  .pricing-intro h2 {
    max-width: 100%;
  }

  .pricing-pillars,
  .app-pricing-grid,
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tier-card--dark {
    grid-column: auto;
  }

  .pricing-tier-card--featured {
    transform: none;
  }

  .pricing-block-heading h3 {
    max-width: 100%;
  }

  .pricing-subgroup-heading h4 {
    max-width: 100%;
  }

  .pricing-table {
    min-width: 700px;
  }
}

@media (max-width: 520px) {
  .page-hero-section {
    padding: 28px 0 20px;
  }

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

  .page-hero-actions .hero-cta,
  .page-hero-actions .page-hero-secondary {
    width: 100%;
  }

  .page-hero-points li {
    font-size: 0.9rem;
  }

  .page-hero-visual {
    min-height: 360px;
  }

  .page-hero-card,
  .page-hero-stat {
    position: static;
    max-width: 100%;
  }

  .page-hero-visual {
    gap: 14px;
  }

  .page-hero-frame {
    width: 100%;
  }

  .pricing-model-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .pricing-model-card h2 {
    font-size: 1.22rem;
  }

  .pricing-section {
    padding: 0 0 76px;
  }

  .pricing-intro h2 {
    font-size: clamp(1.72rem, 8.8vw, 2.3rem);
  }

  .pricing-intro p:not(.section-label),
  .pricing-block-heading p:not(.section-label) {
    font-size: 0.94rem;
  }

  .pricing-subgroup-heading p {
    font-size: 0.92rem;
  }

  .pricing-pillar,
  .pricing-block,
  .pricing-included-panel,
  .pricing-comparison-panel,
  .pricing-fit-panel,
  .pricing-faq-panel {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .pricing-plan-card,
  .pricing-tier-card,
  .pricing-extra-card,
  .pricing-included-item,
  .pricing-fit-card,
  .pricing-faq-item {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .pricing-block-heading h3 {
    font-size: clamp(1.36rem, 7vw, 1.8rem);
  }

  .pricing-subgroup-heading h4 {
    font-size: 1.14rem;
  }

  .pricing-amount strong {
    font-size: 1.84rem;
  }

  .pricing-tier-badge {
    position: static;
    justify-self: start;
    width: fit-content;
  }

  .pricing-tier-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-faq-item summary {
    font-size: 0.98rem;
  }

  .pricing-table {
    min-width: 640px;
  }
}

@keyframes benefitCardFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .home-cta-section::before {
    animation: none;
  }
}
