: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: "Roboto", Arial, sans-serif;
  --font-hero: "Roboto", Arial, sans-serif;
  --font-body: "Roboto", Arial, 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: flex-start;
  gap: 30px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  padding: 8px;
  border-radius: 13px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 12px 26px rgba(23, 29, 36, 0.18);
  box-sizing: border-box;
  flex: 0 0 auto;
}

.navbar--scrolled .nav-logo img {
  background: var(--brand-blue);
}

.nav-logo__name {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.navbar--scrolled .nav-logo__name {
  color: var(--brand-night);
}

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

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

.nav-links a,
.nav-product__button {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

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

.nav-product {
  position: static;
}

.nav-product__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  font-family: var(--font-head);
  cursor: pointer;
  padding: 0;
}

.nav-product__button span {
  font-size: 0.66rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-product--open .nav-product__button span,
.nav-product:hover .nav-product__button span,
.nav-product:focus-within .nav-product__button span {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 14px);
  left: 50%;
  width: min(1240px, calc(100vw - 32px));
  padding-top: 30px;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.mega-menu::before,
.mega-menu::after {
  content: "";
  position: absolute;
  left: 220px;
  width: 0;
  height: 0;
  pointer-events: none;
}

.mega-menu::before {
  top: 18px;
  border-right: 12px solid transparent;
  border-bottom: 12px solid rgba(118, 175, 241, 0.18);
  border-left: 12px solid transparent;
}

.mega-menu::after {
  top: 20px;
  left: 221px;
  border-right: 11px solid transparent;
  border-bottom: 11px solid rgba(255, 255, 255, 0.98);
  border-left: 11px solid transparent;
}

.nav-product:hover .mega-menu,
.nav-product:focus-within .mega-menu,
.nav-product--open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__content {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(300px, 0.85fr);
  align-items: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(118, 175, 241, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(20, 44, 64, 0.22);
}

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

.mega-menu__group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-menu__group h3 {
  color: var(--brand-blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 8px 2px;
}

.mega-menu__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f3f7fd;
  color: var(--dark);
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.navbar .mega-menu__item {
  color: var(--dark);
}

.mega-menu__item:hover {
  transform: translateY(-1px);
  background: #eaf4fb;
  box-shadow: var(--shadow-sm);
}

.mega-menu__item--soon {
  background: #f7f9fc;
}

.mega-menu__item--soon small {
  color: var(--secondary-strong);
  font-weight: 800;
}

.mega-menu__item--soon b {
  opacity: 0.42;
}

.mega-menu__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: inset 0 0 0 1px rgba(118, 175, 241, 0.22);
}

.mega-menu__icon .material-symbols-outlined {
  font-size: 24px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.mega-menu__item strong,
.mega-menu__item small {
  display: block;
}

.mega-menu__item strong {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.mega-menu__item small {
  margin-top: 4px;
  color: var(--dark-56);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.38;
}

.mega-menu__item b {
  color: var(--brand-blue);
  font-size: 0.8rem;
}

.mega-menu__spotlight {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #f7fbff;
  color: var(--dark);
  box-shadow: inset 0 0 0 1px rgba(118, 175, 241, 0.18);
}

.mega-menu__spotlight-image {
  display: block;
  width: 100%;
  height: auto;
}

.mega-menu__spotlight-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(118, 175, 241, 0.2);
  box-shadow: 0 16px 38px rgba(20, 44, 64, 0.12);
  backdrop-filter: blur(12px);
}

.mega-menu__spotlight-caption small {
  color: var(--brand-blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu__spotlight-caption strong {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.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-login-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.18s ease;
}

.navbar--scrolled .nav-login-link,
.legal-page .nav-login-link {
  color: var(--dark-80);
}

.nav-login-link:hover {
  color: #ffffff;
}

.navbar--scrolled .nav-login-link:hover,
.legal-page .nav-login-link:hover {
  color: var(--brand-blue);
}

.nav-demo,
.nav-whatsapp {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-demo {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-night);
  box-shadow: 0 12px 26px rgba(23, 29, 36, 0.12);
}

.navbar--scrolled .nav-demo,
.legal-page .nav-demo {
  border-color: var(--line);
}

.nav-whatsapp {
  background: #25d366;
  color: #0f2d1b;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
}

.nav-demo .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 20;
}

.nav-whatsapp__icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

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

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

.nav-login:hover,
.nav-demo:hover,
.nav-whatsapp:hover {
  transform: translateY(-2px);
}

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

.nav-whatsapp:hover {
  background: #1fb85a;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.32);
}

.nav-demo:hover {
  background: #ffffff;
  border-color: rgba(118, 175, 241, 0.34);
  color: var(--brand-blue);
  box-shadow: 0 16px 32px rgba(35, 54, 71, 0.14);
}

.nav-cta {
  gap: 16px;
  margin-left: auto;
}

.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);
}

.legal-page .navbar {
  padding: 12px 0;
}

.legal-page .navbar::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);
}

.legal-page .nav-links a,
.legal-page .nav-product__button {
  color: var(--dark-80);
}

.legal-page .nav-links a:hover,
.legal-page .nav-product__button:hover {
  color: var(--brand-blue);
}

.legal-page .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,
.nav-mobile-product summary {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-mobile-product {
  margin-bottom: 12px;
}

.nav-mobile-product summary {
  font-weight: 800;
  cursor: pointer;
}

.nav-mobile-product__group {
  display: grid;
  gap: 4px;
  padding: 8px 0;
}

.nav-mobile-product__group strong {
  color: var(--brand-blue);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 12px;
}

.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-family: var(--font-hero);
  font-weight: 700;
  letter-spacing: -0.035em;
  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;
}

.hero-mobile-preview {
  position: absolute;
  z-index: 4;
  top: 102px;
  right: 24px;
  width: 196px;
  margin: 0;
  overflow: hidden;
  border: 6px solid #15202d;
  border-radius: 30px;
  background: #15202d;
  box-shadow: 0 30px 72px rgba(3, 12, 24, 0.48), 0 0 0 8px rgba(255,255,255,.06);
}

.hero-mobile-preview img {
  width: 100%;
  height: auto;
}

.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);
}

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

