:root {
  --primary: #91f0be;
  --primary-strong: #64b2a8;
  --primary-deep: #14796d;
  --secondary: #76aff1;
  --secondary-strong: #5b97df;
  --brand-blue: #00527c;
  --brand-night: #171d24;
  --dark: #1f252d;
  --dark-80: rgba(31, 37, 45, 0.82);
  --dark-56: rgba(31, 37, 45, 0.56);
  --dark-24: rgba(31, 37, 45, 0.12);
  --bg: #f5faff;
  --bg-alt: #eaf4fb;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(97, 130, 153, 0.16);
  --line-strong: rgba(118, 175, 241, 0.24);
  --shadow-sm: 0 6px 18px rgba(35, 54, 71, 0.06);
  --shadow: 0 18px 56px rgba(35, 54, 71, 0.11);
  --shadow-lg: 0 26px 80px rgba(35, 54, 71, 0.16);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background:
    radial-gradient(circle at 0% 0%, rgba(118, 175, 241, 0.16), transparent 26%),
    radial-gradient(circle at 100% 18%, rgba(0, 82, 124, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 44%, var(--bg-alt) 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.container--narrow {
  width: min(860px, calc(100vw - 40px));
}

.gradient-text {
  background: linear-gradient(135deg, #f8fbff 0%, var(--secondary) 42%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(139, 230, 182, 0.34);
  background: rgba(139, 230, 182, 0.12);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip--blue {
  background: rgba(118, 175, 241, 0.1);
  border-color: rgba(118, 175, 241, 0.28);
  color: #4b7ebb;
}

.chip--dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.btn,
.nav-btn,
.btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.nav-btn:hover,
.btn-plan:hover {
  transform: translateY(-2px);
}

.btn--primary,
.nav-btn,
.btn-plan--primary {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 82, 124, 0.24);
}

.btn--ghost,
.btn-plan--ghost {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  color: var(--dark-80);
  box-shadow: var(--shadow-sm);
}

.btn--dark-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.28s ease;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 29, 36, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 12px 32px rgba(3, 12, 24, 0.18);
  opacity: 0.56;
  transition: opacity 0.28s ease, border-color 0.28s ease;
}

.navbar--scrolled {
  padding: 12px 0;
}

.navbar--scrolled::before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(35, 54, 71, 0.08);
}

.navbar__inner,
.nav-mobile {
  position: relative;
  z-index: 1;
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar--scrolled .nav-links a {
  color: var(--dark-80);
}

.nav-login {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 82, 124, 0.24);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.navbar--scrolled .nav-links a:hover {
  color: var(--brand-blue);
}

.nav-login:hover {
  transform: translateY(-2px);
  background: #00699d;
  box-shadow: 0 16px 32px rgba(0, 82, 124, 0.3);
}

.nav-cta {
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.navbar--scrolled .nav-toggle span {
  background: var(--dark);
}

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

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

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

.nav-mobile {
  display: none;
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 18px;
}

.nav-mobile--open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.nav-mobile a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 68px;
  background:
    radial-gradient(circle at 84% 86%, rgba(118, 175, 241, 0.16) 0%, transparent 34%),
    radial-gradient(circle at 4% 18%, rgba(145, 240, 190, 0.16) 0%, transparent 28%),
    linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-night) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 175, 241, 0.1) 0%, transparent 66%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-kicker strong {
  color: var(--primary);
}

.hero__copy h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-channel-rotator {
  position: relative;
  display: inline-grid;
  width: 5.9em;
  height: 1.08em;
  overflow: hidden;
  vertical-align: -0.1em;
  color: var(--primary);
}

.hero-channel-rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(80%);
  animation: hero-channel-cycle 10s ease-in-out infinite;
}

.hero-channel-rotator span:nth-child(2) { animation-delay: 2s; }
.hero-channel-rotator span:nth-child(3) { animation-delay: 4s; }
.hero-channel-rotator span:nth-child(4) { animation-delay: 6s; }
.hero-channel-rotator span:nth-child(5) { animation-delay: 8s; }

@keyframes hero-channel-cycle {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }

  5%,
  16% {
    opacity: 1;
    transform: translateY(0);
  }

  21%,
  100% {
    opacity: 0;
    transform: translateY(-80%);
  }
}

.hero__subtitle {
  max-width: 540px;
  font-size: 0.96rem;
  color: #a7b2bf;
  margin-bottom: 14px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 15px;
  max-width: 620px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

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

.hero-benefits li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.hero__trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(145, 240, 190, 0.36);
  color: var(--primary);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
  min-height: 500px;
}

.app-frame {
  position: absolute;
  top: 58px;
  right: 184px;
  width: min(600px, 88%);
  z-index: 2;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(218, 229, 239, 0.92);
  background: rgba(245, 248, 252, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(3, 12, 24, 0.28), 0 0 0 10px rgba(255, 255, 255, 0.05);
  opacity: 0.92;
  transform: scale(0.75) rotate(-1.4deg);
  transform-origin: top right;
  animation: heroMockFloat 6s ease-in-out infinite;
}

.app-frame__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid #dde7f0;
}

.app-frame__mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--brand-blue);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.app-frame__menu {
  width: 28px;
  height: 28px;
  border: 0;
  color: #2f4657;
  background: transparent;
  font-size: 1rem;
}

.chrome-url {
  flex: 1;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid #dce7f0;
  background: #ffffff;
  color: #8a9aaa;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px;
}

.app-frame__icons {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.app-frame__icons span {
  width: 15px;
  height: 15px;
  border-radius: 6px;
  border: 2px solid #496274;
  opacity: 0.82;
}

.app-frame__avatar {
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: top center;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(31, 48, 66, 0.18);
}

.app-frame__body {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 198px;
  min-height: 328px;
  background: rgba(243, 247, 251, 0.82);
}

.mock-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 13px;
  padding: 16px 7px;
  border-right: 1px solid #dfe9f2;
  background: rgba(255, 255, 255, 0.78);
}

