@import url("../../模板/Respond.io _ #1 AI-Powered Customer Conversation Management Software_files/fonts.CmInU0tB.css");

:root {
  --bg: #030207;
  --bg-soft: #0a0713;
  --card: #11131b;
  --card-2: #141722;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-faint: rgba(255, 255, 255, 0.56);
  --blue: #1b70ff;
  --blue-strong: #005af1;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --container: 1280px;
  --section-y: 80px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Inter fallback", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 78%, rgba(139, 37, 207, 0.34), transparent 28%),
    radial-gradient(circle at 84% 84%, rgba(45, 109, 246, 0.3), transparent 24%),
    linear-gradient(180deg, #050505 0%, #07030d 58%, #0b0716 100%);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 8px;
  height: 75px;
  z-index: 50;
  background: rgba(4, 4, 6, 0.84);
  backdrop-filter: blur(16px);
  transition: background-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px;
  position: relative;
  isolation: isolate;
}

.site-header__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
  pointer-events: none;
}

.site-header.is-scrolled .site-header__inner::before {
  background: rgba(33, 33, 35, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
}

.brand img {
  width: 112px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-soft);
  font-size: .875rem;
  line-height: 1.5rem;
}

.nav a,
.nav button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: inherit;
  font-weight: 500;
}

.nav a:hover,
.nav button:hover {
  color: #fff;
}

.header-actions {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: .875rem;
  line-height: 1.5rem;
}

.header-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 4px;
  color: var(--text);
  font-weight: 500;
  transition: color 180ms ease, opacity 180ms ease;
}

.header-text-link:hover {
  color: #fff;
  opacity: 0.92;
}

.language-switcher {
  position: relative;
}

.language-switcher__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  transition: background-color 180ms ease, color 180ms ease;
}