.company-proof-grid article {
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.company-proof-grid span,
.company-data-list strong {
  color: var(--brand-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.company-proof-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--brand-night);
  font-size: 1.05rem;
  line-height: 1.35;
}

.company-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.company-data-list {
  display: grid;
  gap: 10px;
}

.company-data-list p + p {
  margin-top: 0;
}

.status-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.service-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.88);
}

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

.service-status-card strong {
  color: var(--brand-night);
  font-size: 0.98rem;
}

.service-status-card span {
  margin-top: 4px;
  color: var(--dark-56);
  font-size: 0.88rem;
  line-height: 1.45;
}

.status-pill {
  min-width: max-content;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill--operational {
  background: rgba(139, 230, 182, 0.22);
  color: var(--primary-deep);
}

.status-pill--checking,
.status-pill--monitoring {
  background: rgba(118, 175, 241, 0.16);
  color: #3d5e89;
}

.status-pill--incident {
  background: rgba(255, 224, 224, 0.92);
  color: #9a4a4a;
}

.module-page {
  background: #fbfdff;
}

.module-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 82px;
  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%);
}

.module-hero--showcase {
  isolation: isolate;
  padding: 118px 0 64px;
}

.module-hero--showcase::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;
  z-index: 0;
}

.module-hero::before,
.pricing-page-hero::before,
.schedule-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;
}

.module-hero.module-hero--showcase::before {
  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%);
  opacity: 1;
  z-index: 1;
}

.module-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.module-hero__showcase {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 54px;
}

.module-hero__copy {
  display: grid;
  gap: 18px;
}

.module-hero__copy--showcase {
  justify-items: center;
  max-width: 980px;
  padding: 0;
  text-align: center;
}

.module-eyebrow,
.module-kicker {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.module-hero__copy--showcase .module-eyebrow {
  color: rgba(216, 234, 255, 0.78);
}

.module-kicker {
  color: var(--brand-blue);
}

.module-hero__copy h1 {
  max-width: 680px;
  color: #ffffff;
  font-family: var(--font-hero);
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.module-hero__copy--showcase h1 {
  max-width: 760px;
  color: #ffffff;
  font-family: var(--font-hero);
  font-size: clamp(1.72rem, 3vw, 2.98rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.module-hero__copy--showcase h1 span {
  display: block;
}

.module-hero__copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
  line-height: 1.62;
}

.module-hero__copy--showcase p {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  line-height: 1.48;
}

.module-hero__meta-proof {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.module-hero__meta-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.module-hero__meta-logo span {
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 0.8;
}

.module-hero__meta-logo strong {
  font-weight: 700;
}

.module-hero__meta-proof small {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
}

.module-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.module-hero__copy--showcase .module-hero__actions {
  justify-content: center;
}

.module-hero__browser {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 -18px 74px rgba(9, 14, 27, 0.18), 0 34px 90px rgba(9, 14, 27, 0.24);
}

.module-hero__browser-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(31, 37, 45, 0.1);
  color: rgba(31, 37, 45, 0.48);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
}

.module-hero__browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.module-hero__browser-bar span:nth-child(1) {
  background: #ff5f57;
}

.module-hero__browser-bar span:nth-child(2) {
  background: #ffbd2e;
}

.module-hero__browser-bar span:nth-child(3) {
  background: #28c840;
}

.module-hero__browser-bar strong {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
}

.module-hero__panel {
  position: relative;
  min-height: 440px;
}

.module-hero__panel--image {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(118, 175, 241, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 74px rgba(20, 44, 64, 0.16);
}

.module-hero__panel--image img {
  display: block;
  width: 100%;
  aspect-ratio: 2926 / 1554;
  object-fit: cover;
}

.module-hero--showcase .module-hero__panel--image {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.module-hero--showcase .module-hero__panel--image img {
  aspect-ratio: 2926 / 1554;
  object-fit: contain;
}

.module-visual-shell {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(118, 175, 241, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 74px rgba(20, 44, 64, 0.16);
}

.module-visual-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: 22px 14px;
  background: linear-gradient(180deg, var(--brand-night), var(--brand-blue));
  color: rgba(255, 255, 255, 0.72);
}

.module-visual-logo {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
}

.module-visual-sidebar .material-symbols-outlined {
  font-size: 22px;
}

.module-visual-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 20px;
}

.module-visual-topbar {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.36fr;
  gap: 12px;
}

.module-visual-topbar span,
.module-visual-list span,
.module-visual-card {
  border: 1px solid rgba(118, 175, 241, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.module-visual-topbar span {
  height: 46px;
  border-radius: 14px;
}

.module-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.74fr);
  gap: 16px;
}

.module-visual-list {
  display: grid;
  gap: 12px;
}

.module-visual-list span {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 16px;
  border-radius: 18px;
}

.module-visual-list i {
  color: var(--secondary-strong);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.module-visual-list strong {
  color: var(--brand-night);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
}

.module-visual-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 12%, rgba(145, 240, 190, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff, #eef7ff);
}

.module-visual-card .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 30px;
}

.module-visual-card strong {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1.1;
}

.module-visual-card small {
  color: var(--dark-56);
  font-size: 0.88rem;
  line-height: 1.44;
}

.module-page--whatsapp .module-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 211, 102, 0.2), transparent 26%),
    radial-gradient(circle at 8% 76%, rgba(118, 175, 241, 0.16), transparent 30%),
    linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-night) 100%);
}