.mock-sidebar span {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  border: 2px solid #536b7d;
  opacity: 0.78;
}

.mock-sidebar__active {
  background: var(--brand-blue);
  border-color: var(--brand-blue) !important;
  box-shadow: 0 8px 18px rgba(1, 81, 124, 0.22);
}

.mock-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(247, 250, 255, 0.78);
}

.mock-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #dde7f0;
  background: rgba(255, 255, 255, 0.78);
}

.mock-panel__header strong {
  display: block;
  margin-top: 2px;
  color: #162640;
  font-family: var(--font-head);
  font-size: 0.82rem;
}

.mock-panel__header span,
.mock-panel__header small {
  display: block;
  color: #7b8da0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mock-panel__header small {
  margin-top: 3px;
  font-weight: 600;
  text-transform: none;
}

.mock-panel__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 184, 132, 0.34);
  background: rgba(42, 184, 132, 0.1);
  color: var(--primary-deep);
  font-size: 0.66rem;
  font-weight: 700;
}

.mock-bubbles {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px 12px;
  flex: 1;
}

.mock-event {
  justify-self: center;
  width: min(100%, 340px);
  color: #8394a5;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
}

.bubble {
  max-width: 86%;
  padding: 8px 10px;
  border: 1px solid #dbe7f2;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(20, 43, 65, 0.05);
  font-size: 0.63rem;
  line-height: 1.45;
}

.bubble strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.58rem;
  color: #536b7d;
}

.bubble--client {
  justify-self: start;
  margin-left: 18px;
  background: #ffffff;
  color: #344d65;
}

.bubble--assistant {
  justify-self: end;
  margin-right: 18px;
  background: #eaf3ff;
  color: #294761;
}

.mock-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
  padding: 8px 10px;
  border: 1px solid #f0d3bf;
  border-radius: 10px;
  background: #fff7f0;
  color: #915a34;
  font-size: 0.6rem;
}

.mock-alert button {
  flex: 0 0 auto;
  min-height: 25px;
  padding: 0 8px;
  border: 1px solid #d69a72;
  border-radius: 999px;
  background: #ffffff;
  color: #915a34;
  font-size: 0.58rem;
  font-weight: 800;
}

.mock-panel__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-top: 1px solid #dde7f0;
  color: var(--dark-56);
  background: rgba(255, 255, 255, 0.78);
}

.hero-bot {
  position: absolute;
  right: -40px;
  bottom: -92px;
  width: min(520px, 66%);
  z-index: 3;
  filter: drop-shadow(0 22px 42px rgba(3, 12, 24, 0.36));
  pointer-events: none;
}

@keyframes heroMockFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.75) rotate(-1.4deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) scale(0.75) rotate(-0.4deg);
  }
}

.mock-panel__input span {
  flex: 1;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #dbe7f2;
  display: flex;
  align-items: center;
  background: #fff;
  font-size: 0.68rem;
}

.mock-panel__input button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.mock-details {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  border-left: 1px solid #dfe9f2;
}

.mock-details section {
  padding: 10px;
  border: 1px solid #dce7f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(20, 43, 65, 0.04);
}

.mock-details h4 {
  margin-bottom: 8px;
  color: #26384c;
  font-size: 0.66rem;
}

.mock-details dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.mock-details dt {
  color: #7d8fa1;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-details dd {
  margin: 0 0 4px;
  color: #2b4056;
  font-size: 0.64rem;
  font-weight: 800;
}

.mock-details p {
  color: #b06a3c;
  font-size: 0.64rem;
  font-weight: 800;
}

.mock-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mock-status-row span {
  padding: 6px 9px;
  border: 1px solid #e1e9f1;
  border-radius: 999px;
  color: #607184;
  font-size: 0.58rem;
  font-weight: 800;
}

.mock-status-row .is-active {
  border-color: rgba(42, 184, 132, 0.38);
  color: var(--primary-deep);
  background: rgba(42, 184, 132, 0.09);
}

.stats-bar {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  backdrop-filter: blur(14px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
}

.stat span {
  color: var(--dark-56);
  font-size: 0.86rem;
}

.section {
  padding: 92px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(234, 244, 251, 0.82) 100%);
}

.section--conversations {
  padding: 54px 0 42px;
}

.section-heading {
  margin-bottom: 54px;
  text-align: center;
}

.section-heading h2 {
  max-width: 840px;
  margin: 18px auto 0;
  font-size: clamp(1.72rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.section-heading p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--dark-80);
}

.section-heading--feature {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 34px;
}

.section--conversations .section-heading--feature {
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #3bb2e7;
  font-family: var(--font-head);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading--feature h2 {
  max-width: 920px;
  color: #3bb2e7;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.02;
}

.section-heading--feature p {
  max-width: 560px;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.55;
}

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

.feature-card,
.pricing-card,
.spotlight__visual,
.mini-board__card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 112px;
  border-radius: 24px;
  padding: 28px;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary-strong) 100%);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 230, 182, 0.16);
  color: var(--primary-deep);
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-card__icon--blue {
  background: rgba(118, 175, 241, 0.16);
  color: #4b7ebb;
}

.feature-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--dark-80);
  font-size: 0.95rem;
}

.conversations-slider {
  position: relative;
  min-height: 630px;
  overflow: visible;
}

.section--conversations .conversations-slider {
  min-height: 504px;
}

.conversations-slider::before {
  content: "";
  position: absolute;
  inset: 8% 44% 8% -8%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(139, 230, 182, 0.22), transparent 64%),
    radial-gradient(circle at 70% 30%, rgba(59, 178, 231, 0.2), transparent 48%);
  filter: blur(4px);
  pointer-events: none;
}

.conversations-slider__viewport {
  position: relative;
  min-height: 572px;
}

.section--conversations .conversations-slider__viewport {
  min-height: 470px;
}

.conversations-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 18px 0 86px;
  opacity: 0;
  transform: translateX(18px);
  overflow: visible;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.section--conversations .conversations-slide {
  padding: 0 0 46px;
}

