/* Base: Variables */
:root {
  --color-white: #ffffff;
  --color-brand-900: #007aa7;
  --color-brand-700: #00dbe3;
  --color-brand-600: #0078ab;
  --color-brand-300: #00dbe3;
  --color-brand-100: #e0f7fb;
  --color-accent-700: #d6344c;
  --color-ink-900: #0f172a;
  --color-ink-950: #111827;
  --color-ink-800: #1f2937;
  --color-ink-750: #374151;
  --color-ink-700: rgb(61, 85, 118);
  --color-ink-500: #56657b;
  --color-ink-450: #6b7280;
  --color-ink-400: #9ca3af;
  --color-surface-muted: #f1f5f9;
  --color-surface-alt: #eff6ff;
  --color-border-soft: #e5e7eb;
  --color-surface: #f8fafc;
  --color-success-500: #7adecb;
  --shadow-brand-color: rgb(0 144 195 / 0.2);
  --shadow-accent-color: rgba(208, 54, 80, 0.2);
  --shadow-accent-color-100: rgb(244 63 94 / 0.06);
  --shadow-ink-900-25: rgba(15, 23, 42, 0.25);
  --shadow-ink-900-20: rgba(15, 23, 42, 0.2);
  --shadow-ink-900-15: rgba(15, 23, 42, 0.15);
  --shadow-ink-900-12: rgba(15, 23, 42, 0.12);
  --shadow-ink-900-08: rgba(15, 23, 42, 0.08);
  --shadow-white-80: rgba(255, 255, 255, 0.8);
  --shadow-white-18: rgba(255, 255, 255, 0.18);
  --bs-primary: var(--color-brand-600);
  --bs-primary-rgb: 0, 122, 167;
  --bs-secondary: var(--color-ink-500);
  --bs-secondary-rgb: 100, 116, 139;
  --bs-success: var(--color-success-500);
  --bs-success-rgb: 71, 197, 174;
  --bs-body-color: var(--color-ink-700);
  --bs-body-bg: var(--color-surface);
  --bs-secondary-color: var(--color-ink-500);
  --bs-border-color: var(--color-border-soft);
  --bs-link-color: var(--color-brand-600);
  --bs-link-hover-color: var(--color-brand-900);
  --btn-primary-bg: var(--color-brand-600);
  --btn-primary-border: var(--color-brand-600);
  --btn-primary-hover-bg: var(--color-brand-900);
  --btn-primary-hover-border: var(--color-brand-900);
  --btn-primary-color: var(--color-white);
  --btn-accent-bg: var(--color-accent-700);
  --btn-accent-border: var(--color-accent-700);
  --btn-accent-hover-bg: #e64961;
  --btn-accent-hover-border: #e64961;
  --bs-heading-color: #3e516e;
}

/* Base: Document */
html {
  scroll-behavior: smooth;
}

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

/* Base: Typography & Links */
strong,
.fw-bold {
  font-weight: 600 !important;
  color: var(--color-ink-700);
}
.navbar .btn strong {
  color: white;
}

/* Utilities: Reveal & Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

@media (max-width: 991px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .stats-badge {
    animation: none !important;
  }

  .reveal {
    transform: translateY(16px);
    transition-duration: 0.45s;
  }
}

/* Utilities: Text & Focus */
.small,
small {
  font-size: 0.975em;
}

.text-danger {
  color: var(--color-accent-700) !important;
}

.btn-danger {
  background: var(--color-accent-700);
}

a {
  color: var(--bs-primary-rgb);
  font-weight: 600;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-brand-600);
  outline-offset: 3px;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px var(--shadow-brand-color);
}

@media (min-width: 992px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-muted {
  color: var(--color-ink-450) !important;
}

/* Layout */
.page {
  font-family: "Inter", sans-serif;
  background-color: var(--color-surface);
  color: var(--color-ink-700);
  padding-top: 62px;
}

@media (max-width: 991px) {
  .page {
    padding-top: 20px !important;
  }
}

section {
  padding-top: 6.7rem;
  padding-bottom: 6.7rem;
}

@media (max-width: 991px) {
  section {
    position: relative;
    overflow-x: hidden;
  }
}

/* Header / Navigation */
.site-brand {
  color: var(--color-ink-900);
}

.site-brand i {
  color: var(--color-brand-600);
}

.site-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 180px;
}