.module-whatsapp-hero {
  min-height: 440px;
}

.module-whatsapp-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 12%, rgba(37, 211, 102, 0.24), transparent 26%),
    linear-gradient(135deg, #073b35, #0b5a4f 52%, #e9fff1);
  box-shadow: 0 28px 74px rgba(7, 59, 53, 0.18);
}

.module-whatsapp-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.module-whatsapp-visual__phone {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 1;
  width: min(330px, calc(100% - 68px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #efeae2;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.module-whatsapp-visual__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #075e54;
  color: #ffffff;
}

.module-whatsapp-visual__header > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #25d366;
}

.module-whatsapp-visual__brand-icon {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.module-whatsapp-visual__header strong,
.module-whatsapp-visual__header small {
  display: block;
}

.module-whatsapp-visual__header strong {
  font-size: 0.98rem;
}

.module-whatsapp-visual__header small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.module-whatsapp-visual__chat {
  display: grid;
  gap: 10px;
  padding: 18px 16px;
}

.module-whatsapp-visual__bubble {
  max-width: 82%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 14px;
  color: #1f2b34;
  font-size: 0.88rem;
  line-height: 1.34;
  box-shadow: 0 8px 18px rgba(17, 39, 46, 0.08);
}

.module-whatsapp-visual__bubble--in {
  justify-self: start;
  background: #ffffff;
  border-top-left-radius: 4px;
}

.module-whatsapp-visual__bubble--out {
  justify-self: end;
  background: #dcf8c6;
  border-top-right-radius: 4px;
}

.module-whatsapp-visual__composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 14px 14px;
  padding: 11px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--dark-56);
  font-size: 0.78rem;
}

.module-whatsapp-visual__composer b {
  color: #34b7f1;
  font-size: 0.82rem;
}

.module-whatsapp-visual__info {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 7px;
  width: min(220px, 42%);
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(7, 59, 53, 0.16);
  backdrop-filter: blur(12px);
}

.module-whatsapp-visual__info--top {
  right: 30px;
  top: 64px;
}

.module-whatsapp-visual__info--bottom {
  right: 54px;
  bottom: 42px;
}

.module-whatsapp-visual__info .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}

.module-whatsapp-visual__info strong {
  color: var(--brand-night);
  font-size: 0.94rem;
}

.module-whatsapp-visual__info small {
  color: var(--dark-56);
  font-size: 0.82rem;
  line-height: 1.35;
}

.module-proof {
  padding: 28px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.module-proof__grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: #f7fbff;
}

.module-proof__grid article > svg {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: inset 0 0 0 1px rgba(118, 175, 241, 0.18);
}

.module-proof__grid article > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.module-proof__grid strong {
  color: var(--brand-night);
  font-size: 0.98rem;
}

.module-proof__grid p {
  color: var(--dark-56);
  font-size: 0.9rem;
  line-height: 1.45;
}

.module-section {
  padding: 82px 0;
}

.module-section--alt {
  background: #f3f8fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-section--intro .section-heading h2 {
  max-width: 780px;
}

.module-feature-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.module-feature-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(118, 175, 241, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-night);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.module-feature-nav svg {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
}

.module-showcase-stack {
  display: grid;
  gap: 34px;
}

.module-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(118, 175, 241, 0.16);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.module-showcase--reverse {
  grid-template-columns: minmax(320px, 1.15fr) minmax(0, 0.85fr);
}

.module-showcase--reverse .module-showcase__copy {
  order: 2;
}

.module-showcase__copy {
  display: grid;
  gap: 14px;
  padding: 10px;
}

.module-showcase__copy h3 {
  color: var(--brand-night);
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.module-showcase__copy p {
  color: var(--dark-80);
  font-size: 1.04rem;
  line-height: 1.66;
}

.module-showcase__image {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(118, 175, 241, 0.2);
  border-radius: 24px;
  background: #eef4f8;
  box-shadow: var(--shadow-sm);
}

.module-showcase__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 31, 55, 0.34) 100%);
  pointer-events: none;
}

.module-showcase__image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.module-showcase__image figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(6, 31, 55, 0.16);
  backdrop-filter: blur(12px);
}

.module-showcase__image figcaption strong {
  color: var(--secondary-strong);
  font-size: 0.82rem;
}

.module-showcase__image figcaption small {
  color: var(--brand-night);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.module-check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.module-check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--dark-56);
  font-size: 0.94rem;
  line-height: 1.45;
}

.module-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-strong);
  box-shadow: 0 0 0 5px rgba(145, 240, 190, 0.18);
}

.module-check-list svg {
  display: none;
}

.module-showcase__visual {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  min-height: 300px;
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(145, 240, 190, 0.24), transparent 28%),
    linear-gradient(135deg, #eef7ff, #ffffff);
  overflow: hidden;
}

.module-showcase__visual > .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 46px;
  box-shadow: 0 20px 44px rgba(0, 82, 124, 0.2);
}