.conversations-slide--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.conversations-slide__content {
  position: relative;
  z-index: 2;
  min-height: 372px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--conversations .conversations-slide__content {
  min-height: 300px;
}

.conversations-slide__tag {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 178, 231, 0.12);
  color: #1e6c8e;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.conversations-slide h2 {
  max-width: 650px;
  margin: 20px 0 18px;
  color: var(--brand-night);
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.conversations-slide p {
  max-width: 590px;
  margin: 0;
  color: var(--dark-80);
  font-size: clamp(1.02rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.conversation-inbox,
.conversation-context,
.conversation-kanban {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.conversation-inbox,
.conversation-context {
  max-width: 470px;
  margin-top: 22px;
  min-height: 152px;
}

.conversation-inbox__item,
.conversation-context span,
.conversation-kanban span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(1, 81, 124, 0.11);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.conversation-inbox__item strong {
  color: var(--secondary-strong);
  font-size: 0.78rem;
}

.conversation-inbox__item--active {
  background: rgba(245, 255, 249, 0.9);
}

.conversation-context span {
  justify-content: flex-start;
  color: #1e6c8e;
}

.conversation-kanban {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin-top: 22px;
  min-height: 152px;
  align-content: start;
}

.conversation-kanban span {
  justify-content: center;
  min-height: 76px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}

.conversations-slide__visual {
  position: relative;
  z-index: 1;
  min-height: 448px;
  display: grid;
  place-items: center;
}

.section--conversations .conversations-slide__visual {
  min-height: 372px;
}

.section--conversations .conversations-slide__visual img {
  max-height: 390px;
}

.conversations-slide__visual--screenshot {
  transform: translateX(-30px);
}

.conversations-slide__visual::before {
  content: "";
  position: absolute;
  inset: 12% 8% 6%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(233, 248, 253, 0.9), rgba(233, 248, 253, 0.12) 58%, transparent 70%);
  filter: blur(2px);
  z-index: -1;
}

.conversations-slide__visual img {
  width: min(560px, 100%);
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(1, 44, 78, 0.12));
}

.conversations-slide__visual--screenshot img {
  width: min(760px, 112%);
  border-radius: 26px;
  box-shadow: 0 18px 28px rgba(1, 44, 78, 0.1);
}

.conversations-slide__visual--agent img {
  width: min(430px, 86%);
}

.conversations-slide__visual--man img {
  width: min(460px, 92%);
}

.conversations-slide__visual--automation img {
  width: min(610px, 100%);
}

.conversations-visual__badge {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 11px 14px;
  border: 1px solid rgba(1, 81, 124, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(1, 44, 78, 0.14);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.conversations-visual__badge--top {
  top: 14%;
  right: 2%;
}

.conversations-visual__badge--bottom {
  left: 4%;
  bottom: 18%;
}

.conversations-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-flex;
  gap: 8px;
  transform: translateX(-50%);
}

.conversations-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 81, 124, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.conversations-slider__dot--active {
  width: 26px;
  background: var(--secondary-strong);
}

.product-sections {
  padding-top: 88px;
}

.product-stack {
  display: grid;
  gap: 0;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 36px;
  align-items: center;
  scroll-margin-top: 112px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.product-panel--loose {
  position: relative;
  min-height: 610px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-panel--loose + .product-panel--loose {
  margin-top: 64px;
  padding-top: 78px;
}

.product-panel--loose + .product-panel--loose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(860px, 78vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(59, 178, 231, 0.26), transparent);
}

.product-panel--reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.product-panel--reverse .product-panel__content {
  order: 2;
}

.product-panel--reverse .product-panel__visual {
  order: 1;
}

.product-panel--integrations {
  min-height: auto;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  grid-template-areas:
    "content visual"
    "available features";
  row-gap: 18px;
}

.product-panel--integrations .product-panel__content {
  grid-area: content;
  padding-top: 26px;
}

.product-panel--integrations .product-panel__inner-title {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.product-panel--integrations .product-panel__content p {
  max-width: 760px;
}

.product-panel--chatbot-flow {
  min-height: auto;
  align-items: stretch;
  grid-template-areas:
    "visual content"
    "features capture";
  row-gap: 18px;
}

.product-panel--chatbot-flow .product-panel__visual {
  grid-area: visual;
  order: initial;
}

.product-panel--chatbot-flow .product-panel__content {
  grid-area: content;
  order: initial;
  padding-top: 26px;
}

.product-panel--social-flow {
  min-height: auto;
  align-items: stretch;
  grid-template-areas:
    "content visual"
    "features commercial";
  row-gap: 18px;
}

.product-panel--social-flow .product-panel__content {
  grid-area: content;
  padding-top: 26px;
}

.product-panel--social-flow .product-panel__visual {
  grid-area: visual;
}

.product-panel--crm-flow {
  min-height: auto;
  align-items: stretch;
  grid-template-areas:
    "visual content"
    "features sync";
  row-gap: 18px;
}

.product-panel--crm-flow .product-panel__visual {
  grid-area: visual;
  order: initial;
}

.product-panel--crm-flow .product-panel__content {
  grid-area: content;
  order: initial;
  padding-top: 26px;
}

.product-panel__heading {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.product-panel__heading span {
  color: #3bb2e7;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0;
}

.product-panel__section-heading {
  margin-bottom: 28px;
}

.product-panel__section-heading h2 {
  color: #3bb2e7;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.02;
}

.product-panel__section-heading p {
  max-width: 560px;
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--dark-80);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.55;
}

.product-panel__inner-title {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--brand-night);
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.product-panel__content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.56rem);
  line-height: 1.14;
}

.product-panel__content p {
  max-width: 680px;
  margin-top: 18px;
  margin-bottom: 24px;
  color: var(--dark-80);
}

.product-panel__subtitle {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.product-panel__visual {
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 175, 241, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 251, 0.94) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-panel__visual--chat {
  min-height: 430px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.product-panel__visual--chatbot {
  min-height: 390px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.product-panel__visual--crm {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.crm-visual__image {
  width: min(560px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(1, 44, 78, 0.16));
}

.chatbot-visual__image {
  width: min(500px, 106%);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(1, 44, 78, 0.16));
}

.whatsapp-visual {
  position: relative;
  width: min(430px, 92%);
  min-height: 390px;
  display: grid;
  place-items: end center;
  isolation: isolate;
}

.whatsapp-visual__agent {
  position: relative;
  z-index: 2;
  align-self: end;
  filter: drop-shadow(0 28px 34px rgba(1, 44, 78, 0.18));
}

.whatsapp-visual__card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(1, 44, 78, 0.12);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  backdrop-filter: blur(14px);
}

.whatsapp-visual__card strong {
  font-family: var(--font-head);
}

.whatsapp-visual__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(139, 230, 182, 0.2);
}

.whatsapp-visual__card--lead {
  top: 52px;
  left: 18px;
}

.whatsapp-visual__card--ai {
  top: 122px;
  right: 8px;
  color: #1e6c8e;
}

.whatsapp-visual__card--official {
  top: 186px;
  left: -2px;
  background: rgba(239, 248, 253, 0.84);
}

.whatsapp-visual__card--history {
  right: 10px;
  bottom: 112px;
}

.whatsapp-visual__card--team {
  left: 36px;
  bottom: 72px;
  color: #237a57;
  background: rgba(245, 255, 249, 0.82);
}

.whatsapp-visual__card--conversion {
  right: 38px;
  bottom: 34px;
  display: grid;
  gap: 0;
  min-width: 134px;
  background: rgba(1, 81, 124, 0.92);
  color: #ffffff;
}

.whatsapp-visual__card--conversion strong {
  font-size: 1.1rem;
}

.whatsapp-visual__card--conversion span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
}

.conversation-preview,
.automation-map,
.crm-pipeline,
.integration-grid {
  width: min(360px, 86%);
}

.conversation-preview {
  display: grid;
  gap: 12px;
}

.conversation-preview__header,
.conversation-preview__meta,
.conversation-preview__bubble,
.automation-map,
.crm-pipeline span,
.integration-grid span {
  border: 1px solid rgba(1, 81, 124, 0.14);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.conversation-preview__header {
  padding: 16px;
  border-radius: 18px;
}

.conversation-preview__header span,
.conversation-preview__meta {
  color: var(--secondary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.conversation-preview__header strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-head);
}

.conversation-preview__bubble {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 18px 18px 18px 6px;
  color: var(--dark-80);
}

.conversation-preview__bubble--agent {
  justify-self: end;
  border-radius: 18px 18px 6px 18px;
  background: rgba(1, 81, 124, 0.08);
  color: var(--primary-deep);
}

.conversation-preview__meta {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(139, 230, 182, 0.22);
  text-align: center;
}

.automation-map {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
}

.automation-map span {
  color: var(--secondary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.automation-map strong {
  font-family: var(--font-head);
  color: var(--primary-deep);
}

.automation-map em {
  color: var(--dark-80);
  font-style: normal;
}

.crm-pipeline,
.integration-grid {
  display: grid;
  gap: 12px;
}

.crm-pipeline span,
.integration-grid span {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--dark-80);
  font-weight: 700;
}

.product-panel__visual--social {
  min-height: 430px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.product-panel__visual--integrations {
  grid-area: visual;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  align-self: start;
  display: grid;
  align-content: start;
  gap: 18px;
}

.product-panel__visual--integrations img {
  width: min(760px, 108%);
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(15, 23, 42, 0.14));
}

.integration-feature-cards {
  grid-area: features;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.integration-feature-cards--content {
  grid-area: available;
  width: min(460px, 100%);
  grid-template-columns: 1fr;
}

.integration-feature-cards article {
  border: 1px solid rgba(1, 81, 124, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 15px;
  display: grid;
  gap: 6px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.integration-feature-cards strong {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.2;
}

.integration-feature-cards span {
  color: var(--dark-80);
  font-size: 0.86rem;
  line-height: 1.45;
}

.chatbot-feature-cards {
  grid-area: features;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.chatbot-feature-cards--content {
  grid-area: capture;
  width: min(720px, 100%);
  justify-self: start;
  grid-template-columns: 1fr;
}

.chatbot-feature-cards article {
  border: 1px solid rgba(1, 81, 124, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 15px;
  display: grid;
  gap: 6px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.chatbot-feature-cards strong {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.2;
}

.chatbot-feature-cards span {
  color: var(--dark-80);
  font-size: 0.86rem;
  line-height: 1.45;
}

.chatbot-feature-card--lead {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.chatbot-feature-card--lead > span {
  display: grid;
  gap: 6px;
}

.chatbot-feature-card--lead em {
  color: var(--dark-80);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.45;
}

.chatbot-feature-card--lead img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.social-feature-cards {
  grid-area: features;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-feature-cards--content {
  grid-area: commercial;
  width: min(720px, 100%);
  grid-template-columns: 1fr;
}

.social-feature-cards article {
  border: 1px solid rgba(1, 81, 124, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 15px;
  display: grid;
  gap: 6px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.social-feature-cards strong {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.2;
}

.social-feature-cards span {
  color: var(--dark-80);
  font-size: 0.86rem;
  line-height: 1.45;
}

.crm-feature-cards {
  grid-area: features;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.crm-feature-cards--content {
  grid-area: sync;
  width: min(720px, 100%);
  grid-template-columns: 1fr;
}

.crm-feature-cards article {
  border: 1px solid rgba(1, 81, 124, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 15px;
  display: grid;
  gap: 6px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.crm-feature-cards strong {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.2;
}

.crm-feature-cards span {
  color: var(--dark-80);
  font-size: 0.86rem;
  line-height: 1.45;
}

.social-visual {
  position: relative;
  width: min(520px, 100%);
  min-height: 460px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.social-visual__image {
  position: relative;
  z-index: 1;
  width: min(470px, 98%);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(1, 44, 78, 0.18));
}

.social-visual__badge,
.social-visual__hub {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(1, 44, 78, 0.12);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.social-visual__badge--instagram {
  top: 34px;
  left: -10px;
}

.social-visual__badge--facebook {
  top: 132px;
  right: -12px;
  color: #1e6c8e;
}

.social-visual__badge--tiktok {
  left: -4px;
  bottom: 104px;
  color: #237a57;
  background: rgba(245, 255, 249, 0.84);
}

.social-visual__hub {
  right: -2px;
  bottom: 58px;
  border-radius: 18px;
  background: rgba(1, 81, 124, 0.92);
  color: #ffffff;
  font-family: var(--font-head);
}

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

.crm-pipeline span:nth-child(2),
.crm-pipeline span:nth-child(3) {
  background: rgba(139, 230, 182, 0.18);
}

.crm-pipeline span:nth-child(4) {
  background: var(--brand-blue);
  color: #ffffff;
}

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

.integration-grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-head);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.spotlight--reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.spotlight__text h2 {
  margin: 18px 0 18px;
  font-size: clamp(1.68rem, 2.7vw, 2.28rem);
  line-height: 1.14;
}

.spotlight__text p {
  color: var(--dark-80);
  margin-bottom: 24px;
}

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

.spotlight-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--dark-80);
}

.spotlight-list strong {
  color: var(--dark);
}

.spotlight__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.spotlight__visual--dashboard {
  padding: 16px;
}

.spotlight__visual--dashboard img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.spotlight__visual--soft {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 175, 241, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 251, 0.92) 100%);
}

.mini-board {
  display: grid;
  gap: 16px;
}

.mini-board__card {
  border-radius: 20px;
  padding: 22px;
}

.mini-board__card span {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-board__card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.mini-board__card p {
  color: var(--dark-80);
}

.pricing-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.pricing-tabs {
  width: fit-content;
  display: flex;
  gap: 4px;
  padding: 5px;
  margin: -18px auto 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.pricing-tabs__button {
  min-width: 104px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--dark-56);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-tabs__button--active {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 82, 124, 0.2);
}

.pricing-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 250px;
  min-width: 0;
  height: 100%;
  border-color: rgba(97, 130, 153, 0.26);
  border-radius: 8px;
  padding: 64px 22px 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.pricing-card--featured {
  border-color: var(--secondary);
  box-shadow: 0 18px 44px rgba(0, 82, 124, 0.12);
}

.pricing-card--status {
  flex-basis: 100%;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
}

.pricing-card__code {
  margin-bottom: 8px;
  color: var(--dark-56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.26rem;
  margin-bottom: 10px;
}

.pricing-card__perk {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(145, 240, 190, 0.42);
  color: #14523f;
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-card__desc,
.pricing-card__support-copy {
  color: var(--dark-80);
  font-size: 0.94rem;
  min-height: 86px;
}

.pricing-card__price {
  margin: 26px 0 22px;
}

.pricing-card__price strong {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 2.42rem;
  line-height: 1;
  color: var(--secondary-strong);
}

.pricing-card__price span {
  color: var(--dark-56);
  font-size: 0.84rem;
}

.pricing-card__price small {
  display: block;
  margin-top: 8px;
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid rgba(20, 121, 109, 0.24);
  border-radius: 999px;
  color: var(--dark-80);
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card__limits {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pricing-card__limits span {
  min-height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--dark-80);
  font-size: 0.88rem;
}

.pricing-card__limits span.is-available::before {
  content: "✓";
  color: var(--primary-deep);
  font-weight: 800;
}

.pricing-card__limits span.is-unavailable {
  color: rgba(31, 37, 45, 0.42);
}

.pricing-card__limits span.is-unavailable::before {
  content: "×";
  color: #d34f4f;
  font-weight: 900;
}

.pricing-card__actions {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.pricing-card__actions .btn-plan {
  width: 100%;
}

.logo-carousel {
  overflow: hidden;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.logo-carousel__header {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto 24px;
  text-align: center;
  color: var(--dark-56);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.logo-carousel__track {
  display: flex;
  width: max-content;
  gap: 54px;
  align-items: center;
  animation: logo-marquee 32s linear infinite;
}

.client-logo {
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 37, 45, 0.72);
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  white-space: nowrap;
}

.client-logo:nth-child(3n + 1) {
  color: var(--brand-blue);
}

.client-logo:nth-child(3n + 2) {
  color: var(--primary-deep);
}

.client-logo:nth-child(3n) {
  color: #334a5c;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

.faq-question span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 175, 241, 0.1);
  color: #4b7ebb;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--dark-80);
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
}

.faq-item--open .faq-answer {
  max-height: 180px;
  padding-bottom: 20px;
}

.faq-item--open .faq-question span {
  transform: rotate(45deg);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 54px 0 28px;
  background:
    radial-gradient(circle at 20% 50%, rgba(118, 175, 241, 0.18), transparent 34%),
    radial-gradient(circle at 80% 50%, rgba(0, 82, 124, 0.18), transparent 34%),
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-night) 100%);
  border-top: 0;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 78%);
  pointer-events: none;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
}

.footer__brand img {
  width: 82px;
  height: auto;
  margin-bottom: 18px;
}

.footer__brand p,
.footer__column a,
.footer__bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer__column a:hover {
  color: #ffffff;
}

.footer__column {
  display: grid;
  gap: 10px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer__social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer__social a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer__column h4 {
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
}

.checkout-topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.checkout-topbar__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 24px;
  align-items: center;
}

.checkout-topbar__logo img {
  width: 152px;
  height: auto;
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--dark-56);
  font-size: 0.82rem;
}

.checkout-progress span:first-child {
  color: var(--dark);
  font-weight: 700;
}

.checkout-progress__bars {
  display: flex;
  gap: 6px;
}

.checkout-progress__bars i {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(31, 37, 45, 0.1);
}

.checkout-progress__bars i:nth-child(-n + 2) {
  background: var(--primary-deep);
}

.checkout-progress[data-stage="payment"] .checkout-progress__bars i:nth-child(-n + 3),
.checkout-progress[data-stage="complete"] .checkout-progress__bars i {
  background: var(--primary-deep);
}

.checkout-secure {
  justify-self: end;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--dark-80);
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

.checkout-secure span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  border: 2px solid var(--primary-deep);
  font-size: 0.8rem;
}

.checkout-page {
  min-height: 100vh;
  padding-top: 0;
  background: #f2f5f9;
}

.checkout-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 46px;
  background:
    radial-gradient(circle at 84% 86%, rgba(118, 175, 241, 0.16) 0%, transparent 34%),
    radial-gradient(circle at 4% 18%, rgba(145, 240, 190, 0.16) 0%, transparent 28%),
    linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-night) 100%);
  color: #ffffff;
}

.checkout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  pointer-events: none;
}

.checkout-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.checkout-hero__content h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.checkout-hero__content p {
  color: var(--dark-80);
  font-size: 1rem;
  max-width: 620px;
}

.checkout-section {
  padding: 42px 0 72px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.checkout-layout--status {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.checkout-layout--cart {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  gap: 34px;
}

.checkout-main {
  display: grid;
  gap: 18px;
}

.checkout-main h1 {
  font-size: clamp(1.7rem, 2.7vw, 2.28rem);
  line-height: 1.12;
  margin: 0 0 10px;
}

.checkout-product,
.checkout-layout--cart .checkout-card,
.checkout-layout--cart .checkout-summary {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.checkout-product {
  padding: 0;
  overflow: hidden;
}

.checkout-product__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.checkout-product__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 124, 0.08);
  color: var(--brand-blue);
  font-weight: 800;
}

.checkout-product__top strong,
.checkout-product__body strong,
.checkout-summary__line strong {
  display: block;
  font-family: var(--font-head);
  color: var(--dark);
}

.checkout-product__top span,
.checkout-product__body p,
.checkout-summary__line span {
  color: var(--dark-56);
  font-size: 0.86rem;
}

.checkout-product__price {
  text-align: right;
}

.checkout-product__price strong {
  color: var(--brand-blue);
}

.checkout-product__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 240px);
  gap: 28px;
  padding: 20px 32px;
}

.checkout-product__billing {
  display: grid;
  gap: 10px;
}

.checkout-product__billing label {
  color: var(--dark-56);
  font-size: 0.9rem;
  font-weight: 700;
}

.checkout-product__billing select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0, 82, 124, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(45deg, transparent 50%, var(--brand-blue) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--brand-blue) 50%, transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    #ffffff;
  color: var(--dark);
  font: inherit;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
}

.checkout-product__billing select:disabled {
  color: var(--dark-56);
  cursor: not-allowed;
  opacity: 0.74;
}

.checkout-product__notice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 0 32px 20px;
  padding: 12px 16px;
  border-left: 4px solid var(--primary-deep);
  background: rgba(20, 121, 109, 0.08);
  color: var(--dark-80);
}

.checkout-product .checkout-summary__limits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0 32px 28px;
}

.checkout-product .checkout-summary__limits span {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark-80);
  font-size: 0.9rem;
}

.checkout-product .checkout-summary__limits span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--primary-deep);
  font-weight: 800;
}

.checkout-layout--cart .checkout-card {
  padding: 28px 32px;
}

.checkout-layout--cart .checkout-card::before,
.checkout-layout--cart .checkout-summary::before {
  display: none;
}

.checkout-layout--cart .checkout-summary {
  position: sticky;
  top: 24px;
  padding: 28px 26px;
}

.checkout-layout--cart .checkout-summary h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.38rem;
}

.checkout-summary__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-summary__line > strong {
  color: var(--brand-blue);
}

.checkout-summary__line--soft > strong {
  color: var(--primary-deep);
}

.checkout-summary__coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--primary-deep);
  font-size: 0.9rem;
}