@media (max-width: 576px) {
  .site-logo {
    height: 30px;
    max-width: 150px;
  }
}

.navbar .nav-link {
  color: var(--color-ink-700);
  font-weight: 500;
  transition: none;
}

.navbar .btn,
.navbar .nav-link {
  font-size: 0.92em;
}

.navbar strong {
  font-weight: 600;
  transition: none;
}

.navbar .btn-pill {
  box-shadow: 0 12px 24px var(--shadow-accent-color);
  box-shadow: 0 5px 9px var(--shadow-accent-color);
}

.navbar .nav-link:hover,
.navbar .nav-link:hover strong,
.navbar .nav-link:focus {
  color: var(--color-brand-600);
}

@media (max-width: 767px) {
  .navbar .navbar-brand {
    margin: 0 auto;
  }
}

.ratio-1150x646 {
  --bs-aspect-ratio: calc(646 / 1150 * 100%);
}

/* Language selector */
.language-selector {
  font-size: 0.9rem;
}

.language-flag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 23px;
  border-radius: 6px;
  background: var(--color-white);
  border: 1px solid black;
  color: black;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.language-flag-link:hover,
.language-flag-link:focus {
  border-color: var(--color-brand-600);
  box-shadow: 0 0 0 3px var(--shadow-brand-color);
}

.language-flag-link.is-active {
  border-color: var(--color-brand-600);
  box-shadow: 0 0 0 3px var(--shadow-brand-color);
}

.language-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero */
.hero-section {
  min-height: calc(100dvh - 62px);
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 991px) {
  .hero-section .col-lg-5 {
    text-align: center;
  }
  .hero-section .btn {
    width: 100%;
  }
  .platform-note {
    margin: auto;
  }
}

.hero-dot-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image: radial-gradient(
    circle,
    rgba(1, 160, 216, 0.5) 1.2px,
    transparent 1.2px
  );
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.7) 60%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.7) 60%,
    transparent 80%
  );
}

.hero-press {
  opacity: 0.7;
}

.hero-press-label {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.68);
}

.platform-note {
  width: fit-content;
}

.hero-section .platform-note {
  margin-top: 2.2rem;
}

/* Quote */
.quote-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-top: 1px solid;
  border-bottom: 1px solid;

  border-color: rgb(229 231 235 / 0.5);
  background-color: var(--color-surface-alt);
}

.hero-title {
  font-weight: 800;
  font-size: 3.33rem;
  font-size: 3.38rem;
  letter-spacing: -1.5px;
  line-height: 1.05;
  padding-right: 20px;
  color: var(--color-ink-900);
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.6rem;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.4rem;
  }
}
.hero-lead {
  color: var(--color-ink-500);
  line-height: 1.5;
  font-size: 1.15rem;
  font-weight: normal;
}

@media (max-width: 767px) {
  .hero-lead {
    font-size: 1.06rem;
  }
}

.hero-lead strong {
  font-weight: 600;
}