.module-showcase__visual div {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(118, 175, 241, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.module-showcase__visual strong {
  color: var(--secondary-strong);
  font-family: var(--font-head);
  font-size: 0.88rem;
}

.module-showcase__visual small {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.28;
}

.module-ecosystem {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.module-ecosystem__heading {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 14px;
}

.module-ecosystem__heading h2,
.module-related h2,
.module-final-cta h2 {
  color: var(--brand-night);
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.module-ecosystem__heading p {
  color: var(--dark-56);
  line-height: 1.62;
}

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

.module-ecosystem__grid a {
  display: grid;
  gap: 9px;
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(118, 175, 241, 0.16);
  border-radius: 20px;
  background: #ffffff;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.module-ecosystem__grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.module-ecosystem__grid svg {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: #f3f8fc;
  color: var(--brand-blue);
}

.module-ecosystem__grid strong {
  color: var(--brand-night);
  font-size: 1rem;
}

.module-ecosystem__grid small {
  color: var(--dark-56);
  font-size: 0.88rem;
  line-height: 1.42;
}

.module-related {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(145, 240, 190, 0.18), transparent 30%),
    linear-gradient(135deg, var(--brand-night), #133a55);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.module-related h2 {
  margin-top: 12px;
  color: #ffffff;
}

.module-related__links {
  display: grid;
  gap: 10px;
}

.module-related__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  transition: background 0.16s ease, transform 0.16s ease;
}

.module-related__links a::after {
  content: ">";
  color: var(--primary);
}

.module-related__links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

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

.module-faq__grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(118, 175, 241, 0.16);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.module-faq__grid h3 {
  color: var(--brand-night);
  font-size: 1.05rem;
  line-height: 1.3;
}

.module-faq__grid p {
  margin-top: 12px;
  color: var(--dark-56);
  font-size: 0.94rem;
  line-height: 1.55;
}

.module-final-cta {
  padding: 0 0 90px;
}

.module-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(118, 175, 241, 0.18);
  box-shadow: var(--shadow);
}

.module-final-cta p {
  margin-top: 10px;
  color: var(--dark-56);
}

.module-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-page {
  background:
    radial-gradient(circle at 10% 6%, rgba(145, 240, 190, 0.2), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(118, 175, 241, 0.2), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 45%, var(--bg-alt) 100%);
}

.pricing-page-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 54px;
  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%);
}