.checkout-summary__coupon strong {
  color: var(--primary-deep);
  font-family: var(--font-head);
}

.checkout-coupon-field {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-coupon-field label {
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.checkout-coupon-field > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.checkout-coupon-field input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--dark);
  font: inherit;
  text-transform: uppercase;
}

.checkout-coupon-field button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.checkout-coupon-field button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.checkout-coupon-field small {
  color: var(--dark-56);
  font-size: 0.78rem;
}

.checkout-coupon-field small[data-type="success"] {
  color: var(--primary-deep);
}

.checkout-coupon-field small[data-type="error"] {
  color: #d34f4f;
}

.checkout-summary__total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 18px 0;
}

.checkout-summary__total span {
  font-family: var(--font-head);
  font-weight: 800;
}

.checkout-summary__total strong {
  text-align: right;
}

.checkout-summary__total b {
  display: block;
  color: var(--brand-blue);
  font-family: var(--font-head);
  font-size: 1.22rem;
}

.checkout-summary__total small {
  color: var(--dark-56);
  font-weight: 600;
}

.checkout-summary__button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}

.checkout-summary__hidden-code {
  display: none;
}

.coupon-modal[hidden] {
  display: none;
}

.coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.coupon-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, 0.58);
  backdrop-filter: blur(5px);
}

