:root {
  --sage: #2f8c7a;
  --sage-deep: #183f39;
  --cream: #f7f5f0;
  --cream-strong: #ece8df;
  --sand: #b66f3c;
  --ink: #18251f;
  --muted: #5d6964;
  --card: rgba(255, 255, 255, 0.86);
  --line: rgba(24, 63, 57, 0.14);
  --shadow: 0 18px 40px rgba(24, 37, 31, 0.12);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    linear-gradient(180deg, #f8f6f1 0%, #f0eee7 48%, #f8f6f1 100%);
}

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

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  display: none;
}

.page-shell::before {
  top: 72px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(123, 164, 137, 0.22);
}

.page-shell::after {
  bottom: 80px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(216, 187, 143, 0.25);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: var(--container);
  margin: 18px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 63, 57, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(18, 34, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 140px;
  height: 42px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Songti SC", "STSong", serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sage-deep);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sage-deep), #237a68);
  box-shadow: 0 14px 30px rgba(24, 63, 57, 0.22);
}

.button-primary:hover,
.button-secondary:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(50, 88, 74, 0.18);
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.75);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(50, 88, 74, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--sage-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

main {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 92px 0 52px;
}

.hero-copy,
.hero-visual,
.service-card,
.app-showcase,
.process-card,
.advantages-layout,
.logic-board,
.testimonial-grid blockquote,
.booking-section {
  animation: rise-in 720ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-deep);
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: 4.8rem;
  max-width: 11ch;
}

.hero-text,
.section-head p,
.app-copy p,
.advantages-copy p,
.logic-head p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: -18px 0 0;
  list-style: none;
}

.hero-metrics li {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.hero-metrics strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Songti SC", "STSong", serif;
  margin-bottom: 8px;
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.logo-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 100%;
  min-height: 460px;
  border-radius: var(--radius-lg);
  background: #d7d0c4;
  box-shadow: var(--shadow);
}

.logo-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(90deg, rgba(24, 37, 31, 0.34), rgba(24, 37, 31, 0) 52%);
}

.logo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.service-note {
  position: absolute;
  right: -12px;
  bottom: 26px;
  width: min(320px, calc(100% - 18px));
  padding: 24px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(180deg, rgba(24, 37, 31, 0.92), rgba(24, 37, 31, 0.82));
  box-shadow: 0 22px 42px rgba(18, 34, 28, 0.22);
}

.service-note p,
.service-note span {
  margin: 0;
}

.service-note p {
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.service-note strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.35rem;
  line-height: 1.4;
}

.service-note span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.service-strip {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-strip div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 110px 0 0;
}

.section-head {
  max-width: 720px;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.service-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

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

.service-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(24, 37, 31, 0.08);
}

.service-index,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(123, 164, 137, 0.14);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card h3,
.process-card h3,
.advantage-list h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.service-card p,
.process-card p,
.advantage-list p,
.testimonial-grid p,
.booking-points li,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-link {
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(24, 63, 57, 0.18);
  border-radius: var(--radius-sm);
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.app-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(24, 37, 31, 0.96), rgba(31, 81, 70, 0.96) 54%, rgba(106, 72, 48, 0.92) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.app-showcase::before {
  content: "";
  display: none;
}

.app-copy {
  position: relative;
  z-index: 1;
}

.app-copy h2,
.logic-head h3 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  line-height: 1.08;
}

.app-copy h2 {
  font-size: 3rem;
}

.app-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.product-board-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  max-width: 560px;
}

.product-board {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.product-board-user {
  background: linear-gradient(135deg, rgba(47, 140, 122, 0.22), rgba(182, 111, 60, 0.18));
}

.product-board-assistant {
  background: linear-gradient(135deg, rgba(47, 91, 150, 0.34), rgba(241, 203, 88, 0.16));
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-brand img {
  width: 104px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.product-brand p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-brand h3 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.45;
}

.product-board > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.store-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1a241f;
}

.store-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.store-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 37, 31, 0), rgba(24, 37, 31, 0.48));
}