.pricing-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.pricing-page-hero h1 {
  max-width: 980px;
  color: #ffffff;
  font-family: var(--font-hero);
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.pricing-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.pricing-page-hero .chip,
.schedule-hero .chip {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.pricing-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.pricing-page-section {
  padding: 70px 0;
}

.pricing-page-section--alt {
  background: rgba(255, 255, 255, 0.54);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.pricing-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(118, 175, 241, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.pricing-page-card--featured {
  border-color: rgba(0, 82, 124, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.pricing-page-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--brand-night);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-page-card__eyebrow {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-page-card h2 {
  color: var(--brand-night);
  font-size: 2rem;
  line-height: 1.08;
}

.pricing-page-card__description,
.pricing-page-card__price span,
.pricing-page-card li {
  color: var(--dark-56);
  font-size: 0.94rem;
  line-height: 1.48;
}

.pricing-page-card__price {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-page-card__price strong {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.pricing-page-card__block {
  display: grid;
  gap: 10px;
}

.pricing-page-card__block h3 {
  color: var(--brand-night);
  font-size: 0.86rem;
  letter-spacing: -0.02em;
}

.pricing-page-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-page-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef6fc;
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-page-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-page-card li {
  position: relative;
  padding-left: 22px;
}

.pricing-page-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-deep);
  font-weight: 900;
}

.pricing-page-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--dark-56);
  text-align: center;
  font-size: 0.94rem;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.pricing-comparison__heading {
  display: grid;
  gap: 14px;
}

.pricing-comparison__heading h2,
.pricing-faq .section-heading h2 {
  color: var(--brand-night);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.pricing-comparison__heading p {
  color: var(--dark-56);
}

.pricing-comparison__table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(118, 175, 241, 0.18);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.pricing-comparison__table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-comparison__table div:last-child {
  border-bottom: 0;
}

.pricing-comparison__table strong {
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 0.92rem;
}

.pricing-comparison__table span {
  color: var(--dark-56);
}

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

.pricing-faq__grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(118, 175, 241, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.pricing-faq__grid h3 {
  color: var(--brand-night);
  font-size: 1.05rem;
  line-height: 1.24;
  margin-bottom: 10px;
}

.pricing-faq__grid p {
  color: var(--dark-56);
  font-size: 0.95rem;
}

.schedule-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(145, 240, 190, 0.2), transparent 25%),
    radial-gradient(circle at 94% 8%, rgba(118, 175, 241, 0.18), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 52%, var(--bg-alt) 100%);
}

.schedule-main {
  min-height: 100vh;
}

.schedule-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 72px;
  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%);
}

.schedule-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.76fr);
  gap: 46px;
  align-items: start;
}

.schedule-hero__copy {
  display: grid;
  gap: 20px;
  padding-top: 32px;
}

.schedule-hero__copy h1 {
  max-width: 720px;
  color: #ffffff;
  font-family: var(--font-hero);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.schedule-hero__copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.schedule-proof {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.schedule-proof span {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  padding: 13px 15px;
  border: 1px solid rgba(118, 175, 241, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark-80);
  box-shadow: var(--shadow-sm);
}

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

.schedule-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(118, 175, 241, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.schedule-card h2 {
  color: var(--brand-night);
  font-size: 1.8rem;
  line-height: 1.08;
}

.schedule-card > p {
  color: var(--dark-56);
  font-size: 0.96rem;
}

.schedule-form {
  display: grid;
  gap: 14px;
}

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

.schedule-form label {
  display: grid;
  gap: 7px;
}

.schedule-form label > span {
  color: var(--dark-80);
  font-size: 0.78rem;
  font-weight: 800;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(118, 175, 241, 0.22);
  border-radius: 12px;
  background: #ffffff;
  color: var(--dark);
  font: inherit;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.schedule-form textarea {
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
}

.schedule-form input:focus,
.schedule-form select:focus,
.schedule-form textarea:focus {
  border-color: var(--secondary-strong);
  box-shadow: 0 0 0 4px rgba(118, 175, 241, 0.14);
}

.schedule-form__accept {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--dark-56);
  font-size: 0.85rem;
}

.schedule-form__accept input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
}

.schedule-form__accept a {
  color: var(--brand-blue);
  font-weight: 800;
}

.schedule-form__submit {
  gap: 8px;
  margin-top: 4px;
}

.schedule-form__submit .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 20;
}

.schedule-form__feedback {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(145, 240, 190, 0.18);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.schedule-section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.schedule-modules {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: start;
}

.schedule-modules h2 {
  margin-top: 12px;
  color: var(--brand-night);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

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

.schedule-modules__grid a {
  display: grid;
  gap: 10px;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(118, 175, 241, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-night);
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.schedule-modules__grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 82, 124, 0.28);
}

.schedule-modules__grid .material-symbols-outlined {
  color: var(--brand-blue);
  font-size: 26px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 26;
}

.schedule-modules__grid strong {
  font-family: var(--font-head);
  font-size: 0.94rem;
  line-height: 1.18;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 42px 0 24px;
  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.2fr 1.35fr 0.85fr 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 26px;
}

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

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

.footer__column span,
.footer__column a {
  font-size: 0.78rem;
  line-height: 1.32;
}

.footer__ownership {
  display: grid;
  gap: 6px;
  max-width: 360px;
  margin-top: 12px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer__ownership strong {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer__ownership span,
.footer__ownership a {
  color: #ffffff;
}

.footer__column span {
  color: #ffffff;
}

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

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

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

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

.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;
  margin-bottom: 2px;
  font-size: 0.74rem;
  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.76rem;
}

.legal-page {
  background:
    radial-gradient(circle at 0% 0%, rgba(118, 175, 241, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}

.legal-hero {
  padding: 112px 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.legal-hero__inner {
  display: grid;
  gap: 12px;
}

.legal-hero h1 {
  max-width: 820px;
  color: var(--brand-night);
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.legal-hero p {
  max-width: 860px;
  color: var(--dark-80);
  font-size: 1rem;
}

.legal-hero small {
  color: var(--dark-56);
  font-weight: 700;
}

.legal-main {
  padding: 34px 0 58px;
}

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-document section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.legal-document h2 {
  margin-bottom: 10px;
  color: var(--brand-night);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.legal-document p + p {
  margin-top: 10px;
}

.legal-document p,
.legal-document li {
  color: var(--dark-80);
}

.legal-document ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 6px;
}

.legal-document a {
  color: var(--brand-blue);
  font-weight: 800;
}

.resource-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(145, 240, 190, 0.2), transparent 26%),
    radial-gradient(circle at 96% 10%, rgba(118, 175, 241, 0.16), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 52%, var(--bg-alt) 100%);
}

.resource-hero {
  padding: 126px 0 54px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.resource-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: end;
}

.resource-hero__copy {
  display: grid;
  gap: 16px;
}

.resource-hero h1 {
  max-width: 880px;
  color: var(--brand-night);
  font-family: var(--font-hero);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.resource-hero p {
  max-width: 760px;
  color: var(--dark-80);
  font-size: 1.05rem;
}

.resource-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.resource-hero__panel {
  border: 1px solid rgba(0, 82, 124, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.resource-hero__panel strong {
  display: block;
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 1.05rem;
}

.resource-hero__panel span {
  display: block;
  margin-top: 8px;
  color: var(--dark-56);
  font-size: 0.9rem;
}

.resource-hero__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.resource-hero__list a,
.resource-hero__list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  background: #f4f9fc;
  color: #244057;
  font-weight: 800;
}

.resource-hero__list a::after {
  content: "->";
  color: var(--brand-blue);
}

.resource-main {
  padding: 54px 0 72px;
}

.resource-section {
  display: grid;
  gap: 22px;
}

.resource-section + .resource-section {
  margin-top: 52px;
}

.resource-section__head {
  display: grid;
  gap: 8px;
  max-width: 840px;
}

.resource-section__head h2 {
  color: var(--brand-night);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.resource-section__head p {
  color: var(--dark-80);
}

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

.resource-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.resource-card--link {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.resource-card--link:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 82, 124, 0.22);
  box-shadow: var(--shadow);
}

.resource-card__eyebrow {
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card h3 {
  color: var(--brand-night);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

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

.resource-card ul {
  margin: 0;
  padding-left: 18px;
}

.resource-card__cta {
  color: var(--brand-blue);
  font-weight: 900;
}

.resource-band {
  border: 1px solid rgba(0, 82, 124, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 82, 124, 0.94), rgba(23, 29, 36, 0.94)),
    var(--brand-night);
  color: #ffffff;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.resource-band h2 {
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.resource-band p {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.resource-band .btn {
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: none;
}

.resource-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.resource-proof {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.resource-proof strong {
  display: block;
  color: var(--brand-night);
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.resource-proof p {
  margin-top: 10px;
  color: var(--dark-80);
}

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

.resource-proof__metrics span {
  border-radius: 12px;
  background: #f4f9fc;
  padding: 12px;
  color: #244057;
  font-weight: 800;
}

.legal-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--dark-56);
  font-size: 0.9rem;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-footer a {
  color: var(--brand-blue);
  font-weight: 800;
}

.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-family: var(--font-hero);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.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,
  .resource-hero__inner,
  .resource-detail-grid,
  .module-hero__layout,
  .module-ecosystem,
  .module-related,
  .module-final-cta__inner,
  .pricing-comparison,
  .schedule-hero__layout,
  .schedule-modules {
    grid-template-columns: 1fr;
  }

  .mega-menu__content {
    grid-template-columns: 1fr;
  }

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

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

  .hero__visual {
    min-height: 520px;
  }

  .pricing-grid {
    display: flex;
  }

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

  .service-status-grid {
    grid-template-columns: 1fr;
  }

  .module-hero__layout {
    gap: 34px;
  }

  .module-ecosystem__heading {
    position: static;
  }

  .module-proof__grid,
  .module-faq__grid {
    grid-template-columns: 1fr;
  }

  .module-showcase,
  .module-showcase--reverse {
    grid-template-columns: 1fr;
  }

  .module-showcase--reverse .module-showcase__copy {
    order: initial;
  }

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

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

  .schedule-hero__copy {
    padding-top: 0;
  }

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

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

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

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

  .mega-menu {
    display: none;
  }
}

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

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

  .module-hero {
    padding: 112px 0 52px;
  }

  .module-hero--showcase {
    padding: 98px 0 42px;
  }

  .module-hero__showcase {
    gap: 36px;
  }

  .module-hero--showcase .module-hero__copy--showcase h1 {
    font-size: clamp(1.5rem, 6.7vw, 2.2rem);
    line-height: 1.08;
  }

  .module-hero__copy--showcase p {
    font-size: 1.05rem;
  }

  .module-hero__browser {
    border-radius: 18px;
  }

  .module-hero__browser-bar {
    min-height: 44px;
    padding: 0 14px;
  }

  .module-hero__copy h1 {
    font-size: 2.35rem;
    letter-spacing: -0.03em;
  }

  .module-hero__panel {
    min-height: 0;
  }

  .module-section {
    padding: 56px 0;
  }

  .module-visual-shell {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 360px;
    border-radius: 22px;
  }

  .module-visual-sidebar {
    gap: 14px;
    padding: 16px 8px;
  }

  .module-visual-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1.18rem;
  }

  .module-visual-main {
    padding: 14px;
  }

  .module-visual-grid,
  .module-ecosystem__grid {
    grid-template-columns: 1fr;
  }

  .module-visual-card {
    min-height: 190px;
  }

  .module-whatsapp-visual {
    min-height: 520px;
    border-radius: 22px;
  }

  .module-whatsapp-visual__phone {
    left: 18px;
    top: 18px;
    width: calc(100% - 36px);
  }

  .module-whatsapp-visual__info {
    width: calc(50% - 24px);
    padding: 14px;
  }

  .module-whatsapp-visual__info--top {
    left: 18px;
    right: auto;
    top: auto;
    bottom: 20px;
  }

  .module-whatsapp-visual__info--bottom {
    right: 18px;
    bottom: 20px;
  }

  .module-proof__grid article,
  .module-showcase,
  .module-related,
  .module-final-cta__inner {
    padding: 20px;
    border-radius: 20px;
  }

  .module-feature-nav {
    justify-content: flex-start;
  }

  .module-feature-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .module-showcase__visual {
    grid-template-columns: 1fr;
    min-height: 240px;
    padding: 20px;
  }

  .module-final-cta__actions {
    width: 100%;
  }

  .module-final-cta__actions .btn {
    width: 100%;
  }

  .footer__module-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page-hero {
    padding: 112px 0 42px;
  }

  .pricing-page-hero h1 {
    font-size: 2.1rem;
  }

  .pricing-page-section {
    padding: 52px 0;
  }

  .pricing-page-card {
    padding: 22px;
  }

  .pricing-comparison__table div,
  .pricing-faq__grid,
  .schedule-form__grid,
  .schedule-modules__grid {
    grid-template-columns: 1fr;
  }

  .schedule-hero {
    padding: 112px 0 50px;
  }

  .schedule-hero__copy h1 {
    font-size: 2.15rem;
  }

  .schedule-card {
    padding: 22px;
    border-radius: 18px;
  }

  .schedule-section {
    padding: 52px 0;
  }

  .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;
  }

  .hero-mobile-preview {
    top: auto;
    right: -8px;
    bottom: -34px;
    width: min(148px, 38vw);
    border-width: 4px;
    border-radius: 23px;
  }

  .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,
  .resource-grid,
  .resource-proof__metrics,
  .company-proof-grid,
  .service-status-grid,
  .checkout-summary__meta,
  .request-result__details,
  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .status-overview,
  .service-status-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .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;
  }

  .resource-hero {
    padding: 104px 0 36px;
  }

  .resource-hero__panel,
  .resource-card,
  .resource-proof {
    border-radius: 14px;
    padding: 18px;
  }

  .resource-band {
    grid-template-columns: 1fr;
    border-radius: 14px;
    padding: 18px;
  }

  .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;
  }

  .legal-hero {
    padding-top: 96px;
  }

  .legal-document section {
    padding: 18px;
  }

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

  .legal-footer nav {
    justify-content: flex-start;
  }
}

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

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

/* SindSoft brand and product imagery. */
:root { --navy: #082d4f; --navy-deep: #061f37; --blue: #1677c8; --teal: #148879; --green: #1c9d67; --muted: #5f6f7f; --soft: #f3f7fa; }
.nav-logo img,
.navbar--scrolled .nav-logo img {
  width: 158px;
  height: 48px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

@media (max-width: 760px) {
  .nav-logo img,
  .navbar--scrolled .nav-logo img {
    width: 145px;
    height: 42px;
  }
}
.nav-login-link { border: 0; background: transparent; cursor: pointer; }
.nav-demo svg, .mega-menu__icon svg { width: 20px; height: 20px; }
.mega-menu__spotlight { align-self: start; }
.mega-menu__spotlight-image { aspect-ratio: 1029 / 1528; object-fit: cover; object-position: top; }
.app-frame--sindsoft {
  top: 28px;
  right: -36px;
  width: min(760px, 112%);
  padding: 0;
  opacity: 1;
  transform: none;
  animation: none;
}
.app-frame__brand { width: 30px; height: 30px; object-fit: contain; }
.app-frame__screenshot { width: 100%; height: auto; display: block; }
.product-panel__visual--screenshot { padding: 0; overflow: hidden; }
.product-panel__visual--screenshot img { width: 100%; height: 100%; display: block; object-fit: cover; }
.home-page .product-panel--loose {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 5vw, 72px);
  min-height: 560px;
}
.home-page .product-panel--loose .product-panel__content,
.home-page .product-panel--loose .product-panel__visual {
  min-width: 0;
}
.home-page .product-panel--loose .product-panel__visual--screenshot {
  width: 100%;
  min-height: 0;
  aspect-ratio: 2926 / 1554;
  align-self: center;
}
.home-page .product-panel--loose .crm-feature-cards,
.home-page .product-panel--loose .integration-feature-cards {
  grid-column: 1 / -1;
  width: 100%;
}
@media (max-width: 1080px) {
  .home-page .product-panel--loose {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}
.access-dialog { width: min(520px,calc(100vw - 32px)); padding: 34px; border: 0; border-radius: 14px; box-shadow: var(--shadow-lg); }
.access-dialog::backdrop { background: rgba(6,31,55,.72); backdrop-filter: blur(5px); }
.access-dialog > img { width: 150px; margin-bottom: 24px; }
.dialog-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer; }
.tenant-field { display: flex; align-items: center; height: 52px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 12px; }
.tenant-field input { width: 100%; height: 100%; min-width: 80px; padding: 0 14px; border: 0; outline: 0; }
.tenant-field span { padding-right: 14px; color: var(--dark-56); white-space: nowrap; font-size: .82rem; }
.access-dialog label { display: block; margin-bottom: 8px; font-weight: 600; }
.access-dialog small { display: block; min-height: 24px; color: #b42318; }
.access-dialog form .btn { width: 100%; }
.footer__column button { display: block; margin: 0 0 10px; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; font: inherit; text-align: left; }
@media (max-width: 760px) {
  .app-frame--sindsoft {
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  .mega-menu__spotlight { display: none; }

  .home-page .product-panel--loose {
    min-height: 0;
  }
}

.app-hero { position: relative; min-height: 740px; padding: 125px 0 72px; overflow: hidden; color: #fff; background: radial-gradient(circle at 84% 86%, rgba(118,175,241,.16) 0%, transparent 34%), radial-gradient(circle at 4% 18%, rgba(145,240,190,.16) 0%, transparent 28%), linear-gradient(180deg,var(--brand-blue) 0%,var(--brand-night) 100%); }
.app-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(180deg,rgba(0,0,0,.72),transparent 88%); pointer-events: none; }
.app-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; bottom: -180px; border-radius: 999px; background: radial-gradient(circle,rgba(118,175,241,.1) 0%,transparent 66%); pointer-events: none; }
.app-hero__layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(500px,1.05fr); align-items: center; gap: 36px; }
.app-hero__copy h1 { max-width: 570px; margin-bottom: 22px; font-size: clamp(3rem,4.5vw,4.45rem); line-height: 1.04; }
.app-hero__copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.72); }
.app-hero__copy .hero-actions, .app-admin-link .button { margin-top: 30px; }
.app-hero__actions { display: flex; margin-top: 30px; }
.app-hero__actions .btn { gap: 10px; }
.app-hero__actions svg { width: 18px; height: 18px; }
.app-phone-stage { min-height: 520px; display: grid; place-items: center; padding-top: 42px; }
.app-device-stack { position: relative; width: min(590px,46vw); height: 550px; display: grid; place-items: center; transform: translateY(12px); }
.app-phone { position: relative; overflow: hidden; border: 9px solid #15202d; border-radius: 42px; background: #f5f8fb; box-shadow: 0 34px 80px rgba(0,0,0,.34); }
.app-phone--hero { width: 330px; min-height: 650px; transform: rotate(3deg); }
.app-phone__speaker { position: absolute; z-index: 3; top: 13px; left: 50%; width: 76px; height: 19px; border-radius: 12px; background: #15202d; transform: translateX(-50%); }
.app-ui { min-height: 632px; padding: 52px 18px 20px; color: var(--dark); background: #f4f7fa; }
.app-ui header { display: grid; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 10px; }
.app-ui header img { width: 36px; height: 36px; object-fit: contain; }
.app-ui header small, .app-ui header strong, .app-news small, .app-news strong { display: block; }
.app-ui header small, .app-news p { color: var(--muted); font-size: .62rem; }
.app-ui header strong, .app-news strong { color: var(--navy); font-size: .84rem; }
.app-member-card { position: relative; margin-top: 22px; padding: 22px; border-radius: 14px; color: #fff; background: var(--navy); }
.app-member-card span, .app-member-card strong, .app-member-card small { display: block; }
.app-member-card span { color: #8fd8ce; font-size: .58rem; font-weight: 700; }
.app-member-card strong { margin-top: 22px; }
.app-member-card small { color: rgba(255,255,255,.66); font-size: .62rem; }
.app-member-card b { position: absolute; right: 18px; bottom: 18px; padding: 4px 9px; border-radius: 12px; color: #0b684b; background: #d9f5ea; font-size: .58rem; }
.app-shortcuts { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-top: 16px; }
.app-shortcuts span { min-height: 76px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 7px; border: 1px solid var(--line); border-radius: 12px; color: var(--navy); background: #fff; font-size: .6rem; font-weight: 600; }
.app-shortcuts svg { width: 20px; color: var(--teal); }
.app-news { margin-top: 16px; padding: 18px; border-left: 3px solid var(--teal); background: #fff; }
.app-ui nav { position: absolute; inset: auto 0 0; height: 55px; display: flex; align-items: center; justify-content: space-around; border-top: 1px solid var(--line); background: #fff; }
.app-ui nav svg { width: 19px; color: #718395; }
.app-proof { position: relative; z-index: 2; margin-top: -34px; }
.app-proof__grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.app-proof article { min-height: 175px; padding: 28px; border-right: 1px solid var(--line); }
.app-proof svg { width: 26px; color: var(--teal); }
.app-proof strong { display: block; margin: 16px 0 6px; color: var(--navy); }
.app-proof p, .app-phone-gallery > article > p, .app-services p, .app-admin-link p { color: var(--muted); font-size: .84rem; }
.app-section { padding: 110px 0; }
.app-section--alt { background: var(--soft); }
.app-phone-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 64px 45px; margin-top: 70px; }
.app-phone-gallery > article { text-align: center; }
.app-device-shot { width: min(292px,100%); margin: 0 auto 32px; overflow: hidden; border: 8px solid #15202d; border-radius: 42px; background: #15202d; box-shadow: 0 28px 64px rgba(18,35,52,.2); }
.app-device-shot img { display: block; width: 100%; height: auto; }
.app-device-shot--hero { position: relative; z-index: 2; width: min(276px,76vw); margin: 0; box-shadow: 0 38px 90px rgba(0,0,0,.44); }
.app-device-shot--side { position: absolute; z-index: 1; bottom: 40px; width: 230px; margin: 0; opacity: .72; border-width: 6px; border-radius: 32px; box-shadow: 0 28px 70px rgba(0,0,0,.34); }
.app-device-shot--left { left: 0; transform: translateX(3%) rotate(-4deg); }
.app-device-shot--right { right: 0; transform: translateX(-3%) rotate(4deg); }
.app-phone--small { width: min(260px,100%); min-height: 510px; margin: 0 auto 32px; border-width: 7px; border-radius: 34px; }
.app-screen { min-height: 496px; padding: 48px 14px 18px; color: var(--dark); text-align: left; }
.app-screen__top { display: flex; align-items: center; gap: 10px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.app-screen__top small, .app-screen__top strong, .app-balance small, .app-balance strong, .app-balance span, .app-list-row strong, .app-list-row small { display: block; }
.app-screen__top strong, .app-list-row strong, .app-phone-gallery h3 { color: var(--navy); }
.app-screen__top small, .app-list-row small { color: var(--muted); font-size: .52rem; }
.app-balance, .app-ticket { margin-top: 17px; padding: 18px; border-radius: 12px; color: #fff; background: var(--navy); }
.app-balance strong { margin: 5px 0; font-size: 1.45rem; }
.app-list-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; padding: 15px 3px; border-bottom: 1px solid var(--line); }
.app-list-row b { font-size: .5rem; color: #a23c3c; }
.app-list-row b.paid { color: #16865d; }
.app-timeline { display: grid; margin: 20px 8px; }
.app-timeline span { display: grid; grid-template-columns: 15px 1fr; padding-bottom: 24px; }
.app-timeline i { width: 9px; height: 9px; border: 2px solid var(--teal); border-radius: 50%; }
.app-timeline b { color: var(--navy); font-size: .62rem; }
.app-timeline small { grid-column: 2; color: var(--muted); font-size: .5rem; }
.app-event { display: flex; gap: 12px; margin-top: 18px; padding: 15px 0; }
.app-event > span { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: var(--teal); font-size: .56rem; }
.app-qr { min-height: 220px; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.app-qr svg { width: 90px; height: 90px; color: var(--navy); }
.app-services, .app-admin-link { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.app-services h2, .app-admin-link h2 { color: var(--navy); font-size: clamp(2.2rem,4vw,3.4rem); }
.app-services__grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.app-services__grid span { min-height: 105px; display: flex; align-items: center; gap: 12px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--navy); background: #fff; font-size: .78rem; font-weight: 600; }
.app-admin-link figure { margin: 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
@media (max-width: 980px) { .app-hero__layout, .app-services, .app-admin-link { grid-template-columns: 1fr; } .app-phone-stage { padding-top: 28px; } .app-device-stack { width: min(600px,92vw); transform: none; } .app-phone-gallery { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .app-hero { min-height: auto; padding: 115px 0 78px; } .app-hero__copy h1 { font-size: clamp(2.85rem,13vw,4rem); line-height: 1.02; } .app-phone--hero { width: min(315px,88vw); transform: none; } .app-phone-stage { min-height: 500px; padding-top: 34px; } .app-device-stack { width: 100%; height: 500px; } .app-device-shot--hero { width: min(248px,68vw); } .app-device-shot--side { bottom: 54px; width: 180px; opacity: .5; } .app-device-shot--left { left: -52px; } .app-device-shot--right { right: -52px; } .app-proof__grid, .app-services__grid { grid-template-columns: 1fr; } .app-section { padding: 78px 0; } }

@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;
  }
}
