:root {
  --cts-base: #0a0a0f;
  --cts-surface: #111118;
  --cts-surface-2: #17171f;
  --cts-line: #262630;
  --cts-line-soft: #1d1d26;
  --cts-text: #f2f2f5;
  --cts-muted: #9d9dad;
  --cts-brand: #5b5bd6;
  --cts-brand-bright: #9b9bff;
  --cts-whatsapp: #25d366;
  --cts-whatsapp-dark: #1fb958;
  --cts-width: 1152px;
  --cts-radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cts-base);
  color: var(--cts-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.cts-menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cts-brand-bright);
  outline-offset: 3px;
}

::selection {
  background: var(--cts-brand);
  color: #fff;
}

.screen-reader-text,
.cts-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cts-skip-link:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  border-radius: 8px;
  background: var(--cts-brand);
  color: #fff;
}

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

.cts-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.cts-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.cts-button--primary:hover {
  background: var(--cts-brand-bright);
  color: var(--cts-base);
}

.cts-button--secondary {
  border-color: var(--cts-line);
  background: var(--cts-surface);
  color: var(--cts-text);
}

.cts-button--secondary:hover {
  border-color: var(--cts-brand-bright);
  color: var(--cts-brand-bright);
}

.cts-button--whatsapp {
  background: var(--cts-whatsapp);
  color: #071b0e;
}

.cts-button--whatsapp:hover {
  background: var(--cts-whatsapp-dark);
  color: #04150a;
}

/* Header */
.cts-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: var(--cts-base);
  transition: background 180ms ease, border-color 180ms ease;
}

.admin-bar .cts-header {
  top: 32px;
}

.cts-header.is-scrolled {
  border-color: var(--cts-line);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
}

.cts-header__inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cts-brand,
.custom-logo-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.custom-logo {
  width: auto;
  max-width: 240px;
  max-height: 42px;
}

.cts-brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--cts-brand);
  color: #fff;
}

.cts-brand__mark .cts-icon {
  width: 19px;
  height: 19px;
}

.cts-brand__name {
  overflow: hidden;
  color: var(--cts-text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cts-brand__name span {
  color: var(--cts-muted);
}

.cts-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.cts-nav a {
  color: var(--cts-muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.cts-nav a:hover {
  color: var(--cts-text);
}

.cts-header__contact {
  min-height: 42px;
  padding-inline: 16px;
  white-space: nowrap;
}

.cts-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--cts-line);
  border-radius: 9px;
  background: var(--cts-surface);
  color: var(--cts-text);
}

.cts-menu-button > span:not(.screen-reader-text) {
  display: grid;
  place-items: center;
}

.cts-mobile-menu {
  border-top: 1px solid var(--cts-line);
  background: var(--cts-base);
}

.cts-mobile-menu[hidden] {
  display: none;
}

.cts-mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
  padding-bottom: 12px;
}

.cts-mobile-menu nav > a:not(.cts-button) {
  display: flex;
  min-height: 50px;
  align-items: center;
  border-bottom: 1px solid var(--cts-line-soft);
  font-size: 15px;
  font-weight: 600;
}

.cts-mobile-menu .cts-button {
  margin-top: 12px;
}

/* Hero */
.cts-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 48px;
  border-bottom: 1px solid var(--cts-line);
}

.cts-hero__glow,
.cts-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cts-hero__glow {
  background: radial-gradient(58% 62% at 50% 0%, rgba(91, 91, 214, 0.2), transparent 72%);
}

.cts-hero__dots {
  opacity: 0.4;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(62% 55% at 50% 0%, #000, transparent);
}

.cts-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.cts-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 13px;
  border: 1px solid var(--cts-line);
  border-radius: 999px;
  background: var(--cts-surface);
  color: var(--cts-brand-bright);
  font-size: 13px;
  font-weight: 700;
}

.cts-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cts-brand-bright);
}