.coupon-modal__dialog {
  position: relative;
  width: min(460px, 100%);
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(3, 12, 24, 0.28);
}

.coupon-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 82, 124, 0.08);
  color: var(--brand-blue);
  font-size: 1.3rem;
  cursor: pointer;
}

.coupon-modal__eyebrow {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 121, 109, 0.1);
  color: var(--primary-deep);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coupon-modal h2 {
  max-width: 360px;
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1.1;
}

.coupon-modal p {
  color: var(--dark-80);
}

.coupon-modal__apply {
  width: 100%;
  margin-top: 4px;
}

.coupon-modal__skip {
  border: 0;
  background: transparent;
  color: var(--dark-56);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.checkout-summary,
.checkout-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 28px;
}

.checkout-summary::before,
.checkout-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary-strong) 100%);
}

.checkout-summary__eyebrow {
  margin: 0 0 8px;
  color: var(--dark-56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-summary h2,
.checkout-card h3 {
  font-size: 1.72rem;
  line-height: 1.08;
}

.checkout-summary__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0 10px;
}

.checkout-summary__price strong {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.checkout-summary__price span,
.checkout-summary__description,
.checkout-card__header p,
.checkout-step p,
.request-result__details p,
.request-result__message p,
.checkout-feedback {
  color: var(--dark-80);
}

.checkout-summary__annual {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(118, 175, 241, 0.08);
  border: 1px solid rgba(118, 175, 241, 0.12);
}

.checkout-summary__annual span,
.checkout-summary__annual strong {
  display: block;
}

.checkout-summary__annual strong {
  color: #ffffff;
}

.checkout-summary__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.checkout-summary__meta-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.checkout-summary__meta-card small {
  color: var(--dark-56);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-summary__limits {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.checkout-summary__limits span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(97, 130, 153, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.checkout-card__header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.checkout-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.checkout-step {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.checkout-step strong,
.request-result__details strong,
.request-result__message strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-head);
  color: var(--dark);
}

.checkout-form {
  display: grid;
  gap: 16px;
}

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

.checkout-form__grid--single {
  grid-template-columns: 1fr;
}

.checkout-form__field {
  display: grid;
  gap: 8px;
}

.checkout-form__field--website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkout-form__field span {
  color: #50606b;
  font-size: 0.92rem;
  font-weight: 600;
}

.checkout-form__field input,
.checkout-form__field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(118, 175, 241, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.94) 100%);
  color: #3d4e5d;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.checkout-form__field input:focus,
.checkout-form__field select:focus {
  border-color: rgba(118, 175, 241, 0.55);
  box-shadow: 0 0 0 4px rgba(118, 175, 241, 0.12);
}

.checkout-form__notice,
.request-result__message {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(118, 175, 241, 0.08);
  border: 1px solid rgba(118, 175, 241, 0.12);
}

.checkout-form__notice strong,
.request-result__badge {
  font-family: var(--font-head);
}

.checkout-form__footnote {
  color: var(--dark-56);
  font-size: 0.92rem;
}

.checkout-contract {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(118, 175, 241, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.checkout-contract__details {
  border: 1px solid rgba(0, 82, 124, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.checkout-contract__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--brand-blue);
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 800;
  list-style: none;
}

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

.checkout-contract__details summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(0, 82, 124, 0.08);
  color: var(--brand-blue);
}

.checkout-contract__details[open] summary::after {
  content: "-";
}

.checkout-contract__details summary span {
  margin-left: auto;
  color: var(--secondary-strong);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-contract__body {
  display: grid;
  gap: 12px;
  max-height: 280px;
  overflow: auto;
  padding: 0 16px 16px;
  color: #50606b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.checkout-contract__body strong {
  color: var(--brand-blue);
}

.checkout-contract__accept {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: #3d4e5d;
  font-size: 0.94rem;
  font-weight: 700;
}

.checkout-contract__accept input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-blue);
}

.checkout-payment,
.checkout-complete {
  scroll-margin-top: 24px;
}

.checkout-payment[hidden],
.checkout-complete[hidden] {
  display: none;
}

.checkout-payment__notice {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 82, 124, 0.14);
  background: rgba(0, 82, 124, 0.06);
  color: var(--dark-80);
}

.checkout-payment__notice strong {
  color: var(--brand-blue);
  font-family: var(--font-head);
}

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

.checkout-payment__methods label {
  cursor: pointer;
}

.checkout-payment__methods input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-payment__methods span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 82, 124, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-80);
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.checkout-payment__methods input:checked + span {
  border-color: rgba(0, 82, 124, 0.42);
  background: rgba(0, 82, 124, 0.08);
  color: var(--brand-blue);
}

.checkout-payment__pix {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(0, 82, 124, 0.28);
  background: #ffffff;
}

.checkout-payment__pix span {
  color: var(--dark-56);
  font-size: 0.86rem;
  font-weight: 800;
}

.checkout-payment__pix strong {
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 82, 124, 0.06);
  color: var(--brand-blue);
  font-family: var(--font-head);
  font-size: 0.9rem;
  word-break: break-word;
}