.text-gradient {
  background: linear-gradient(
    90deg,
    var(--color-brand-600),
    var(--color-accent-700)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-pill {
  border-radius: 999px;
  padding-inline: 1.25rem;
}

.btn-primary {
  --bs-btn-bg: var(--btn-primary-bg);
  --bs-btn-border-color: var(--btn-primary-border);
  --bs-btn-color: var(--btn-primary-color);
  --bs-btn-hover-bg: var(--btn-primary-hover-bg);
  --bs-btn-hover-border-color: var(--btn-primary-hover-border);
  --bs-btn-hover-color: var(--btn-primary-color);
  --bs-btn-active-bg: var(--btn-primary-hover-bg);
  --bs-btn-active-border-color: var(--btn-primary-hover-border);
  --bs-btn-active-color: var(--btn-primary-color);
}

.navbar .btn-primary {
  --bs-btn-bg: var(--btn-accent-bg);
  --bs-btn-border-color: var(--btn-accent-border);
  --bs-btn-hover-bg: var(--btn-accent-hover-bg);
  --bs-btn-hover-border-color: var(--btn-accent-hover-border);
  --bs-btn-active-bg: var(--btn-accent-hover-bg);
  --bs-btn-active-border-color: var(--btn-accent-hover-border);
}

.btn-cta-primary {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  box-shadow: 0 14px 24px var(--shadow-brand-color) !important;
}
.btn-cta-primary strong {
  color: white;
}
.btn-cta-outline {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  box-shadow: 0 14px 24px var(--shadow-accent-color-100) !important;
  border-color: rgba(0, 0, 0, 0.065);
  background: rgba(255, 255, 255, 0.67);
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(15, 89, 116, 0.14);
  color: inherit;
}
.btn-cta-outline strong {
  color: var(--color-accent-700);
}

.btn-cta-danger {
  background: var(--btn-accent-bg);
  box-shadow: 0 12px 24px var(--shadow-accent-color) !important;
  color: white;
  border-color: transparent;
}
.btn-cta-danger strong {
  color: white;
}

.btn,
.btn-pill {
  border-radius: 6px;
}

.shadow-deep {
  box-shadow: 0 20px 60px var(--shadow-ink-900-25);
}

.hero-section .shadow-deep {
  box-shadow: -24px 24px 0 rgb(22 88 122 / 20%);
}

.hero-section .mobile-frame.shadow-deep {
  box-shadow: -16px 16px 0 rgb(47 105 157 / 14%);
}

.border-strong {
  border: 4px solid var(--color-ink-800);
}

.col-frames {
  padding-left: 4.5rem;
  padding-right: 3.75rem;
}

.hero-media {
  background: linear-gradient(
    135deg,
    var(--color-ink-900),
    var(--color-ink-950)
  );
}

.hero-video,
.mobile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tilt-left {
  transform: rotate(-4deg);
  transition: transform 0.5s ease;
}

.tilt-right {
  transform: rotate(6deg);
}

@media (max-width: 991px) {
  .tilt-right {
    transform: rotate(4deg);
  }
}

.mobile-frame {
  position: absolute;
  width: 160px;
  height: 320px;
  right: -50px;
  bottom: -40px;
  background: var(--color-ink-900);
  border-radius: 24px;
  border: 8px solid var(--color-ink-800);
}

.mobile-frame-inner {
  width: 100%;
  height: 100%;
  border-radius: 17px;
  overflow: hidden;
  background: var(--color-white);
}

.quote-icon {
  font-size: 2.25rem;
  /*color: var(--color-brand-100);*/
}

.quote-text {
  color: var(--color-brand-600);
}

.quote-author {
  color: var(--color-ink-500);
  font-weight: 600;
}

.section-divider {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background-color: var(--color-brand-600);
}

.section-title {
  color: var(--color-ink-900);
  color: var(--bs-heading-color);
}

/* Platforms & Features */
.features-section {
  padding-top: 0;
  background-color: var(--color-surface);
}

.feature-card {
  background: var(--color-white);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 20px 40px var(--shadow-ink-900-08);
  overflow: hidden;
}

.feature-card--highlight {
  background: var(--color-brand-600);
  border-color: transparent;
  transform: translateY(-12px);
  color: var(--color-white);
}

.feature-card-title {
  color: var(--color-ink-900);
  font-weight: 300;
}
.feature-card-title strong {
  font-weight: 700;
}
.feature-card--highlight strong {
  color: white;
}
.contact-section strong,
.contact-section .fw-bold {
  color: white;
  font-weight: 700;
}
.feature-card-text {
  color: var(--color-ink-500);
  text-align: justify;
}

.feature-card--highlight .feature-card-title,
.feature-card--highlight .feature-card-text {
  color: var(--color-white);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon--brand {
  background: var(--color-brand-100);
  color: var(--color-brand-600);
}

.feature-icon--inverse {
  background: var(--shadow-white-18);
  color: var(--color-white);
}

.feature-icon--muted {
  background: var(--color-surface-muted);
  color: var(--color-ink-500);
}

.feature-watermark {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 5rem;
  opacity: 0.1;
  color: var(--color-brand-600);
}

.feature-card--highlight .feature-watermark {
  color: var(--color-white);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-white);
  color: var(--color-brand-600);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.feature-item-icon {
  color: var(--color-brand-600);
}

.feature-item-text {
  color: var(--color-ink-500);
}

.feature-item h4 {
  font-weight: 400;
  font-size: 1.35rem;
}

/* Press */
.press-video {
  max-width: none;
  margin: 0;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 18px 40px var(--shadow-ink-900-20);
}

.press-links {
  padding: 0;
  text-align: left;
}

@media (min-width: 992px) {
  .press-links {
    padding: 0 0 0 2.5rem;
  }
}

.press-link {
  display: block;
  margin-bottom: 1.5rem;
  color: rgba(52, 52, 52, 0.42);
  text-decoration: none;
  line-height: 1.2;
  font-size: 0.95rem;
}

.press-link strong {
  display: inline-block;
  margin-right: 0.4rem;
  color: var(--color-ink-700);
  font-weight: 600;
}

.press-link span {
  color: rgba(52, 52, 52, 0.42);
  color: var(--color-ink-500);
  font-weight: normal;
}

.press-link:hover {
  opacity: 0.8;
}

.press-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-icons.hero-press-icons {
  display: flex;
  text-decoration: none;
  gap: 2rem 5rem;
}

.press-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  list-style: none;
}

.press-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.hero-press-icons {
  opacity: 0.6;
}

.press-icons {
  filter: grayscale(100%);
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.press-icons .press-logo {
  max-height: 50px;
  opacity: 0.85;
}

.press-icons:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Case Study */
.case-section {
  padding-block: 6rem;
}

.case-tag {
  display: inline-block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-brand-900);
}

.case-video {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 18px 40px var(--shadow-ink-900-20);
}

.case-logo img {
  height: 55px;
  /*-webkit-filter: grayscale(100%);
  filter: grayscale(100%);*/
}

.case-metrics {
  margin-top: 4.5rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  justify-items: center;
}

.case-metric {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 240px;
  padding: 1.45rem 1.2rem 1.35rem;
  border-radius: 1.15rem;
  background: white;
  box-shadow: 0 18px 38px var(--shadow-ink-900-08);
  box-shadow:
    0 0px 38px rgba(61, 38, 126, 0.02),
    0 0 38px rgb(0 144 195 / 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.case-metric:hover,
.case-metric:focus-within {
  transform: translateY(-4px);
  box-shadow:
    0 0px 38px rgba(61, 38, 126, 0.05),
    0 0 38px rgb(0 144 195 / 0.08);
}

.case-metric-ring {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0.25rem auto 0.15rem;
  display: grid;
  place-items: center;
}

.case-metric-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.case-metric-track {
  fill: none;
  stroke: #eef3f8;
  stroke-width: 6;
  opacity: 1;
}

.case-metric-circle {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  /*filter: drop-shadow(0 10px 14px rgba(1, 160, 216, 0.18));*/
  transition: stroke-dashoffset 2.5s ease;
}

.case-metric-circle--brand {
  stroke: var(--color-brand-900);
  stroke: #99e5ed;
}

.case-metric-circle--main {
  stroke: var(--color-brand-600);
  stroke: #6bbddd;
}

.case-metric-circle--accent {
  stroke: var(--color-accent-700);
  stroke: #f48597;
}

.case-metric-circle--success {
  stroke: var(--color-success-500);
  /*filter: drop-shadow(0 10px 14px rgba(34, 197, 94, 0.22));*/
}

.case-metric-value {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 24px;
  color: var(--bs-heading-color);
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: -0.015em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.case-metric-label {
  margin-top: 1.05rem;
  font-size: 1.095rem;
  font-weight: 600;
  color: var(--bs-heading-color);
}

.case-metric-hint {
  position: absolute;
  left: 50%;
  top: -4.6rem;
  transform: translateX(-50%) translateY(6px);
  width: 220px;
  background: #0f172a;
  color: var(--color-white);
  font-size: 0.72rem;
  line-height: 1.45;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 16px 30px var(--shadow-ink-900-20);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 3;
}

.case-metric-hint strong {
  color: white;
}

.case-metric-hint::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: #0f172a;
}

.case-metric:hover .case-metric-hint,
.case-metric:focus-within .case-metric-hint {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.case-metric:focus-visible {
  outline: 2px solid rgba(47, 108, 251, 0.6);
  outline-offset: 4px;
}

@media (min-width: 992px) {
  .case-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: stretch;
    align-items: stretch;
    margin-top: 5.25rem;
    gap: 1.5rem;
    text-align: center;
  }

  .case-metric {
    max-width: none;
  }
}

.client-logos {
  position: relative;
  overflow: hidden;
  padding-top: 0.5rem;
}

.client-logos::before,
.client-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.client-logos::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface), transparent);
}

.client-logos::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface), transparent);
}