.store-stage-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 420px;
  padding: 20px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: rgba(24, 37, 31, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.store-stage-panel span,
.store-stage-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.store-stage-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 1.24rem;
  line-height: 1.45;
}

.store-stage-panel p {
  line-height: 1.7;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.app-feature-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.app-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.app-feature-card h3 {
  margin: 16px 0 10px;
  font-size: 1.1rem;
  color: #fff;
}

.app-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.device-stage {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-stage::before {
  content: "";
  display: none;
}

.phone-shell {
  position: absolute;
  width: 228px;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #15271f, #0f1a15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(6, 12, 10, 0.34);
}

.phone-shell-main {
  left: 24px;
  top: 36px;
  transform: rotate(-9deg);
  z-index: 2;
}

.phone-shell-featured {
  left: 50%;
  top: 44px;
  width: 248px;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 2;
}

.phone-shell-alt {
  right: 20px;
  top: 98px;
  transform: rotate(9deg);
  z-index: 1;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.phone-screen {
  min-height: 392px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f6efe2, #e7dfcf);
  color: var(--ink);
}

.phone-screen-alt {
  background: linear-gradient(180deg, #edf3ef, #dbe7df);
}

.screen-banner {
  padding: 18px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--sage-deep), #4c7866);
}

.screen-banner p,
.screen-banner span {
  margin: 0;
}

.screen-banner p {
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.screen-banner strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.22rem;
  line-height: 1.35;
}

.screen-banner span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.screen-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(23, 50, 41, 0.06);
}

.screen-card-contrast {
  background: linear-gradient(180deg, #1e3a30, #173229);
  box-shadow: none;
}

.mini-title strong,
.task-item strong {
  display: block;
}

.mini-title span,
.task-item span {
  color: var(--muted);
  line-height: 1.6;
}

.screen-card-contrast .mini-title strong {
  color: #fff;
}

.screen-card-contrast .mini-title span {
  color: rgba(255, 255, 255, 0.72);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.chip-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(123, 164, 137, 0.16);
  color: var(--sage-deep);
  font-size: 0.88rem;
}

.progress-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.progress-row span {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.progress-row .is-done {
  background: #cbefcf;
}

.task-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.task-item {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
}

.task-item strong {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.task-item.active {
  background: linear-gradient(135deg, rgba(123, 164, 137, 0.24), rgba(216, 187, 143, 0.22));
  box-shadow: inset 0 0 0 1px rgba(50, 88, 74, 0.16);
}

.dashboard-panel {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  width: min(368px, calc(100% - 40px));
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 48px rgba(12, 24, 20, 0.2);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.dashboard-label {
  margin: 0 0 14px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.dashboard-metrics div {
  padding: 12px;
  border-radius: var(--radius-lg);
  background: rgba(23, 50, 41, 0.05);
}

.dashboard-metrics strong {
  display: block;
  font-size: 1.3rem;
  font-family: "Songti SC", "STSong", serif;
}

.dashboard-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.sync-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.sync-strip span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(123, 164, 137, 0.12);
  font-size: 0.86rem;
}

.process-section {
  position: relative;
}

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

.process-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.logic-board {
  margin-top: 34px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(23, 50, 41, 0.08);
}

.logic-head {
  max-width: 780px;
}

.logic-head h3 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.logic-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.logic-node {
  position: relative;
  min-height: 208px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(50, 88, 74, 0.1);
  box-shadow: 0 10px 24px rgba(23, 50, 41, 0.05);
}

.logic-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 2px;
  background: rgba(50, 88, 74, 0.22);
}

.logic-node:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(50, 88, 74, 0.22);
  border-right: 2px solid rgba(50, 88, 74, 0.22);
  transform: rotate(45deg);
}

.logic-node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(123, 164, 137, 0.14);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.logic-node strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 1.14rem;
  line-height: 1.45;
}

.logic-node p,
.logic-lane p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.logic-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.logic-lane {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(50, 88, 74, 0.05);
  border: 1px solid rgba(50, 88, 74, 0.08);
}

.logic-lane h4 {
  margin: 0 0 8px;
  color: var(--sage-deep);
  font-size: 1rem;
}

.advantages-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(24, 63, 57, 0.96), rgba(36, 115, 98, 0.92) 58%, rgba(110, 72, 48, 0.92));
  color: #fff;
  box-shadow: var(--shadow);
}

.advantages-copy p,
.advantage-list p {
  color: rgba(255, 255, 255, 0.78);
}

.advantage-list {
  display: grid;
  gap: 16px;
}

.advantage-list article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonials-section {
  padding-bottom: 0;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(23, 50, 41, 0.08);
}

.testimonial-grid footer {
  margin-top: 18px;
  color: var(--sage-deep);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 110px;
  margin-bottom: 90px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-points {
  padding-left: 18px;
  margin: 22px 0 0;
}

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

.booking-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(50, 88, 74, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(250, 248, 243, 0.85);
  color: var(--ink);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(123, 164, 137, 0.34);
  border-color: rgba(50, 88, 74, 0.3);
}

.full-width,
.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 28px;
  color: var(--sage-deep);
}

.booking-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(50, 88, 74, 0.08);
}

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