.cts-hero h1 {
  margin: 22px 0 0;
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.cts-hero h1 span {
  display: block;
  color: var(--cts-brand-bright);
}

.cts-hero__description {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--cts-muted);
  font-size: 17px;
  line-height: 1.7;
}

.cts-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.cts-proof {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.cts-proof > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--cts-line);
  border-radius: 12px;
  background: rgba(17, 17, 24, 0.82);
  text-align: left;
}

.cts-proof > div > .cts-icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 9px;
  background: rgba(91, 91, 214, 0.16);
  color: var(--cts-brand-bright);
}

.cts-proof span {
  min-width: 0;
}

.cts-proof strong,
.cts-proof small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cts-proof strong {
  font-size: 14px;
}

.cts-proof small {
  margin-top: 3px;
  color: var(--cts-muted);
  font-size: 12px;
}

/* Sections */
.cts-section {
  padding: 78px 0;
  scroll-margin-top: 70px;
}

.cts-section--alt {
  border-top: 1px solid var(--cts-line-soft);
  border-bottom: 1px solid var(--cts-line-soft);
  background: rgba(17, 17, 24, 0.48);
}

.cts-section-heading {
  max-width: 700px;
}

.cts-section-heading__label {
  display: flex;
  align-items: center;
  gap: 11px;
}

.cts-section-heading__label > span,
.cts-benefit > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(91, 91, 214, 0.16);
  color: var(--cts-brand-bright);
}

.cts-section-heading__label strong {
  color: var(--cts-brand-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cts-section-heading h2,
.cts-centered-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.cts-section-heading > p,
.cts-centered-heading > p:not(.cts-rating-summary) {
  margin: 13px 0 0;
  color: var(--cts-muted);
  font-size: 16px;
  line-height: 1.7;
}

.cts-centered-heading {
  max-width: 630px;
  margin-inline: auto;
  text-align: center;
}

.cts-centered-heading h2 {
  margin-top: 0;
}

/* Design cards */
.cts-design-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.cts-design-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cts-line);
  border-radius: var(--cts-radius);
  background: var(--cts-surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.cts-design-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 155, 255, 0.58);
}

.cts-design-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--cts-line);
  background: var(--cts-surface-2);
}

.cts-design-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 320ms ease;
}

.cts-design-card:hover .cts-design-card__media img {
  transform: scale(1.025);
}

.cts-design-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(91, 91, 214, 0.34), transparent 60%),
    radial-gradient(circle at 78% 20%, rgba(155, 155, 255, 0.28), transparent 30%),
    var(--cts-surface-2);
}

.cts-design-card__placeholder span {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.cts-design-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cts-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cts-design-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.cts-design-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cts-design-card__heading h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.cts-design-card__rating {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  color: var(--cts-muted);
  font-size: 12px;
  line-height: 1.2;
}

.cts-design-card__rating .cts-icon,
.cts-rating-summary .cts-icon,
.cts-review__stars .cts-icon {
  width: 15px;
  height: 15px;
  fill: #fbbf24;
  stroke: #fbbf24;
}

.cts-design-card__rating strong {
  color: var(--cts-text);
}

.cts-design-card__tagline {
  margin: 8px 0 0;
  color: var(--cts-muted);
  font-size: 14px;
  line-height: 1.6;
}

.cts-design-card__features {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--cts-line);
  list-style: none;
}

.cts-design-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--cts-muted);
  font-size: 13px;
  line-height: 1.4;
}

.cts-design-card__features .cts-icon {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  color: var(--cts-brand-bright);
  stroke-width: 2.6;
}

.cts-design-card__footer {
  margin-top: auto;
  padding-top: 20px;
}