.client-logos-track {
  display: flex;
  width: max-content;
  animation: clientMarquee 30s linear infinite;
  animation-play-state: paused;
}

.client-logos-row {
  display: flex;
  align-items: center;
  gap: 2rem 3rem;
  padding-right: 2.5rem;
}

.client-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
}

.client-logo {
  height: 43px;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.85;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logos:hover .client-logos-track {
  animation-play-state: paused;
}

.is-animating .client-logos-track {
  animation-play-state: running;
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.case-logo-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-ink-450);
}

.case-copy {
  color: var(--color-ink-500);
  font-size: 1.05rem;
}

.case-copy p {
  margin-bottom: 1rem;
}

/* Stats */
.stats-section {
  position: relative;
  overflow: hidden;
  padding-block: 6rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgb(229 231 235 / 0.5);
}

.stats-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 0;
}

.stats-orb-top {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -80px;
  background: var(--color-brand-300);
}

.stats-orb-bottom {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: -80px;
  background: var(--color-brand-600);
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface-muted);
  color: var(--color-ink-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-lead {
  color: var(--color-ink-500);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.stats-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  color: var(--color-ink-500);
}

.stats-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--color-surface-muted);
  color: var(--color-brand-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stats-frame {
  background: var(--color-white);
  border-radius: 1.25rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 18px 40px var(--shadow-ink-900-20);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.stats-frame:hover {
  transform: scale(1.02);
}

.stats-frame-bar {
  background: var(--color-surface-muted);
  border-bottom: 1px solid var(--color-border-soft);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stats-dots {
  display: inline-flex;
  gap: 0.4rem;
}

.stats-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.stats-dots span:nth-child(1) {
  background: #f87171;
}

.stats-dots span:nth-child(2) {
  background: #fbbf24;
}

.stats-dots span:nth-child(3) {
  background: #34d399;
}

.stats-url {
  flex: 1;
  max-width: 240px;
  margin: 0 auto;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border-soft);
  background: var(--color-white);
  color: var(--color-ink-450);
  font-size: 0.6rem;
  text-align: center;
  font-family: "Courier New", Courier, monospace;
}

.stats-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-muted);
}