.checkout-payment__pix button {
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-blue);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.checkout-complete {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
}

.checkout-complete__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(139, 230, 182, 0.22);
  color: var(--primary-deep);
  font-size: 1.4rem;
  font-weight: 900;
}

.checkout-complete h3 {
  margin-bottom: 6px;
}

.checkout-complete p {
  color: var(--dark-80);
}

.checkout-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.checkout-feedback {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(97, 130, 153, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.checkout-feedback a {
  color: var(--secondary-strong);
  font-weight: 700;
}

.checkout-feedback--success {
  color: var(--primary-deep);
  border-color: rgba(139, 230, 182, 0.28);
  background: rgba(243, 253, 247, 0.98);
}

.checkout-feedback--error {
  color: #9a4a4a;
  border-color: rgba(228, 120, 120, 0.24);
  background: rgba(255, 246, 246, 0.98);
}

.request-result {
  display: grid;
  gap: 18px;
}

.request-result__badge {
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(118, 175, 241, 0.12);
  color: #3d5e89;
  font-size: 0.84rem;
  font-weight: 700;
}

.request-result__badge[data-status="APPROVED"] {
  background: rgba(139, 230, 182, 0.18);
  color: var(--primary-deep);
}

.request-result__badge[data-status="REJECTED"] {
  background: rgba(255, 224, 224, 0.92);
  color: #9a4a4a;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }
.fade-up.d5 { transition-delay: 0.4s; }
.fade-up.d6 { transition-delay: 0.48s; }

@media (max-width: 1080px) {
  .hero__layout,
  .spotlight,
  .spotlight--reverse,
  .product-panel,
  .product-panel--reverse,
  .footer__top,
  .checkout-layout,
  .checkout-layout--status {
    grid-template-columns: 1fr;
  }

  .product-panel--reverse .product-panel__content,
  .product-panel--reverse .product-panel__visual {
    order: initial;
  }

  .hero__visual {
    min-height: 520px;
  }

  .pricing-grid {
    display: flex;
  }
}

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

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

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

  .hero {
    padding: 118px 0 72px;
  }

  .hero__copy h1 {
    font-size: 1.82rem;
  }

  .hero-channel-rotator {
    width: 5.75em;
  }

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

  .hero__visual {
    min-height: auto;
  }

  .app-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
    animation: none;
  }

  .app-frame__body {
    display: block;
  }

  .mock-sidebar {
    display: none;
  }

  .app-frame__icons,
  .mock-details {
    display: none;
  }

  .hero-bot {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(280px, 68%);
    margin: -64px 0 0 auto;
    display: block;
  }

  .features-grid,
  .stats-grid,
  .checkout-summary__meta,
  .request-result__details,
  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .section--conversations {
    padding: 42px 0 34px;
  }

  .section--conversations .section-heading--feature {
    margin-bottom: 18px;
  }

  .conversations-slider {
    min-height: 820px;
  }

  .section--conversations .conversations-slider {
    min-height: 650px;
  }

  .conversations-slider__viewport {
    min-height: 778px;
  }

  .section--conversations .conversations-slider__viewport {
    min-height: 612px;
  }

  .conversations-slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 24px;
    padding: 0 0 74px;
  }

  .section--conversations .conversations-slide {
    gap: 18px;
    padding: 0 0 44px;
  }

  .conversations-slide__content {
    min-height: 312px;
    justify-content: flex-start;
  }

  .section--conversations .conversations-slide__content {
    min-height: 236px;
  }

  .conversations-slide h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .conversations-slide__visual {
    min-height: 320px;
  }

  .section--conversations .conversations-slide__visual {
    min-height: 300px;
  }

  .conversation-inbox,
  .conversation-context,
  .conversation-kanban {
    min-height: 142px;
  }

  .conversations-slide__visual--screenshot {
    transform: translateX(0);
  }

  .conversations-slide__visual img {
    max-height: 330px;
  }

  .conversations-slide__visual--screenshot img,
  .conversations-slide__visual--automation img {
    width: min(100%, 440px);
  }

  .conversations-visual__badge {
    font-size: 0.76rem;
    padding: 9px 11px;
  }

  .conversation-kanban {
    grid-template-columns: 1fr;
  }

  .conversation-kanban span {
    min-height: 44px;
  }

  .conversations-slider__controls {
    bottom: 0;
  }

  .pricing-card {
    flex-basis: 100%;
  }

  .product-sections {
    padding-top: 56px;
  }

  .product-panel {
    padding: 22px;
  }

  .product-panel--loose {
    min-height: auto;
    padding: 0;
  }

  .product-panel--integrations {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "available"
      "features";
  }

  .product-panel--chatbot-flow {
    grid-template-areas:
      "content"
      "visual"
      "capture"
      "features";
  }

  .product-panel--social-flow {
    grid-template-areas:
      "content"
      "visual"
      "features"
      "commercial";
  }

  .product-panel--crm-flow {
    grid-template-areas:
      "content"
      "visual"
      "sync"
      "features";
  }

  .product-panel--integrations .product-panel__content {
    padding-top: 0;
  }

  .product-panel--chatbot-flow .product-panel__content {
    padding-top: 0;
  }

  .product-panel--social-flow .product-panel__content {
    padding-top: 0;
  }

  .product-panel--crm-flow .product-panel__content {
    padding-top: 0;
  }

  .integration-feature-cards--content {
    margin-top: 20px;
  }

  .product-panel--loose + .product-panel--loose {
    margin-top: 44px;
    padding-top: 54px;
  }

  .product-panel__visual {
    min-height: 260px;
  }

  .product-panel__visual--chat {
    min-height: 360px;
  }

  .product-panel__visual--chatbot {
    min-height: 300px;
  }

  .product-panel__visual--integrations {
    min-height: 340px;
  }

  .integration-feature-cards {
    grid-template-columns: 1fr;
  }

  .chatbot-feature-cards {
    grid-template-columns: 1fr;
  }

  .social-feature-cards {
    grid-template-columns: 1fr;
  }

  .crm-feature-cards {
    grid-template-columns: 1fr;
  }

  .chatbot-visual__image {
    width: min(390px, 112%);
    max-height: 310px;
  }

  .whatsapp-visual {
    width: min(360px, 100%);
    min-height: 326px;
  }

  .whatsapp-visual__card {
    padding: 8px 10px;
    min-height: 36px;
    border-radius: 14px;
    font-size: 0.72rem;
  }

  .whatsapp-visual__card--lead {
    top: 38px;
    left: 2px;
  }

  .whatsapp-visual__card--ai {
    top: 98px;
    right: -2px;
  }

  .whatsapp-visual__card--official {
    top: 152px;
    left: 0;
  }

  .whatsapp-visual__card--history {
    right: 2px;
    bottom: 92px;
  }

  .whatsapp-visual__card--team {
    left: 14px;
    bottom: 58px;
  }

  .whatsapp-visual__card--conversion {
    right: 22px;
    bottom: 24px;
    min-width: 112px;
  }

  .crm-pipeline,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .logo-carousel {
    padding: 28px 0 34px;
  }

  .logo-carousel__track {
    gap: 34px;
    animation-duration: 24s;
  }

  .client-logo {
    min-width: 98px;
    font-size: 1rem;
  }

  .checkout-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-payment__methods,
  .checkout-complete {
    grid-template-columns: 1fr;
  }

  .checkout-complete .btn {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-channel-rotator span {
    animation: none;
    transform: none;
  }

  .hero-channel-rotator span:first-child {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