.footer-meta {
  justify-items: end;
  text-align: right;
}

.site-footer p {
  padding-top: 22px;
}

.site-footer a {
  color: var(--sage-deep);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 1080px) {
  .hero,
  .app-showcase,
  .advantages-layout,
  .booking-section {
    grid-template-columns: 1fr;
  }

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

  .section h2,
  .app-copy h2 {
    font-size: 2.6rem;
  }

  .logic-head h3 {
    font-size: 2.2rem;
  }

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

  .logic-node::before,
  .logic-node::after {
    display: none;
  }

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

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

  .hero-visual {
    min-height: 460px;
  }

  .device-stage {
    min-height: 520px;
  }

  .store-stage,
  .store-stage img {
    min-height: 460px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    flex: 1 1 0;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 48px;
    margin-left: 0;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    width: 100%;
    display: grid;
    gap: 14px;
    padding: 8px 4px 0;
  }

  .site-nav.is-open a {
    padding: 8px 0;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-metrics,
  .app-feature-grid,
  .service-grid,
  .process-grid,
  .logic-map,
  .logic-lanes,
  .testimonial-grid,
  .service-strip,
  .booking-form,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-metrics {
    order: 3;
    margin-top: 0;
  }

  .device-stage {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding: 24px;
  }

  .phone-shell,
  .dashboard-panel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    transform: none;
  }

  .dashboard-panel {
    max-width: none;
    transform: none;
  }

  .logo-panel {
    min-height: 340px;
  }

  .store-stage,
  .store-stage img {
    min-height: 360px;
  }

  .service-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -44px;
    margin-left: auto;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 32px;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 26px, 100%);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 118px;
    height: 36px;
  }

  .hero {
    gap: 24px;
    padding-bottom: 18px;
  }

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

  .section h2,
  .app-copy h2 {
    font-size: 2.1rem;
  }

  .logic-head h3 {
    font-size: 1.9rem;
  }

  .service-card,
  .app-showcase,
  .logic-board,
  .process-card,
  .testimonial-grid blockquote,
  .booking-section,
  .advantages-layout {
    padding: 22px;
  }

  .logo-panel {
    min-height: 260px;
    border-radius: var(--radius-lg);
  }

  .logo-panel::before,
  .logo-panel img {
    border-radius: var(--radius-lg);
  }

  .section {
    padding-top: 84px;
  }

  .booking-section {
    margin-top: 84px;
    margin-bottom: 64px;
  }
}