.stats-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 24px var(--shadow-ink-900-20);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  animation: statsFloat 3s ease-in-out infinite;
  animation-play-state: paused;
}

.is-animating .stats-badge {
  animation-play-state: running;
}

.stats-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: rgb(var(--bs-success-rgb));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stats-badge-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-ink-450);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stats-badge-value {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink-900);
}

@keyframes statsFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logos-track,
  .stats-badge {
    animation: none !important;
  }
}

.press-logo {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Author & Clients */
.author-avatar {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  background: var(--color-border-soft);
  border: 6px solid var(--color-white);
  box-shadow: 0 18px 40px var(--shadow-ink-900-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--color-ink-450);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-text {
  color: var(--color-ink-500);
}

.author-text p {
  margin-bottom: 1rem;
}

/* FAQ */
.faq-section {
  background: var(--color-surface-muted);
  padding-block: 6.5rem;
}

.faq-container {
  max-width: 860px;
}

.faq-lead {
  color: var(--color-ink-500);
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 22px var(--shadow-ink-900-08);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(1, 160, 216, 0.22);
  box-shadow: 0 16px 36px var(--shadow-ink-900-12);
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

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

.faq-question {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-ink-800);
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question {
  color: var(--color-brand-900);
}

.faq-icon {
  color: var(--color-ink-450);
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--color-brand-600);
}

.faq-answer {
  padding: 1.1rem 1.5rem 1.4rem;
  border-top: 1px solid var(--color-surface-muted);
  color: var(--color-ink-600);
  line-height: 1.7;
}

.faq-footer-text {
  color: var(--color-ink-500);
}

/* Contact */
.contact-section {
  background: var(--color-ink-900);
}

.contact-copy {
  color: var(--color-ink-300);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-info-box {
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .contact-info-box {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-ink-800);
    background: var(--color-ink-950);
    font-size: 0.95rem;
    color: var(--color-ink-300);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }
}

.contact-info-box i {
  color: white;
  margin-top: 0.15rem;
  opacity: 0.65;
}

.contact-direct {
  display: grid;
  gap: 1rem;
}

.contact-direct-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-direct-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.contact-direct-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-ink-950);
  border: 1px solid var(--color-ink-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-600);
  color: var(--color-accent-700);
}
/*
.contact-direct-icon .fa-envelope {
  color: var(--color-accent-700);
}
.contact-direct-icon .fa-phone-alt {
  color: white;
}*/
.contact-direct-icon--whatsapp {
  color: var(--color-success-500);
}

