:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-2: #edf6ff;
  --text: #0d1d38;
  --muted: #5f7ca8;
  --accent: #1898ff;
  --accent-strong: #00d4ff;
  --border: rgba(24, 152, 255, 0.16);
  --shadow: 0 24px 80px rgba(24, 152, 255, 0.14);
  --header-bg: rgba(248, 251, 255, 0.95);
  --header-border: rgba(24, 152, 255, 0.12);
  --footer-border: rgba(24, 152, 255, 0.12);
  --section-dark-bg: linear-gradient(180deg, #eef8ff 0%, #d9eeff 100%);
  --device-bg: linear-gradient(180deg, #eaf4ff 0%, #d6ebff 100%);
  --device-screen-bg: linear-gradient(180deg, #f9fcff 0%, #e2f1ff 100%);
  --device-border: rgba(24, 152, 255, 0.18);
  --device-screen-border: rgba(24, 152, 255, 0.12);
  font-size: 16px;
}

:root[data-theme='dark'] {
  --bg: #070d1d;
  --surface: #0d1b38;
  --surface-2: #070d1d;
  --text: #f4f8ff;
  --muted: #8faed5;
  --accent: #5db4ff;
  --accent-strong: #00d4ff;
  --border: rgba(24, 152, 255, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --header-bg: rgba(7, 13, 28, 0.96);
  --header-border: rgba(255, 255, 255, 0.08);
  --footer-border: rgba(255, 255, 255, 0.08);
  --section-dark-bg: linear-gradient(180deg, #071f45 0%, #0c324f 100%);
  --device-bg: linear-gradient(180deg, #12254b 0%, #0f2748 100%);
  --device-screen-bg: linear-gradient(180deg, #102a54 0%, #0b325f 100%);
  --device-border: rgba(255, 255, 255, 0.12);
  --device-screen-border: rgba(255, 255, 255, 0.1);
}

:root[data-theme='dark'] .brand {
  filter: brightness(0) invert(1);
}

* {
  box-sizing: border-box;
  transition: background-color 0.5s ease, color 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  transition: background 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

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

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

button,
input,
a {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* Hidden state */
.hidden {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* Visible state */
.show {
  opacity: 1;
  transform: translateY(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(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.header__buttons {
  display: flex;
  align-items: center;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background: var(--surface);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.sidebar.show {
  transform: translateX(0);
}

:root[data-theme='dark'] .sidebar {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}

.sidebar a {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--muted);
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.sidebar a:hover,
.sidebar a:focus-visible {
  color: var(--text);
  background: var(--surface-2);
  padding-left: 1.5rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: none;
  z-index: 998;
  transition: background 0.3s ease;
}

.sidebar-overlay.show {
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

.menu-toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 1;
  padding: 0;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 1.6rem;
  height: 2.5px;
  background: var(--text);
  display: block;
  border-radius: 8px;
  transform-origin: center;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.08);
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
  overflow: hidden;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: rgba(24, 152, 255, 0.16);
}

.theme-toggle__icon {
  font-size: 1.1rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-toggle.rotating .theme-toggle__icon {
  transform: rotate(360deg);
}

@keyframes themeToggleSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 12.5rem 0 11.5rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(7, 13, 29, 0.86) 0%, rgba(7, 13, 29, 0.72) 42%, rgba(7, 13, 29, 0.58) 100%),
    radial-gradient(circle at 80% 20%, rgba(0, 198, 255, 0.24), transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.45);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.hero .hero__content {
  width: min(860px, 100%);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.hero .hero__content h1,
.hero .hero__content p,
.hero .hero__content .typing-text {
  color: #f4f8ff;
}

.hero .hero__text {
  color: rgba(244, 248, 255, 0.86);
}

.hero .btn-secondary {
  color: #f4f8ff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(7, 13, 29, 0.45);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.eyebrow--light {
  color: var(--accent);
}

.hero h1,
.section__header h2,
.footer h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
}

.typing-text {
  display: inline-block;
  min-height: 1.1em;
}

.typing-text::after {
  content: '';
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: typingCaretBlink 0.9s steps(1, end) infinite;
}

@keyframes typingCaretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typing-text::after {
    animation: none;
  }
}

.hero__text,
.section__content p,
.section__centered p,
.comparison-card p {
  max-width: 42rem;
  color: var(--muted);
}

.section__content {
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(24, 152, 255, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(24, 152, 255, 0.18);
  color: var(--text);
  background: rgba(24, 152, 255, 0.08);
}

.section {
  padding: 4rem 0;
}

.section--authority {
  color: var(--text);
}

.authority__container {
  display: grid;
  gap: 2rem;
}

.authority__header {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.authority__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.authority__header p {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.85;
}

.authority__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.16);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.authority__cards,
.authority__extra-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.authority__extra {
  display: grid;
  gap: 2rem;
}

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

.authority-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.authority-card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.authority-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--text);
}

.authority-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.authority__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px dashed rgba(24, 152, 255, 0.18);
}

.authority__banner p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.authority__banner strong {
  color: var(--text);
}

.authority__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn--wide {
  width: min(100%, 480px);
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(24, 152, 255, 0.2);
}

.section--scenario {
  color: var(--text);
}

.scenario__container {
  display: grid;
  gap: 2rem;
}

.scenario__header {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.scenario__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.16);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scenario__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.scenario-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.scenario-card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.scenario-card h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: var(--text);
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.scenario__banner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  padding: 2rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(24, 152, 255, 0.2);
  text-align: center;
}

.scenario__banner p {
  margin: 0;
  color: var(--text);
  max-width: 43rem;
  line-height: 1.8;
}

.section--objection,
.section--target {
  color: var(--text);
}

.objection__panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.objection__text p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 52rem;
  line-height: 1.9;
}

.objection__text p:last-child {
  margin-bottom: 0;
}

.objection__features {
  display: grid;
  gap: 1rem;
}

.objection-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.objection-feature__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-size: 1.2rem;
}

.objection-feature h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
}

.objection-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.target__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.target-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.target-card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.target-card h3 {
  margin: 0 0 1rem;
  color: var(--text);
}

.target-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.target__action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.section--workflow,
.section--testimonials {
  color: var(--text);
}

.workflow__container,
.testimonials__container {
  display: grid;
  gap: 2rem;
}

.workflow__cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials-swiper {
  position: relative;
  max-width: 360px;
  height: auto;
  width: 100%;
  overflow: visible;
  padding: 0 1rem;
}

.testimonial-grid {
  display: block;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0 0;
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

.workflow-card,
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.workflow-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-weight: 700;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  margin-bottom: 1rem;
}

.workflow-card h3,
.testimonial-name {
  color: var(--text);
}

.workflow-card p,
.testimonial-role,
.testimonial-text,
.testimonial-note {
  color: var(--muted);
}

.workflow-card h3 {
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-role {
  margin: 0.2rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-stars {
  margin: 0 0 1rem;
  color: #ffbd57;
}

.testimonial-text {
  margin: 0;
  line-height: 1.85;
}

.testimonial-card--featured {
  border-color: rgba(24, 152, 255, 0.32);
}

.testimonial__footer {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.testimonial-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section--faq {
  color: var(--text);
}

.faq__container {
  display: grid;
  gap: 2rem;
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.faq__list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

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

.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.18);
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 0 1rem;
}

.faq__action {
  display: flex;
  justify-content: center;
}

.section--final-cta .section__centered {
  text-align: center;
  gap: 1.5rem;
}

.section--final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.highlight {
  color: var(--accent-strong);
}

.final-cta__note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.workflow__action,
.testimonial__footer .btn {
  justify-content: center;
}

@media (max-width: 960px) {
  .workflow__cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .scenario__cards {
    grid-template-columns: 1fr;
  }

  .target__cards,
  .authority__cards,
  .authority__extra-cards {
    grid-template-columns: 1fr;
  }
}

.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.showcase-card__header {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.showcase-toggle {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  color: var(--muted);
  background: var(--surface-2);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.showcase-toggle:hover,
.showcase-toggle:focus-visible {
  color: var(--text);
  border-color: rgba(24, 152, 255, 0.45);
}

.showcase-toggle.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0e63b8 0%, #00c6ff 100%);
}

.showcase-card__image {
  min-height: 320px;
}

.showcase-lanes {
  display: grid;
  grid-template-columns: 1fr;
}

.showcase-lane {
  display: grid;
  gap: 0.75rem;
}

.showcase-lane[hidden] {
  display: none;
}

.showcase-lane__title {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.showcase-slider {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(13, 61, 125, 0.08), rgba(0, 198, 255, 0.12));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.showcase-slider__track {
  --slide-width: 300px;
  --slide-gap: 0.85rem;
  --slide-duration: 22s;
  display: flex;
  gap: var(--slide-gap);
  width: max-content;
  padding: 0.9rem;
  animation: showcaseInfiniteScroll var(--slide-duration) linear infinite;
  will-change: transform;
}

.showcase-slider__track--mobile {
  --slide-width: 150px;
  --slide-duration: 18s;
}

.showcase-slide {
  width: var(--slide-width);
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 61, 125, 0.25);
}

.showcase-slide__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showcase-slide--mobile {
  aspect-ratio: 9 / 16;
}

.showcase-slide__label {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(7, 13, 29, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(2px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

@keyframes showcaseInfiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--slide-gap) / 2)));
  }
}

.showcase-slider:hover .showcase-slider__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .showcase-slider__track {
    animation: none;
    transform: none;
  }
}

.section__centered {
  text-align: center;
  justify-items: center;
}

.section__centered h2 {
  max-width: 38rem;
}

.section--grid {
  padding-top: 3rem;
}

.section__header {
  margin-bottom: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.comparison-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.comparison-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.comparison-card li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
}

.comparison-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--accent);
}

.comparison-card--positive li::before {
  color: #68ff7e;
}

.footer {
  padding: 4rem 0 2rem;
  background: var(--surface-2);
  border-top: 1px solid var(--footer-border);
  color: var(--text);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(180px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.footer__brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(24, 152, 255, 0.16);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__brand p,
.footer__contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer__section-title {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer__nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--text);
}

.footer__contact {
  display: grid;
  gap: 1rem;
}

.footer__whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

.footer__whatsapp:hover,
.footer__whatsapp:focus-visible {
  background: #128c7e;
  border-color: #128c7e;
}

.footer__base {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-border);
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 960px) {
  .hero__grid,
  .footer__inner,
  .authority__cards,
  .authority__extra-cards {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 3rem;
  }
}

@media (max-width: 780px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .hero {
    padding-top: 3rem;
  }

  .section,
  .footer {
    padding: 3rem 0;
  }

  .btn {
    width: 100%;
  }

  .testimonials-swiper {
    margin-right: -16px !important;
  }
}