.cts-design-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.cts-design-card__price strong {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.cts-design-card__price del {
  color: var(--cts-muted);
  font-size: 13px;
}

.cts-design-card__price span {
  padding: 4px 6px;
  border-radius: 5px;
  background: rgba(91, 91, 214, 0.18);
  color: var(--cts-brand-bright);
  font-size: 11px;
  font-weight: 700;
}

.cts-design-card__actions {
  display: grid;
  gap: 9px;
}

.cts-design-card__button {
  width: 100%;
  padding-inline: 12px;
}

.cts-empty-state {
  margin-top: 34px;
  padding: 32px;
  border: 1px dashed var(--cts-line);
  border-radius: var(--cts-radius);
  background: var(--cts-surface);
  text-align: center;
}

.cts-empty-state h3,
.cts-empty-state p {
  margin: 0;
}

.cts-empty-state p {
  margin-top: 8px;
  color: var(--cts-muted);
}

.cts-empty-state a {
  display: inline-block;
  margin-top: 12px;
  color: var(--cts-brand-bright);
  font-weight: 700;
  text-decoration: underline;
}

.cts-help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--cts-line);
  border-radius: var(--cts-radius);
  background: var(--cts-surface);
}

.cts-help-strip p {
  margin: 0;
  color: var(--cts-muted);
  font-size: 14px;
  line-height: 1.6;
}

.cts-help-strip strong {
  color: var(--cts-text);
}

.cts-help-strip .cts-button {
  flex: 0 0 auto;
}

/* Benefits */
.cts-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.cts-benefit {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--cts-line);
  border-radius: var(--cts-radius);
  background: var(--cts-surface);
}

.cts-benefit h3,
.cts-benefit p {
  margin: 0;
}

.cts-benefit h3 {
  font-size: 16px;
}

.cts-benefit p {
  margin-top: 6px;
  color: var(--cts-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Reviews */
.cts-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 15px 0 0;
  padding: 8px 14px;
  border: 1px solid var(--cts-line);
  border-radius: 999px;
  background: var(--cts-surface);
  color: var(--cts-muted);
  font-size: 14px;
}

.cts-rating-summary strong {
  color: var(--cts-text);
}

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

.cts-review {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--cts-line);
  border-radius: var(--cts-radius);
  background: var(--cts-surface);
}

.cts-review__stars {
  display: flex;
  gap: 2px;
}

.cts-review blockquote {
  flex: 1;
  margin: 13px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.cts-review figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--cts-line);
}

.cts-review figcaption > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(91, 91, 214, 0.2);
  color: var(--cts-brand-bright);
  font-size: 13px;
  font-weight: 800;
}

.cts-review figcaption strong,
.cts-review figcaption small {
  display: block;
}

.cts-review figcaption strong {
  font-size: 14px;
}

.cts-review figcaption small {
  margin-top: 2px;
  color: var(--cts-muted);
  font-size: 12px;
}

/* FAQ */
.cts-faq__inner {
  max-width: 760px;
}

.cts-centered-heading a {
  color: var(--cts-brand-bright);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(155, 155, 255, 0.4);
  text-underline-offset: 3px;
}

.cts-faq__list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.cts-faq-item {
  padding: 14px 18px;
  border: 1px solid var(--cts-line);
  border-radius: 12px;
  background: var(--cts-surface);
}

.cts-faq-item[open] {
  border-color: rgba(155, 155, 255, 0.5);
}