.language-switcher__toggle:hover,
.language-switcher__toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher__toggle svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-switcher__toggle svg * {
  fill: none;
  stroke: currentColor;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 176px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(14, 15, 20, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.language-switcher__menu[hidden] {
  display: none !important;
}

.language-switcher__option {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 14px;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-switcher__option:hover,
.language-switcher__option.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 32px;
  border-radius: .5rem;
  padding: 0 12px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: .875rem;
  line-height: 1.25rem;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--blue);
  color: #fff;
}

.button--primary:hover {
  background: var(--blue-strong);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.button--main {
  height: 40px;
  padding: 0 16px;
  font-size: 16px;
}
.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.mobile-toggle::before,
.mobile-toggle::after,
.mobile-toggle span {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.mobile-toggle::before {
  top: 13px;
}

.mobile-toggle span {
  top: 20px;
}

.mobile-toggle::after {
  top: 27px;
}

.mobile-panel {
  display: none;
  padding: 0 0 18px;
}

.mobile-panel[data-open="true"] {
  display: block;
}

.mobile-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(12, 13, 18, 0.96);
}

.mobile-card nav,
.mobile-card .mobile-actions,
.mobile-card .mobile-language {
  display: grid;
  gap: 14px;
}

.mobile-actions .button,
.mobile-actions .header-text-link {
  justify-content: center;
}

.mobile-language {
  margin-top: 14px;
}

.mobile-language__title {
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.language-switcher--mobile {
  width: 100%;
}

.language-switcher--mobile .language-switcher__toggle {
  width: 100%;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.language-switcher__mobile-label {
  font-size: 14px;
  font-weight: 500;
}

.language-switcher--mobile .language-switcher__menu {
  position: static;
  min-width: 100%;
  margin-top: 10px;
  box-shadow: none;
}

.site-main {
  margin-top: 20px;
  padding: 96px 80px 80px;
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: #06010e;
  margin-inline: -80px;
  padding-inline: 80px;
  padding-bottom: 80px;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-section-gradient-optimized {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #06010e;
  pointer-events: none;
  z-index: 0;
  contain: layout style paint;
  --orb-transparency: 70%;
  --color-blue-1: hsla(217.59493670886076, 100%, 30%, 1);
  --color-blue-2: hsla(217.68844221105527, 100%, 39%, 1);
  --color-purple-1: hsla(279.7894736842105, 67%, 27%, 1);
  --orb-size-0: 70vw;
  --orb-size-1: 50vw;
  --orb-size-2: 55vw;
  --orb-size-3: 50vw;
  --orb-size-4: 66vw;
  --orb-size-5: 83vw;
  --orb-size-6: 70vw;
  --orb-size-7: 85vw;
  --orb-size-8: 55vw;
  --orb-size-9: 50vw;
  --vertical-position: 40vh;
}

.gradient-orb {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  transform-origin: center;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  contain: layout style paint;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gradient-orb-0 {
  width: var(--orb-size-0);
  height: var(--orb-size-0);
  background: radial-gradient(circle, var(--color-purple-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-0;
}

.gradient-orb-1 {
  width: var(--orb-size-1);
  height: var(--orb-size-1);
  background: radial-gradient(circle, var(--color-purple-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-1;
}

.gradient-orb-2 {
  width: var(--orb-size-2);
  height: var(--orb-size-2);
  background: radial-gradient(circle, var(--color-blue-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-2;
}

.gradient-orb-3 {
  width: var(--orb-size-3);
  height: var(--orb-size-3);
  background: radial-gradient(circle, var(--color-blue-2) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-3;
}

.gradient-orb-4 {
  width: var(--orb-size-4);
  height: var(--orb-size-4);
  background: radial-gradient(circle, var(--color-purple-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-4;
}

.gradient-orb-5 {
  width: var(--orb-size-5);
  height: var(--orb-size-5);
  background: radial-gradient(circle, var(--color-blue-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-5;
}

.gradient-orb-6 {
  width: var(--orb-size-6);
  height: var(--orb-size-6);
  background: radial-gradient(circle, var(--color-purple-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-6;
}

.gradient-orb-7 {
  width: var(--orb-size-7);
  height: var(--orb-size-7);
  background: radial-gradient(circle, var(--color-blue-2) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-7;
}

.gradient-orb-8 {
  width: var(--orb-size-8);
  height: var(--orb-size-8);
  background: radial-gradient(circle, var(--color-purple-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-8;
}

.gradient-orb-9 {
  width: var(--orb-size-9);
  height: var(--orb-size-9);
  background: radial-gradient(circle, var(--color-blue-1) 0%, transparent var(--orb-transparency));
  animation-name: orb-movement-9;
}

@keyframes orb-movement-0 {
  0% { translate: -20vw var(--vertical-position); opacity: 0.9; }
  50% { translate: -30vw var(--vertical-position); opacity: 0.7; }
  100% { translate: -40vw var(--vertical-position); opacity: 0.8; }
}

@keyframes orb-movement-1 {
  0% { translate: -15vw var(--vertical-position); opacity: 0.8; }
  50% { translate: -25vw var(--vertical-position); opacity: 0.6; }
  100% { translate: -35vw var(--vertical-position); opacity: 0.7; }
}

@keyframes orb-movement-2 {
  0% { translate: 100vw var(--vertical-position); opacity: 0.9; }
  50% { translate: 50vw var(--vertical-position); opacity: 0.7; }
  100% { translate: -10vw var(--vertical-position); opacity: 0.8; }
}

@keyframes orb-movement-3 {
  0% { translate: 90vw var(--vertical-position); opacity: 0.8; }
  50% { translate: 45vw var(--vertical-position); opacity: 0.6; }
  100% { translate: -5vw var(--vertical-position); opacity: 0.7; }
}

@keyframes orb-movement-4 {
  0% { translate: 80vw var(--vertical-position); opacity: 0.6; }
  50% { translate: 40vw var(--vertical-position); opacity: 0.4; }
  100% { translate: 0vw var(--vertical-position); opacity: 0.5; }
}

@keyframes orb-movement-5 {
  0% { translate: 70vw var(--vertical-position); opacity: 0.6; }
  50% { translate: 35vw var(--vertical-position); opacity: 0.4; }
  100% { translate: 5vw var(--vertical-position); opacity: 0.5; }
}

@keyframes orb-movement-6 {
  0% { translate: 60vw var(--vertical-position); opacity: 0.5; }
  50% { translate: 30vw var(--vertical-position); opacity: 0.3; }
  100% { translate: 10vw var(--vertical-position); opacity: 0.4; }
}

@keyframes orb-movement-7 {
  0% { translate: 50vw var(--vertical-position); opacity: 0.5; }
  50% { translate: 25vw var(--vertical-position); opacity: 0.3; }
  100% { translate: 15vw var(--vertical-position); opacity: 0.4; }
}

@keyframes orb-movement-8 {
  0% { translate: 40vw var(--vertical-position); opacity: 0.4; }
  50% { translate: 20vw var(--vertical-position); opacity: 0.2; }
  100% { translate: 20vw var(--vertical-position); opacity: 0.3; }
}

@keyframes orb-movement-9 {
  0% { translate: 30vw var(--vertical-position); opacity: 0.4; }
  50% { translate: 15vw var(--vertical-position); opacity: 0.2; }
  100% { translate: 25vw var(--vertical-position); opacity: 0.3; }
}

.announcement-pill {
  width: fit-content;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 4px;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 9999px;
  color: rgb(255, 255, 255);
  background: rgb(61, 61, 64);
}

.hero-copy {
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  color: rgb(255, 255, 255);
  line-height: 60px;
  font-size: 60px;
  font-weight: 500;
  outline:none;
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
}

.hero-copy p {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rating-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.rating-stars {
  color: #ff6b43;
  letter-spacing: 2px;
}

.hero-stage {
  margin: 72px auto 0;
  width: min(1120px, 100%);
  border: 0;
  outline: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(101, 101, 106, 0.16);
  box-shadow: none;
  line-height: 0;
  transform: scale(1);
  transform-origin: center;
  transition:
    box-shadow 1000ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 1000ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow, transform;
}

.hero-stage.is-visible {
  box-shadow: 0 0 0 6px rgba(101, 101, 106, 0.16);
  transform: scale(1.05);
}

.hero-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding-top: var(--section-y);
  padding-bottom: 0;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 18px;
}

#resources .section-header h2 {
  color: #fff;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: 0;
}

#resources .section-header p {
  padding: 0 80px;
  color: #c9c9d2;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.clg-section {
  padding-top: var(--section-y);
  padding-bottom: 0;
}

.clg-layout {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: flex-start;
}

.clg-copy {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.clg-copy h2 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.clg-copy > p {
  margin: 16px 0 24px;
  color: #c9c9d2;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.clg-journey {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.clg-progress {
  position: relative;
  width: 4px;
  height: var(--clg-progress-height, 260px);
  min-height: var(--clg-progress-height, 260px);
  margin-top: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.clg-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, #2d6df6 0%, #1f5ae0 100%);
  box-shadow: 0 0 24px rgba(45, 109, 246, 0.35);
  transform-origin: top;
  transform: scaleY(0);
  will-change: top, height, opacity, transform;
  transition: top 220ms ease, height 220ms ease, opacity 180ms ease, transform 120ms linear;
}

.clg-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 14px;
  margin: 8px 0 12px;
}

.clg-step {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 180ms ease;
}

.clg-step:hover {
  transform: translateX(2px);
}

.clg-step:focus-visible {
  outline: 2px solid rgba(45, 109, 246, 0.65);
  outline-offset: 8px;
}

.clg-step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #5d5d67;
}

.clg-step.is-active h3 {
  color: #fff;
}

.clg-step__body {
  display: none;
  margin-top: 16px;
  margin-bottom: 0;
  overflow: hidden;
  color: #c9c9d2;
  font-size: 16px;
  line-height: 1.5;
}

.clg-step__body p {
  margin: 0;
}

.clg-step.is-active .clg-step__body {
  display: block;
}

.clg-step__body strong {
  color: #fff;
}

.clg-visual-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  align-self: flex-start;
}

.clg-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

.clg-visual--mobile {
  display: none;
  margin-top: 24px;
}

.integration-stack {
  display: grid;
  gap: 80px;
}

.integration-card {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(17, 19, 27, 0.95)),
    rgba(9, 10, 15, 0.92);
  box-shadow: var(--shadow);
}

.integration-visual {
  min-height: 414px;
  background: #0a0d14;
}

.integration-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.integration-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 38px 34px 34px;
}

.integration-copy .badge {
  width: fit-content;
  margin-bottom: 20px;
}

.integration-copy h2 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: 0;
}

.integration-copy p {
  margin: 20px 0 0;
  color: #c9c9d2;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.story-card h3,
.pricing-card h3,
.cta-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.story-card p,
.pricing-card p,
.cta-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.story-card p {
  flex: 1;
}

.pricing-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  position: relative;
  padding-left: 20px;
  margin-top: 12px;
  color: var(--text-soft);
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

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

.story-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.story-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: rgba(6, 8, 18, 0.72);
}

.story-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 18px;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.story-tag__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #723197 0%, #4d247c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 18px rgba(40, 17, 78, 0.24);
}

.story-tag__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(45, 109, 246, 0.12));
}

.pricing-hero {
  padding: 88px 0 28px;
}

.pricing-shell {
  text-align: center;
}

.billing-switch {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  border: 1px solid rgb(61, 61, 64);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.billing-switch button {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  padding: 6px 12px;
  border-radius: 8px;
}

.billing-switch .is-active {
  background: #fff;
  color: #11131b;
}

.billing-note {
  margin: 14px 0 0;
  color: var(--text-faint);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  width: min(100%, 1060px);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 232px));
  justify-content: center;
  gap: 42px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #3d3d40;
  background: linear-gradient(4deg, #212123 3.27%, #121213 96.09%);
  padding: 28px 26px 26px;
}

.pricing-card.featured {
  border-color: #e1e1e3;
  background: linear-gradient(4deg, #f8f9fa 3.29%, #e1e1e3 102.69%);
  box-shadow: 0 20px 42px rgba(6, 11, 28, 0.18);
}

.price-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: none;
  color: #a3a3a7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 0 22px 0 14px;
  background: linear-gradient(135deg, #8f24d7 0%, #1b70ff 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  color: #fff;
}

.price-line span {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.price-line strong {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.price-compare {
  min-height: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.price-compare__strike {
  color: #65656a;
  text-decoration: line-through;
}

.price-compare__note {
  color: #a3a3a7;
}

.pricing-card.featured .price-tag {
  color: #65656a;
}

.pricing-card.featured .price-line {
  color: #212123;
}

.pricing-card.featured p {
  color: #65656a;
}

.pricing-card.featured .price-compare__strike {
  color: #a3a3a7;
}

.pricing-card.featured .price-compare__note {
  color: #65656a;
}

.pricing-card .button {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
}

.pricing-card .hero-actions {
  margin-top: auto;
  padding-top: 22px;
  width: 100%;
}

.pricing-card p {
  margin-top: 14px;
  color: #b8b8bb;
  font-size: 15px;
  line-height: 1.6;
}

.pricing-card .button--primary {
  border-color: #3d3d40;
  background: transparent;
  color: #fff;
}

.pricing-card .button--primary:hover {
  background: rgba(101, 101, 106, 0.16);
}

.pricing-card.featured .button--primary {
  border-color: #d8dade;
  background: rgba(255, 255, 255, 0.72);
  color: #212123;
}

.pricing-card.featured .button--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.pricing-card .button--ghost {
  border-color: transparent;
  background: linear-gradient(180deg, #1b70ff, #005af1);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pricing-card .button--ghost:hover {
  background: linear-gradient(180deg, #2b7cff, #0d63f6);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--text-soft);
}

.compare-table tbody th {
  background: rgba(255, 255, 255, 0.03);
  color: #9fbdff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.faq {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 600;
}

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

.faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-soft);
  line-height: 1.7;
}

.footer {
  padding: 30px 0 48px;
}

.footer-panel {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.footer-links li {
  margin-top: 10px;
  color: var(--text-soft);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-faint);
}

body[data-page="contact"] {
  color: var(--text);
  background:
    radial-gradient(circle at 18% 78%, rgba(139, 37, 207, 0.34), transparent 28%),
    radial-gradient(circle at 84% 84%, rgba(45, 109, 246, 0.3), transparent 24%),
    linear-gradient(180deg, #050505 0%, #07030d 58%, #0b0716 100%);
}

.contact-page {
  background: #ffffff;
  color: #212123;
}

.contact-sales-shell {
  width: min(calc(100% - 56px), 1047px);
  margin: 0 auto;
  padding: 31px 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 486px) minmax(430px, 514px);
  gap: 47px;
  align-items: start;
}

.contact-sales-copy {
  padding-top: 1px;
}

.contact-sales-copy h1 {
  width: min(100%, 430px);
  margin: 0;
  color: #202124;
  font-size: 37px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-sales-lede {
  width: min(100%, 486px);
  margin: 9px 0 0;
  color: #5f6368;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.contact-sales-list {
  list-style: none;
  margin: 19px 0 0;
  padding: 0 0 0 4px;
  display: grid;
  gap: 13px;
  color: #5f6368;
  font-size: 16px;
  line-height: 1.48;
}

.contact-sales-list li {
  position: relative;
  padding-left: 32px;
}

.contact-sales-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #0d6efd;
}

.contact-sales-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.contact-awards {
  width: 487px;
  max-width: 100%;
  margin-top: 46px;
}

.contact-rating {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #202124;
  font-size: 14px;
  line-height: 1.4;
}

.contact-rating__stars {
  color: #ff260f;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}

.contact-sales-form {
  min-height: 774px;
  padding: 57px 39px 40px;
  border: 1px solid #d9dee7;
  border-radius: 18px;
  background: #f8f9fb;
  color: #111111;
}

.contact-form-intro {
  width: min(100%, 407px);
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 500;
}

.contact-form-intro strong {
  font-weight: 800;
}

.contact-field-grid {
  display: grid;
  align-items: start;
  gap: 29px;
}

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

.contact-field {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  color: #111111;
  font-size: 16px;
  line-height: 1.2;
}

.contact-field span {
  display: inline-block;
}

.contact-field em,
.contact-consent em {
  color: #ff0000;
  font-style: normal;
}

.contact-field input {
  width: 100%;
  height: 46px;
  border: 1px solid #c4c7cc;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  padding: 0 12px;
  font-size: 16px;
  outline: none;
}

.contact-field-error {
  margin: -3px 0 0;
  color: #ff0000;
  font-size: 16px;
  line-height: 1.2;
}

.contact-consent .contact-field-error {
  grid-column: 1 / -1;
}

.contact-select {
  position: relative;
  display: block !important;
  width: 100%;
}

.contact-select > button {
  position: relative;
  width: 100%;
  height: 46px;
  border: 1px solid #c4c7cc;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  padding: 0 40px 0 12px;
  text-align: left;
  font-size: 16px;
}

.contact-select > button::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  border-top: 6px solid #111111;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  transform: translateY(-35%);
}

.contact-select__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid !important;
  overflow: hidden;
  padding: 4px;
  border: 1px solid #c4c7cc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.16);
}

.contact-select__menu[hidden] {
  display: none !important;
}

.contact-select__menu button {
  min-height: 31px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #111111;
  padding: 6px 10px;
  text-align: left;
  font-size: 16px;
}

.contact-select__menu button:hover,
.contact-select__menu button.is-selected {
  background: #0d6efd;
  color: #ffffff;
}

.contact-sales-form h2 {
  margin: 34px 0 36px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-phone-input {
  display: grid !important;
  grid-template-columns: 55px auto 1fr;
  align-items: stretch;
  height: 46px;
  border: 1px solid #c4c7cc;
  border-radius: 8px;
  overflow: visible;
  background: #ffffff;
}

.contact-select--country {
  width: 55px;
  min-width: 55px;
  height: 100%;
}

.contact-select--country::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  z-index: 2;
  width: 1px;
  background: #c4c7cc;
  pointer-events: none;
}

.contact-select--country > button {
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px 0 10px;
}

.contact-select--country > button::after {
  right: 9px;
  border-top-width: 5px;
  border-left-width: 5px;
  border-right-width: 5px;
}

.contact-country-flag {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contact-select__menu--country {
  right: auto;
  width: 272px;
  max-height: 236px;
  overflow-y: auto;
}

.contact-select__menu--country button {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
}

.contact-phone-dial {
  display: inline-flex !important;
  align-items: center;
  height: 44px;
  padding: 0 8px 0 10px;
  color: #111111;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.contact-phone-input input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 6px;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  margin: 3px 0 0;
  color: #111111;
  font-size: 16px;
  line-height: 1.12;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #0d6efd;
}

.contact-form-actions {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

.contact-form-status {
  margin: 24px 0 0;
  color: #0f8a3a;
  font-size: 16px;
  line-height: 1.35;
}

.contact-form-status.is-error {
  color: #ff0000;
}

.contact-form-actions button {
  height: 44px;
  min-width: 150px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: #0d6efd;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
}

@media (max-width: 1080px) {
  .story-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-sales-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-sales-form {
    min-height: 0;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

}

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

  .hero {
    margin-inline: -24px;
    padding-inline: 24px;
  }

  .hero-section-gradient-optimized {
    --vertical-position: 60vh;
    --orb-size-0: 80vw;
    --orb-size-1: 60vw;
    --orb-size-2: 55vw;
    --orb-size-3: 50vw;
    --orb-size-4: 45vw;
    --orb-size-5: 48vw;
    --orb-size-6: 70vw;
    --orb-size-7: 85vw;
    --orb-size-8: 65vw;
    --orb-size-9: 60vw;
  }
  .hero-stage {
    margin-top: 42px;
    border-radius: 12px;
  }

  .story-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .clg-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .clg-copy,
  .clg-visual-wrap {
    max-width: 100%;
  }

  .clg-visual-wrap {
    display: none;
  }

  .clg-visual--mobile {
    display: block;
  }

  .integration-card {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .integration-visual {
    min-height: 250px;
  }

  .integration-copy {
    padding: 28px 24px 30px;
  }

  .integration-copy h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .integration-copy p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .clg-copy h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .clg-copy > p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .clg-journey {
    gap: 14px;
  }

  .clg-progress {
    height: var(--clg-progress-height, 260px);
    min-height: var(--clg-progress-height, 260px);
  }

  .clg-steps {
    gap: 24px;
    padding-left: 10px;
    margin: 6px 0 8px;
  }

  .clg-step h3 {
    font-size: 16px;
  }

  .clg-step__body {
    font-size: 14px;
  }

  .footer-panel {
    padding: 24px;
  }

  .language-switcher__menu {
    min-width: 100%;
  }

  .contact-sales-shell {
    width: min(calc(100% - 24px), 520px);
    padding-top: 28px;
  }

  .contact-sales-copy h1 {
    font-size: 34px;
  }

  .contact-sales-lede,
  .contact-sales-list,
  .contact-field,
  .contact-consent {
    font-size: 15px;
  }

  .contact-sales-form {
    padding: 34px 24px 28px;
  }

  .contact-field-grid--two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-actions {
    justify-content: stretch;
  }

  .contact-form-actions button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage {
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 480px) {
  .hero-section-gradient-optimized {
    --vertical-position: 80vh;
    --orb-size-0: 70vw;
    --orb-size-1: 55vw;
    --orb-size-2: 50vw;
    --orb-size-3: 45vw;
    --orb-size-4: 40vw;
    --orb-size-5: 42vw;
    --orb-size-6: 60vw;
    --orb-size-7: 75vw;
    --orb-size-8: 55vw;
    --orb-size-9: 55vw;
  }
}