.contact-direct-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-ink-400);
}

.contact-direct-value {
  margin: 0;
  color: var(--color-white);
  font-weight: 500;
}

.contact-direct-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-direct-link:hover {
  color: var(--color-brand-300);
}

@media (min-width: 992px) {
  .contact-form-card {
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid var(--color-ink-800);
    background: var(--color-ink-950);
  }

  .contact-form {
    background: var(--color-ink-950);
    border: 1px solid var(--color-ink-800);
  }
}

.form-control-dark {
  background-color: var(--color-ink-800);
  border-color: var(--color-ink-750);
  color: var(--color-white);
}

.form-control-dark:focus {
  background-color: var(--color-ink-800);
  border-color: var(--color-brand-600);
  color: var(--color-white);
  box-shadow: none;
}

.contact-privacy {
  color: var(--color-ink-400);
}

.contact-privacy a {
  color: var(--color-brand-300);
}

.contact-submit {
  padding-block: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Footer */
.contact-footer {
  border-top: 1px solid var(--color-ink-800);
  color: var(--color-ink-400);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 7rem;
}

.contact-footer-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;

  font-size: 0.92em;
}

.contact-footer-row a {
  font-weight: normal;
}

.contact-form .privacy {
  color: var(--color-ink-400);
  font-size: 0.85em;
  text-align: justify;
}

.contact-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-footer .language-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

@media (min-width: 768px) {
  .contact-footer-row {
    flex-direction: row;
  }
}

.contact-link {
  color: var(--color-ink-400);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--color-white);
}

/* Modals */
.modal-body-heading {
  font-weight: 600;
  margin-top: 1.5rem;
}

.legal-modal-body h5 {
  margin-top: 1.5rem;
}

.legal-modal-body h5:first-child,
.modal-body-heading:first-child {
  margin-top: 0;
}

.modal-modern .modal-header .btn-light {
  font-size: 1.12rem;
}

.modal-modern .modal-body .ratio {
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  overflow: hidden;
}

.modal-modern .modal-body .ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-modern .modal-content {
  border-radius: 1.25rem;
  border: 1px solid var(--color-ink-800);
  box-shadow: 0 24px 60px var(--shadow-ink-900-20);
  background: var(--color-ink-950);
  font-size: 0.93em;
}

.modal-modern .modal-header {
  border-bottom: 1px solid var(--color-ink-800);
  padding: 1.25rem 1.5rem;
}