.cts-faq-item summary {
  display: flex;
  min-height: 34px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

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

.cts-faq-item summary .cts-icon {
  color: var(--cts-muted);
  transition: transform 160ms ease;
}

.cts-faq-item[open] summary .cts-icon {
  transform: rotate(180deg);
}

.cts-faq-item > p {
  margin: 9px 32px 2px 0;
  color: var(--cts-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Footer */
.cts-footer {
  border-top: 1px solid var(--cts-line);
  background: var(--cts-base);
}

.cts-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.cts-footer__brand > p {
  max-width: 390px;
  margin: 15px 0 0;
  color: var(--cts-muted);
  font-size: 14px;
  line-height: 1.65;
}

.cts-footer__brand .cts-button {
  margin-top: 18px;
}

.cts-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.cts-footer__links h2 {
  margin: 0 0 4px;
  color: var(--cts-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cts-footer__links a {
  color: var(--cts-muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.cts-footer__links a:hover {
  color: var(--cts-brand-bright);
}

.cts-footer__bottom {
  border-top: 1px solid var(--cts-line);
}

.cts-footer__bottom .cts-container {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cts-footer__bottom p,
.cts-footer__bottom a {
  margin: 0;
  color: var(--cts-muted);
  font-size: 13px;
}

.cts-footer__bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
}

.cts-footer__bottom .cts-icon {
  width: 15px;
  height: 15px;
}

.cts-mobile-bar {
  display: none;
}

/* Basic WordPress content fallback */
.cts-content {
  min-height: 60vh;
  padding-top: 72px;
  padding-bottom: 72px;
}

.cts-entry {
  max-width: 780px;
  margin-inline: auto;
}

.cts-entry h1 {
  font-size: clamp(32px, 5vw, 50px);
}

.cts-entry__content {
  color: var(--cts-muted);
  line-height: 1.8;
}

.cts-entry__content a {
  color: var(--cts-brand-bright);
  text-decoration: underline;
}

/* Scroll motion */
.cts-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.cts-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .cts-nav,
  .cts-header__contact {
    display: none;
  }

  .cts-menu-button {
    display: inline-flex;
  }

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

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

@media (max-width: 782px) {
  .admin-bar .cts-header {
    top: 46px;
  }
}

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

  .cts-header__inner {
    min-height: 56px;
  }

  .cts-brand__mark {
    width: 33px;
    height: 33px;
  }

  .cts-brand__name {
    max-width: calc(100vw - 112px);
    font-size: 14px;
  }

  .cts-hero {
    padding: 52px 0 34px;
  }

  .cts-hero h1 {
    margin-top: 18px;
    font-size: clamp(32px, 10vw, 43px);
  }

  .cts-hero__description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
  }

  .cts-hero__actions {
    flex-direction: column;
    margin-top: 23px;
  }

  .cts-hero__actions .cts-button {
    width: 100%;
  }

  .cts-proof {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 30px;
  }

  .cts-proof > div {
    padding: 11px 13px;
  }

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

  .cts-section-heading h2,
  .cts-centered-heading h2 {
    margin-top: 15px;
    font-size: 30px;
  }

  .cts-centered-heading h2 {
    margin-top: 0;
  }

  .cts-section-heading > p,
  .cts-centered-heading > p:not(.cts-rating-summary) {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.65;
  }

  .cts-design-grid,
  .cts-benefit-grid,
  .cts-review-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .cts-design-card__body {
    padding: 18px;
  }

  .cts-design-card__features li {
    font-size: 14px;
  }

  .cts-help-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 22px;
    padding: 18px;
  }

  .cts-help-strip .cts-button {
    width: 100%;
  }

  .cts-benefit {
    padding: 18px;
  }

  .cts-review {
    padding: 18px;
  }

  .cts-faq-item {
    padding: 13px 15px;
  }

  .cts-faq-item > p {
    margin-right: 0;
  }

  .cts-footer {
    padding-bottom: 80px;
  }

  .cts-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .cts-footer__brand {
    grid-column: 1 / -1;
  }

  .cts-footer__brand .cts-button {
    width: 100%;
  }

  .cts-footer__bottom .cts-container {
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-align: center;
  }

  .cts-mobile-bar {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 8px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--cts-line);
    background: rgba(10, 10, 15, 0.94);
    backdrop-filter: blur(14px);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .cts-mobile-bar.is-visible {
    transform: none;
  }

  .cts-mobile-bar .cts-button {
    min-width: 0;
    flex: 1;
    padding-inline: 11px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .cts-reveal {
    opacity: 1;
    transform: none;
  }
}