.modal-modern .modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.modal-modern .modal-body {
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.modal-modern .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.72;
  transition: opacity 0.2s ease;
  font-size: 25px;
}

.modal-modern .btn-close:hover,
.modal-modern .btn-close:focus {
  opacity: 1;
}

/* Scroll to top */
.scroll-up-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid white;
  background: var(--color-ink-950);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 24px var(--shadow-ink-900-20);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  z-index: 1050;
}

.scroll-up-button:hover {
  background: var(--color-brand-600);
  border-color: var(--color-brand-600);
}

.scroll-up-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-up-button i {
  font-size: 1rem;
}

/* Consent banner */
.consent-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1030;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.consent-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.consent-card {
  width: min(980px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  color: var(--color-white);
  pointer-events: auto;
}

.consent-text {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

.consent-text a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.7);
}

.consent-main {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.consent-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.consent-reject {
  border: 0;
  background: transparent;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.85rem;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(148, 163, 184, 0.8);
  padding: 0.35rem 0.5rem;
  transition: color 0.2s ease;
}

.consent-reject:hover,
.consent-reject:focus {
  color: var(--color-white);
}

.consent-accept {
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 12px 24px rgba(1, 160, 216, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.consent-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(1, 160, 216, 0.3);
}

@media (max-width: 991.98px) {
  .consent-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .consent-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .consent-main {
    max-width: 70%;
  }
}

@media (max-width: 991px) {
  .feature-card--highlight {
    transform: translateY(0);
  }

  .mobile-frame {
    position: static;
    left: auto;
    bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;

    position: absolute;
    top: -30px;
  }
  .hero-media {
    margin: 5rem 0 3rem -2.2rem;
  }
}
@media (max-width: 767px) {
  .mobile-frame {
    position: absolute;
    top: -35px;
    right: -15px;
    margin-top: 0;
    width: 130px;
    height: 260px;
    border-width: 6px;
  }
  .hero-section .mobile-frame.shadow-deep {
    box-shadow: -10px 8px 0 rgb(47 105 157 / 14%);
  }
  .hero-section .shadow-deep {
    box-shadow: -12px 11px 0 rgb(22 88 122 / 20%);
  }
  .hero-media {
    margin: 5rem 0 1rem -1.3rem;
  }
}

/* Responsive overrides */
@media (max-width: 991px) {
  .hero-press {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .press-icons.hero-press-icons {
    gap: 1.6rem 2.6rem;
  }
  .press-icons .press-logo {
    max-height: 45px;
  }
}

@media (max-width: 991px) {
  .feature-card,
  .stats-section,
  .author-title,
  .author-section .reveal-target,
  .contact-direct {
    text-align: center;
  }
  section#plataformas {
    padding-bottom: 3rem;
  }
  .feature-item {
    text-align: center !important;
  }
  .feature-item .feature-item-text,
  .author-text .reveal-target,
  .case-copy {
    text-align: justify !important;
  }
  .stats-item {
    text-align: left;
  }
  .contact-direct {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
  .contact-direct-title {
    grid-column: 1 / -1;
  }
  .contact-direct-item {
    display: grid !important;
    grid-template-columns: auto 1fr;
    text-align: left;
  }
  .stats-badge {
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
  }
  .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .contact-info-box {
    font-size: 1.05rem;
  }

  section,
  .quote-section,
  .case-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .case-metrics {
    margin-top: 2.5rem;
    margin-bottom: 0;
  }
  .press-video {
    margin-top: -1rem;
  }
  .author-section {
    padding-top: 6rem;
    padding-bottom: 5.5rem;
  }
  .faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  .contact-direct {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .contact-direct-item {
    grid-template-columns: auto;
    justify-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .case-metric-ring {
    width: 120px;
  }
  .case-metric-value {
    font-size: 20px;
  }
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .press-section {
    padding-bottom: 1.75rem;
  }
  .author-section {
    padding-top: 5.1rem;
    padding-bottom: 4.5rem;
  }
  .faq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
