/* styles.css */
:root {
  --background: hsl(215, 40%, 98%);
  --surface: hsl(217, 82%, 95%);
  --foreground: hsl(214, 40%, 15%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(212, 85%, 30%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-dark: hsl(212, 85%, 24%);
  --secondary: hsl(212, 85%, 33%);
  --accent: hsl(215, 85%, 45%);
  --brand-sky: hsl(196, 88%, 58%);
  --lavender: hsl(217, 80%, 94%);
  --muted: hsl(215, 30%, 94%);
  --muted-foreground: hsl(214, 24%, 45%);
  --border: hsl(214, 30%, 86%);
  --input: hsl(214, 30%, 90%);
  --white: #ffffff;
  --green: #10b981;
  --yellow: #f59e0b;
  --red: #ef4444;
  --shadow: 0 24px 60px rgba(24, 46, 84, 0.12);
  --shadow-soft: 0 14px 36px rgba(24, 46, 84, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--background), hsl(215, 40%, 96%));
  color: var(--foreground);
  line-height: 1.6;
  padding: 0;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.problem-showcase > .container {
  width: min(1180px, 92%);
  max-width: 1180px;
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsla(215, 40%, 100%, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(24, 46, 84, 0.05);
}

.nav-content {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  cursor: pointer;
}

.logo-image {
  display: block;
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 4px 10px;
  font-size: 0.84rem;
  color: var(--muted-foreground);
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 0;
  border: none;
  background: none;
  color: var(--muted-foreground);
  font-size: 0.84rem;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-dropdown-trigger:hover::after {
  width: 100%;
}

.nav-dropdown-trigger:hover {
  color: var(--primary);
}

.nav-dropdown-arrow {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotateZ(180deg);
}

@media (min-width: 981px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotateZ(180deg);
  }
}

.nav-dropdown-menu {
  position: fixed;
  top: auto;
  left: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(24, 46, 84, 0.12);
  padding: 8px 0;
  margin-top: 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.nav-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--muted-foreground);
  font-size: 0.84rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--primary);
}

.nav-links a {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 0;
  transition: color 0.2s ease;
  color: var(--muted-foreground);
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn.nav-contact {
  display: inline-flex;
  min-width: 110px;
  justify-content: center;
  padding-inline: 16px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(33, 77, 156, 0.25);
}

.btn.nav-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(33, 77, 156, 0.32);
}

.btn.nav-contact.nav-contact-mobile {
  display: none;
}

.nav-contact-desktop {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--card);
  color: var(--primary);
  font-size: 1.4rem;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-toggle.active {
  transform: rotate(90deg);
  background: var(--lavender);
  box-shadow: var(--shadow);
}

.hero {
  padding: 100px 0 70px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

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

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 620px;
  margin-left: auto;
}

.hero-visual img {
  min-height: 560px;
}

.badge {
  width: fit-content;
  background: var(--lavender);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.hero p {
  color: var(--muted-foreground);
  font-size: 1.12rem;
  max-width: 600px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(33, 77, 156, 0.25);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(33, 77, 156, 0.32);
}

.btn.secondary {
  background: var(--card);
  color: var(--primary);
  border-color: var(--border);
}

.btn.secondary:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.nav-contact {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: transparent;
}

.nav-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(33, 77, 156, 0.16);
}

.btn.light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.full {
  width: 100%;
}

.hero-note {
  margin-top: 22px;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.dashboard-card {
  background: var(--card);
  border: 1px solid hsl(214, 30%, 92%);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.status-dot {
  position: relative;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.12);
}

.status-dot::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: hsla(215, 85%, 45%, 0.18);
  border-radius: 50%;
  z-index: -1;
}

.dashboard-header h3 {
  font-size: 1.18rem;
}

.dashboard-header span {
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.status-dot {
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.12);
}

.risk-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  margin-bottom: 14px;
  background: var(--surface);
  border: 1px solid hsl(214, 30%, 90%);
}

.risk-card.high {
  background: rgba(254, 100, 109, 0.12);
  border-color: rgba(254, 100, 109, 0.2);
}

.risk-card.medium {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
}

.risk-card.low {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.18);
}

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

.risk-card span {
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.risk-card p {
  font-size: 1.45rem;
  font-weight: 800;
}

.chart-box {
  height: 170px;
  background: var(--surface);
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 22px;
  margin: 24px 0;
}

.bar {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.explain-box {
  background: var(--secondary);
  color: var(--primary-foreground);
  padding: 20px;
  border-radius: 26px;
}

.explain-box strong {
  display: block;
  margin-bottom: 8px;
}

.explain-box span {
  color: hsla(0, 0%, 100%, 0.88);
  font-size: 0.95rem;
}

.section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, hsl(214, 60%, 97%), hsl(214, 45%, 94%));
}

main > .section::before,
main > .cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0 34%,
    var(--primary-dark) 34% 48%,
    var(--primary) 48% 78%,
    var(--brand-sky) 78% 100%
  );
}

.section.alt {
  background: #ffffff;
}

.section-header {
  text-align: left;
  max-width: 760px;
  margin: 0 0 44px;
}

.section-header.left {
  text-align: left;
  margin: 0;
}

.section-header span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 14px 0 18px;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 0 20px;
}

.section-header.left .btn {
  margin-top: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.cards-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.problem-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--card);
}

.problem-card,
.feature-card,
.solution-visual {
  cursor: default;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.problem-card .card-media {
  height: 240px;
  margin: 0;
  border-radius: 28px 28px 0 0;
  position: relative;
}

.problem-card .card-media::after {
  content: none;
}

.problem-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.problem-card-content {
  position: relative;
  padding: 20px 18px 22px;
  color: var(--foreground);
}

.problem-card-content::before {
  content: none;
}

.problem-card-content > * {
  position: relative;
}

.problem-card-content h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--foreground);
  text-shadow: none;
}

.problem-card-content p {
  color: var(--muted-foreground) !important;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: none;
}

.feature-solution-grid {
  align-items: center;
}

.feature-solution-copy {
  align-self: stretch;
}

.feature-solution-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
}

.feature-variables-grid {
  margin-top: 8px;
}

.feature-variable-card {
  min-height: 168px;
}

.feature-variable-card strong {
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-vars-note {
  font-size: 0.9rem;
  color: hsl(212, 35%, 44%);
  margin-top: 2px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-media {
  width: 100%;
  height: 200px;
  margin: 0 0 18px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: var(--lavender);
  display: grid;
  place-items: center;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.12rem;
}

.card p {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.solution-copy {
  display: grid;
  gap: 14px;
}

.solution-copy > span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.solution-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

.solution-copy p {
  color: var(--muted-foreground);
  font-size: 1.06rem;
  max-width: 64ch;
}

.solution-copy .btn {
  width: fit-content;
  padding: 14px 22px;
  font-size: 1rem;
  margin-top: 0;
  align-self: start;
}

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

.solution-kpi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-kpi:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.solution-kpi span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution-kpi strong {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1;
  color: var(--foreground);
}

.solution-kpi p {
  color: var(--muted-foreground);
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0;
}

.solution-visual {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  min-height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 247, 255, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.solution-visual::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(33, 77, 156, 0.12);
  z-index: 0;
}

.solution-visual-badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.solution-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

.solution-visual-caption {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}

.solution-visual-caption strong {
  font-size: 1.02rem;
}

.solution-visual-caption span {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.5;
}

.responsible-section {
  background: linear-gradient(180deg, hsl(214, 60%, 97%), hsl(214, 45%, 94%));
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 22px;
  align-items: center;
}

.responsible-copy {
  display: grid;
  gap: 16px;
}

.responsible-copy > span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.responsible-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

.responsible-copy p {
  color: var(--muted-foreground);
  font-size: 1.02rem;
  max-width: 62ch;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.tech-item img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 14px;
}

.tech-item strong {
  display: block;
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.tech-item span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.84rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .testimonial-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.feature-solution-visual .solution-visual-badge {
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 8px;
  align-self: start;
  justify-self: start;
  white-space: normal;
}

.btn.small {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.88rem;
}

.product-flow-card .btn.small {
  width: fit-content;
  margin-top: 4px;
}

.team-more {
  border: 1px solid rgba(31, 83, 169, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.team-more:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: rgba(31, 83, 169, 0.34);
}

.sitme-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.sitme-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sitme-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 30, 0.72);
  backdrop-filter: blur(8px);
}

.sitme-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1020px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.sitme-modal-close {
  position: sticky;
  top: 16px;
  float: right;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: 16px 16px -60px 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.sitme-modal-hero {
  padding: 34px 40px 32px;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  color: var(--white);
}

.sitme-modal-hero > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
  font-weight: 800;
}

.sitme-modal-hero h2 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.sitme-modal-hero p {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.sitme-modal-hero.person {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.sitme-modal-hero.person img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.32);
}

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

.sitme-modal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 800;
}

.sitme-modal-image {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
  display: block;
}

.sitme-modal-body {
  display: grid;
  gap: 22px;
  padding: 34px 40px 38px;
}

.sitme-modal-body.split {
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
}

.sitme-modal-section {
  display: grid;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.sitme-modal-section + .sitme-modal-section {
  margin-top: 22px;
}

.sitme-modal-section h3 {
  color: var(--primary);
  font-size: 1.24rem;
  margin: 0;
}

.sitme-modal-section p,
.sitme-modal-section li {
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.7;
}

.sitme-modal-section ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.sitme-modal-section li {
  position: relative;
  padding-left: 24px;
}

.sitme-modal-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.sitme-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sitme-modal-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(31, 83, 169, 0.18);
  border-radius: 8px;
  background: var(--surface);
  color: var(--primary);
  font-weight: 800;
}

.sitme-modal-aside {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(31, 83, 169, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, hsl(210, 68%, 97%), var(--white));
  box-shadow: var(--shadow-soft);
}

.sitme-modal-aside span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sitme-modal-aside strong {
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.sitme-modal-aside p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.sitme-modal-aside.compact {
  align-content: start;
}

.sitme-modal-aside.compact strong {
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.sitme-modal-aside .btn.full {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .sitme-modal {
    padding: 12px;
  }

  .sitme-modal-hero,
  .sitme-modal-body {
    padding-inline: 24px;
  }

  .sitme-modal-body.split {
    grid-template-columns: 1fr;
  }

  .sitme-modal-aside {
    position: static;
  }

  .sitme-modal-hero.person {
    grid-template-columns: 1fr;
  }
}

.kpi-goal {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(31, 83, 169, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

/* Final overrides for clean partner logos and non-card team layout */
.supporting-track {
  overflow: visible;
}

.supporting-set {
  gap: 56px;
}

.supporting-card {
  flex: 0 0 190px;
  width: 190px;
  min-height: 76px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.supporting-card img {
  display: block;
  width: auto;
  max-width: 158px;
  max-height: 52px;
  object-fit: contain;
}

.supporting-card span {
  display: none;
}

.team-section .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.team-section .team-card {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.team-section .team-card:hover {
  transform: none;
  box-shadow: none;
}

.team-section .team-photo {
  width: 136px;
  height: 136px;
  border-radius: 50%;
}

.team-section .team-bio {
  max-width: 29ch;
  color: var(--muted-foreground);
}

@media (max-width: 980px) {
  .team-section .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .supporting-set {
    gap: 34px;
  }

  .supporting-card {
    flex-basis: 138px;
    width: 138px;
    min-height: 64px;
    padding: 0 10px;
  }

  .supporting-card img {
    max-width: 122px;
    max-height: 44px;
  }

  .team-section .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Final modal polish */
.sitme-modal {
  padding: 28px;
  transition: opacity 0.28s ease;
}

.sitme-modal-backdrop {
  background:
    radial-gradient(circle at 18% 12%, rgba(27, 132, 204, 0.2), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(91, 192, 235, 0.18), transparent 30%),
    rgba(4, 14, 29, 0.78);
  backdrop-filter: blur(10px) saturate(1.08);
}

.sitme-modal-panel {
  width: min(1060px, 95vw);
  max-height: min(88vh, 860px);
  border: 1px solid rgba(211, 226, 241, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98)),
    var(--white);
  box-shadow: 0 34px 100px rgba(3, 18, 38, 0.38);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  scrollbar-color: rgba(31, 83, 169, 0.45) rgba(221, 235, 248, 0.85);
}

.sitme-modal.is-open .sitme-modal-panel {
  transform: translateY(0) scale(1);
}

.sitme-modal-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 18px 18px -60px 0;
  border: 1px solid rgba(214, 228, 241, 0.92);
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-dark);
  font-size: 1.55rem;
  font-weight: 500;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.sitme-modal-close:hover {
  transform: rotate(90deg) scale(1.04);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(5, 24, 52, 0.18);
}

.sitme-modal-hero {
  position: relative;
  isolation: isolate;
  min-height: 228px;
  padding: 38px 44px 36px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(8, 31, 66, 0.98), rgba(15, 84, 151, 0.95) 58%, rgba(25, 139, 193, 0.9)),
    var(--primary-dark);
}

.sitme-modal-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -46% 48%;
  z-index: -1;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(2px);
}

.sitme-modal-hero > span {
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 13px;
  border: 1px solid rgba(203, 231, 250, 0.26);
  border-radius: 999px;
  background: rgba(232, 244, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sitme-modal-hero > span.is-plan {
  min-height: 36px;
  padding: 0 16px;
  border-color: rgba(226, 244, 255, 0.62);
  background: rgba(239, 248, 255, 0.96);
  color: var(--primary-dark);
  font-size: 0.76rem;
  letter-spacing: 0.035em;
  box-shadow: 0 10px 24px rgba(3, 18, 38, 0.12);
}

.sitme-modal-hero > span.is-plan::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(25, 139, 193, 0.14);
}

.sitme-modal-hero h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: 0;
}

.sitme-modal-hero p {
  max-width: 790px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 1.04rem;
}

.sitme-modal-hero.person {
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 210px;
}

.sitme-modal-hero.person img {
  width: 124px;
  height: 124px;
  border: 5px solid rgba(234, 246, 255, 0.32);
  box-shadow: 0 18px 34px rgba(2, 13, 28, 0.2);
}

.sitme-modal-links a {
  min-height: 40px;
  border: 1px solid rgba(226, 244, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  transition: transform 0.18s ease, background 0.18s ease;
}

.sitme-modal-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.sitme-modal-image {
  max-height: 320px;
  border-bottom: 1px solid rgba(207, 224, 238, 0.9);
}

.sitme-modal-body {
  gap: 24px;
  padding: 36px 44px 42px;
}

.sitme-modal-body.split {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
  gap: 32px;
}

.sitme-modal-body > div {
  min-width: 0;
}

.sitme-modal-section {
  position: relative;
  gap: 12px;
  padding: 0 0 24px 18px;
  border-bottom: 1px solid rgba(207, 224, 238, 0.9);
}

.sitme-modal-section::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 24px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.sitme-modal-section h3 {
  color: var(--primary-dark);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.sitme-modal-section p,
.sitme-modal-section li {
  color: hsl(214, 28%, 24%);
}

.sitme-modal-section ul {
  gap: 12px;
}

.sitme-modal-section li {
  padding-left: 30px;
}

.sitme-modal-section li::before {
  top: 2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(25, 139, 193, 0.12);
  color: var(--primary);
  font-size: 0.72rem;
}

.sitme-modal-tags {
  gap: 9px;
}

.sitme-modal-tags span {
  min-height: 36px;
  border-color: rgba(31, 83, 169, 0.16);
  border-radius: 999px;
  background: hsl(207, 70%, 96%);
  color: var(--primary-dark);
  font-size: 0.9rem;
  box-shadow: inset 0 -1px 0 rgba(31, 83, 169, 0.08);
}

.sitme-modal-aside {
  top: 22px;
  gap: 16px;
  padding: 26px;
  border-color: rgba(31, 83, 169, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: 0 22px 52px rgba(9, 35, 70, 0.12);
}

.sitme-modal-aside::before {
  content: "";
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent));
}

.sitme-modal-aside span {
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.sitme-modal-aside strong {
  color: var(--primary-dark);
  font-size: clamp(1.9rem, 2.6vw, 2.45rem);
}

.sitme-modal-aside.compact strong {
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  line-height: 1.14;
}

.sitme-modal-aside .btn.full {
  min-height: 52px;
  border-radius: 8px;
}

@media (max-width: 820px) {
  .sitme-modal {
    padding: 14px;
  }

  .sitme-modal-panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 16px;
  }

  .sitme-modal-close {
    width: 40px;
    height: 40px;
    margin: 14px 14px -54px 0;
  }

  .sitme-modal-hero {
    min-height: 0;
    padding: 32px 24px 28px;
  }

  .sitme-modal-hero h2 {
    font-size: clamp(1.72rem, 8vw, 2.25rem);
  }

  .sitme-modal-hero.person {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sitme-modal-hero.person img {
    width: 104px;
    height: 104px;
  }

  .sitme-modal-body {
    padding: 28px 24px 32px;
  }

  .sitme-modal-body.split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sitme-modal-section {
    padding-left: 14px;
  }

  .sitme-modal-aside {
    position: static;
    padding: 22px;
  }
}

.feature-solution-visual .solution-visual-badge {
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 8px;
  align-self: start;
  justify-self: start;
  white-space: normal;
}

/* Logo carousel spacing and lightweight team profiles */
.supporting-set {
  gap: 46px;
}

.supporting-card {
  flex: 0 0 180px;
  min-height: 72px;
  padding: 6px 18px;
}

.supporting-card img {
  display: block;
  max-width: 160px;
  max-height: 54px;
  object-fit: contain;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  align-items: start;
}

.team-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.team-card:hover {
  transform: none;
  box-shadow: none;
}

.team-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(13, 35, 71, 0.16);
}

.team-bio {
  max-width: 28ch;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.58;
}

.team-person {
  padding-top: 0;
}

.team-person strong {
  font-size: 1rem;
}

.team-person span {
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }
}

@media (max-width: 760px) {
  .supporting-set {
    gap: 28px;
  }

  .supporting-card {
    flex-basis: 132px;
  }

  .supporting-card img {
    max-width: 122px;
    max-height: 44px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .team-card {
    max-width: 360px;
    margin-inline: auto;
  }
}

/* Professional footer and logo strip refinement */
.supporting-card {
  flex-basis: 170px;
  min-height: 78px;
  padding: 8px 18px;
  display: grid;
  place-items: center;
}

.supporting-card img {
  max-height: 56px;
  max-width: 150px;
}

.supporting-card span {
  display: none;
}

.footer {
  padding: 54px 0 26px;
  background:
    linear-gradient(135deg, rgba(8, 31, 66, 0.98), rgba(22, 88, 147, 0.98)),
    radial-gradient(circle at 90% 10%, rgba(45, 169, 221, 0.24), transparent 34%);
}

.footer-content {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 80px;
}

.footer-brand {
  max-width: 560px;
}

.footer-logo {
  width: min(214px, 68vw);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 1.02rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.footer-brand span {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-badges {
  margin-top: 22px;
}

.footer-badges span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

.footer-compact {
  justify-items: stretch;
  text-align: left;
}

.footer-kicker {
  justify-self: end;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-group {
  justify-items: end;
  gap: 14px;
}

.footer-group-label {
  color: rgba(255, 255, 255, 0.56);
}

.footer-links-compact {
  gap: 10px 18px;
}

.footer-links-compact a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 750;
}

.footer-actions {
  justify-content: flex-end;
  gap: 12px;
}

.footer-contact-link {
  min-height: 44px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
}

.footer-social {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact-link:hover,
.footer-social:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-note {
  margin-top: 34px;
  padding-top: 20px;
  border-top-color: rgba(255, 255, 255, 0.16);
}

.footer-note p {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-kicker,
  .footer-group,
  .footer-compact {
    justify-items: start;
  }

  .footer-actions,
  .footer-links-compact,
  .footer-social-list {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .footer {
    padding: 42px 0 24px;
  }

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

  .footer-note {
    gap: 8px;
  }

  .supporting-card {
    flex-basis: 132px;
    min-height: 70px;
  }

  .supporting-card img {
    max-width: 120px;
    max-height: 48px;
  }
}

.responsible-copy p + p {
  margin-top: 2px;
}

.responsible-visual {
  min-height: 0;
}

.responsible-visual img {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.responsible-caption strong {
  font-size: 1rem;
}

.responsible-caption span {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.5;
}

.audience-section {
  background: #ffffff;
}

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

.audience-card,
.product-flow-card,
.trust-card {
  min-width: 0;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.audience-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border-radius: 24px;
}

.audience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface);
}

.audience-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.audience-card span,
.product-flow-card span,
.trust-card span {
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card h3,
.product-flow-card h3,
.trust-card h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 1.08rem;
  line-height: 1.22;
}

.audience-card p,
.product-flow-card p,
.trust-card p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.94rem;
  line-height: 1.55;
}

.product-flow-section {
  background: #ffffff;
}

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

.product-flow-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border-radius: 24px;
}

.product-flow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--lavender);
}

.product-flow-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.trust-section {
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.trust-copy {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 116px;
}

.trust-copy > span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.trust-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

.trust-copy p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.trust-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.security-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.security-item img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
}

.security-item strong {
  display: block;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.security-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  line-height: 1.38;
}

.mia-section {
  background: #ffffff;
}

.mia-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.mia-copy {
  display: grid;
  gap: 16px;
}

.mia-copy > span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.mia-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0;
}

.mia-copy p {
  color: var(--muted-foreground);
  font-size: 1.02rem;
  max-width: 62ch;
}

.mia-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.mia-question {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  border-radius: 999px;
  padding: 11px 14px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mia-question:hover,
.mia-question.active {
  transform: translateY(-2px);
  border-color: rgba(31, 83, 169, 0.3);
  background: var(--primary);
  color: var(--primary-foreground);
}

.mia-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), hsl(214, 70%, 99%));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mia-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mia-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid rgba(31, 83, 169, 0.16);
  box-shadow: 0 16px 32px rgba(31, 83, 169, 0.18);
  overflow: hidden;
}

.mia-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mia-header strong {
  display: block;
  color: var(--foreground);
  font-size: 1.08rem;
}

.mia-header span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.mia-chat {
  display: grid;
  gap: 14px;
}

.mia-message {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 20px;
  line-height: 1.58;
  font-size: 0.96rem;
}

.mia-message.user {
  justify-self: end;
  background: var(--primary);
  color: var(--primary-foreground);
  border-bottom-right-radius: 6px;
}

.mia-message.bot {
  justify-self: start;
  background: var(--surface);
  color: var(--foreground);
  border: 1px solid rgba(31, 83, 169, 0.12);
  border-bottom-left-radius: 6px;
}

.mia-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.mia-footer a {
  color: var(--primary);
  font-weight: 800;
}

.responsible-section .responsible-copy {
  align-self: start;
}

.logo-image {
  cursor: pointer;
}

.hero-image {
  cursor: default;
}

.process-stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  padding-top: 18px;
}

.process-stepper::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 49px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), hsl(214, 30%, 82%), var(--border));
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 10px;
}

.process-node {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--card);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(24, 46, 84, 0.08);
}

.process-step h3 {
  font-size: 1.05rem;
  margin-top: 10px;
}

.process-step p {
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 210px;
}

.process-meta {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-top: 4px;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.process-pill.time {
  background: rgba(16, 185, 129, 0.12);
  color: #2f7d46;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.process-pill.label {
  background: var(--surface);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.impact {
  background: linear-gradient(180deg, hsl(214, 60%, 97%), hsl(214, 45%, 94%));
}

.testimonials-section,
.team-section {
  background: linear-gradient(180deg, hsl(214, 75%, 96%), hsl(214, 55%, 99%));
}

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

.testimonial-card,
.team-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 28px 24px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), hsl(214, 70%, 99%));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-photo,
.team-photo {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid rgba(31, 83, 169, 0.16);
  box-shadow: 0 12px 26px rgba(33, 77, 156, 0.12);
  display: block;
}

.testimonial-quote,
.team-bio {
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.72;
  text-align: center;
  max-width: 34ch;
}

.testimonial-person,
.team-person {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding-top: 2px;
  text-align: center;
}

.testimonial-person strong,
.team-person strong {
  display: block;
  color: var(--foreground);
  font-size: 0.96rem;
  margin-bottom: 3px;
}

.testimonial-person span,
.team-person span {
  color: var(--muted-foreground);
  font-size: 0.86rem;
  line-height: 1.4;
}

.supporting-entities {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.supporting-entities-header {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.supporting-entities-header span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.supporting-entities-header p {
  color: var(--muted-foreground);
  font-size: 0.98rem;
  line-height: 1.55;
}

.supporting-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
}

.supporting-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.supporting-set {
  display: flex;
  gap: 18px;
  align-items: center;
}

.supporting-card {
  flex: 0 0 220px;
  min-height: 160px;
  padding: 18px 20px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
}

.supporting-card img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

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

.kpi {
  background: linear-gradient(180deg, var(--card), hsl(215, 40%, 99%));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.kpi:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: hsl(214, 30%, 78%);
}

.kpi::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.kpi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kpi-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.kpi-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border);
}

.kpi-icon svg {
  width: 20px;
  height: 20px;
}

.kpi-value {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  white-space: nowrap;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--foreground);
}

.kpi-number {
  font-weight: 800;
}

.kpi-unit {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0;
}

.kpi p {
  color: var(--muted-foreground);
  line-height: 1.55;
  margin: 0;
  max-width: 22ch;
}

.kpi-bar {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--muted);
  margin-top: auto;
}

.kpi-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.8s ease;
}

.kpi.in-view .kpi-bar span {
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.plan-highlight article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--surface));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.plan-highlight strong {
  display: block;
  font-size: 0.98rem;
  color: var(--foreground);
  margin-bottom: 8px;
}

.plan-highlight p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.55;
}

.price-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--card));
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border: 1px solid rgba(31, 83, 169, 0.28);
  background: linear-gradient(180deg, rgba(238, 245, 255, 0.82), rgba(255, 255, 255, 0.98));
  transform: none;
  box-shadow: 0 26px 60px rgba(26, 61, 120, 0.12);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.plan-tag {
  width: fit-content;
  background: linear-gradient(135deg, rgba(31, 83, 169, 0.12), rgba(59, 130, 246, 0.18));
  color: var(--primary);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.price-card-top {
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 1.48rem;
  margin-bottom: 12px;
}

.price-card p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  line-height: 1.6;
}

.price {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.price span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.plan-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.price-card li {
  color: var(--muted-foreground);
  display: flex;
  gap: 8px;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.price-card .btn.full {
  margin-top: auto;
}

.plan-footer {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(31, 83, 169, 0.08), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.plan-footer p {
  color: var(--muted-foreground);
  line-height: 1.65;
}

.badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.badges-grid span {
  background: var(--surface);
  border: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--foreground);
}

.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--background), var(--surface));
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  color: var(--white);
  border-radius: 38px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 26px 70px rgba(24, 46, 84, 0.14);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.cta-box p {
  color: hsla(0, 0%, 100%, 0.92);
  max-width: 720px;
  margin: 0 auto;
}

.cta-actions {
  margin-top: 30px;
  justify-content: center;
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #113b78 0%, #1f4f9b 52%, #2f6fcb 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 42px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.footer-logo {
  display: block;
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-column p,
.footer-note p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-brand span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  line-height: 1;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-compact {
  justify-items: end;
  gap: 18px;
  text-align: right;
}

.footer-group {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-group-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links-compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.footer-links-compact a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: 0.9rem;
  line-height: 1.2;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 0;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact-link,
.footer-social {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-contact-link {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-social {
  width: 40px;
  height: 40px;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-contact-link svg,
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-note {
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: none;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 38px rgba(18, 88, 42, 0.28);
  display: grid;
  place-items: center;
  z-index: 260;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 46px rgba(18, 88, 42, 0.34);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-content {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .logo-image {
    height: 42px;
    max-width: 160px;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    transform: translateY(-12px);
    transform-origin: top;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 10px 14px;
    white-space: nowrap;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    margin: 0;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    transition: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 14px;
  }

  .btn.nav-contact {
    min-width: 0;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .btn.nav-contact.nav-contact-desktop {
    display: none;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .section {
    padding: 75px 0;
  }

  .cta-box {
    padding: 46px 28px;
  }

  .testimonial-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .testimonial-card,
  .team-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .testimonial-quote,
  .team-bio {
    max-width: 32ch;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .footer {
    padding: 44px 0 24px;
  }

  .footer-note {
    gap: 16px;
  }

  .hero-grid,
  .solution-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-highlight {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    max-width: 100%;
    min-height: 460px;
  }

  .hero-visual {
    margin-left: 0;
  }

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

  .solution-visual img {
    min-height: 460px;
  }

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

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

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

  .trust-copy {
    position: static;
  }

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

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

  .responsible-visual img {
    aspect-ratio: 1 / 1;
  }

  .cards-grid,
  .cards-grid.compact,
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .process-stepper::before {
    left: 14px;
    right: 14px;
    top: 49px;
  }

  .process-stepper::after {
    left: 14px;
    right: 14px;
    top: 49px;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-compact {
    justify-items: start;
    text-align: left;
  }

  .footer-group {
    justify-items: start;
  }

  .footer-links-compact,
  .footer-social-list,
  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-content {
    min-height: 78px;
  }

  .logo-image {
    height: 38px;
    max-width: 140px;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    transform: translateY(-12px);
    transform-origin: top;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    margin: 0;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    transition: none;
  }

  .btn.nav-contact.nav-contact-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    letter-spacing: 0;
  }

  .hero-visual {
    margin-top: 12px;
  }

  .cards-grid,
  .cards-grid.compact,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 26px;
  }

  .price {
    font-size: 1.7rem;
  }

  .solution-kpis {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .product-flow-grid,
  .trust-cards,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .product-flow-card {
    grid-template-rows: 220px 1fr;
  }

  .solution-visual img {
    min-height: 360px;
  }

  .responsible-visual img {
    aspect-ratio: 1 / 1;
  }

  .mia-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .mia-quick-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mia-question {
    width: 100%;
    text-align: left;
    border-radius: 18px;
  }

  .mia-message {
    max-width: 94%;
  }

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

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

  .problem-card .card-media {
    height: 220px;
  }

  .supporting-card {
    flex-basis: 170px;
    min-height: 140px;
    padding: 16px;
    border-radius: 0;
  }

  .testimonials-section,
  .team-section {
    padding-block: 64px;
  }

  .testimonial-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card,
  .team-card {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding: 22px 18px;
    gap: 12px;
    border-radius: 20px;
  }

  .testimonial-photo,
  .team-photo {
    width: 76px;
    height: 76px;
  }

  .testimonial-quote,
  .team-bio {
    max-width: 30ch;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .testimonial-person strong,
  .team-person strong {
    font-size: 0.92rem;
  }

  .testimonial-person span,
  .team-person span {
    font-size: 0.82rem;
  }

  .kpi {
    min-height: 0;
  }

  .feature-variable-card strong {
    font-size: 1.05rem;
  }

  .feature-variable-card {
    min-height: 0;
  }

  .process-stepper {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
    justify-items: center;
  }

  .process-stepper::before {
    display: none;
  }

  .process-stepper::after {
    display: none;
  }

  .process-step {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-items: center;
    padding: 0;
  }

  .process-meta {
    justify-items: center;
  }

  .process-step p {
    max-width: 30ch;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-compact {
    justify-items: start;
    text-align: left;
  }

  .footer-group {
    justify-items: start;
  }

  .footer-links-compact,
  .footer-social-list,
  .footer-actions {
    justify-content: flex-start;
  }

  .cta-box {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .footer-logo {
    width: min(190px, 72vw);
  }

  .footer-note {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .supporting-entities {
    margin-top: 28px;
  }

  .supporting-card {
    flex-basis: 150px;
    height: 86px;
    padding: 12px 14px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .supporting-track {
    animation: none;
    transform: translateX(0);
  }
}

/* Professional landing refresh */
:root {
  --background: hsl(213, 45%, 97%);
  --surface: hsl(210, 52%, 94%);
  --foreground: hsl(215, 49%, 13%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(211, 88%, 29%);
  --primary-dark: hsl(214, 72%, 18%);
  --secondary: hsl(205, 82%, 38%);
  --accent: hsl(197, 86%, 48%);
  --brand-sky: hsl(192, 86%, 58%);
  --lavender: hsl(210, 68%, 94%);
  --muted: hsl(212, 36%, 92%);
  --muted-foreground: hsl(215, 21%, 42%);
  --border: hsl(213, 28%, 84%);
  --shadow: 0 28px 80px rgba(13, 35, 71, 0.14);
  --shadow-soft: 0 16px 48px rgba(13, 35, 71, 0.09);
}

* {
  letter-spacing: 0 !important;
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(44, 156, 220, 0.14), transparent 28%),
    linear-gradient(180deg, hsl(213, 52%, 98%) 0%, hsl(212, 44%, 95%) 48%, hsl(214, 40%, 96%) 100%);
}

.container {
  width: min(1200px, 91%);
}

.navbar {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 48px rgba(15, 37, 74, 0.08);
}

.nav-content {
  min-height: 78px;
}

.logo-image {
  height: 46px;
  max-width: 176px;
}

.nav-links,
.nav-dropdown-trigger,
.nav-links a,
.nav-dropdown-menu a {
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links {
  gap: 6px 14px;
}

.nav-links a,
.nav-dropdown-trigger {
  padding: 8px 4px;
}

.nav-dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(15, 37, 74, 0.16);
}

.btn {
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
}

.btn.primary,
.btn.nav-contact {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 52%, var(--secondary));
  box-shadow: 0 16px 34px rgba(20, 81, 151, 0.24);
}

.btn.secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(25, 91, 166, 0.18);
  box-shadow: 0 12px 28px rgba(15, 37, 74, 0.08);
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 32px 0 24px;
  background:
    linear-gradient(115deg, rgba(8, 31, 66, 0.96) 0%, rgba(17, 63, 121, 0.92) 48%, rgba(17, 119, 171, 0.76) 100%),
    url("assets/hero.png") center / cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(246, 249, 253, 0.98));
  pointer-events: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 36px;
  align-items: center;
  transform: translateY(-12px);
}

.hero-text {
  max-width: 760px;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.55vw, 3.35rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 620px;
}

.hero-note {
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  margin-top: 20px;
}

.hero-actions .btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(33, 77, 156, 0.25);
}

.hero-actions .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(33, 77, 156, 0.32);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  max-width: 700px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-visual.solution-visual {
  align-items: start;
  gap: 8px;
  padding: 9px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-visual img,
.solution-visual img {
  border-radius: 12px;
}

.hero-visual img {
  min-height: 0;
  height: min(34vh, 280px);
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.hero-visual .solution-visual-badge {
  padding: 8px 12px;
  font-size: 0.78rem;
  line-height: 1.2;
}

.hero-visual .solution-visual-caption {
  padding: 10px 12px;
  color: var(--foreground);
}

.hero-visual .solution-visual-caption strong {
  color: var(--primary-dark);
  font-size: 0.96rem;
}

.hero-visual .solution-visual-caption span {
  color: var(--muted-foreground);
  font-size: 0.86rem;
}

.solution-visual-caption,
.solution-visual-badge {
  border-radius: 8px;
}

.hero-visual .solution-visual-caption {
  background: rgba(255, 255, 255, 0.94);
  color: var(--foreground);
}

.section {
  padding: 108px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 245, 252, 0.88));
}

.section.alt,
.audience-section,
.product-flow-section,
.trust-section,
.mia-section {
  background: #ffffff;
}

main > .section::before,
main > .cta-section::before {
  height: 8px;
  background: linear-gradient(
    90deg,
    transparent 0 30%,
    var(--primary-dark) 30% 45%,
    var(--primary) 45% 74%,
    var(--brand-sky) 74% 100%
  );
}

.section-header {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-header span,
.solution-copy > span,
.responsible-copy > span,
.trust-copy > span,
.mia-copy > span,
.supporting-entities-header span {
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 900;
}

.section-header h2,
.solution-copy h2,
.responsible-copy h2,
.trust-copy h2,
.mia-copy h2,
.cta-box h2 {
  color: var(--foreground);
  line-height: 1.06;
}

.section-header p,
.solution-copy p,
.responsible-copy p,
.trust-copy p,
.mia-copy p {
  font-size: 1.06rem;
  color: var(--muted-foreground);
}

.problem-grid,
.audience-grid,
.product-flow-grid,
.kpi-grid,
.team-grid {
  gap: 18px;
}

.problem-card,
.audience-card,
.product-flow-card,
.trust-card,
.kpi,
.price-card,
.team-card,
.solution-kpi,
.tech-item,
.security-item,
.mia-panel,
.plan-footer {
  border-radius: 14px;
  border-color: rgba(148, 163, 184, 0.32);
  box-shadow: 0 14px 38px rgba(15, 37, 74, 0.08);
}

.problem-card:hover,
.audience-card:hover,
.product-flow-card:hover,
.trust-card:hover,
.kpi:hover,
.price-card:hover,
.team-card:hover,
.solution-kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(15, 37, 74, 0.14);
}

.problem-card .card-media,
.card-media,
.audience-card,
.product-flow-card {
  border-radius: 14px;
}

.problem-card .card-media {
  height: 230px;
  border-radius: 14px 14px 0 0;
}

.problem-card-content,
.audience-card div,
.product-flow-card div {
  padding: 22px;
}

.solution-grid {
  gap: 42px;
  align-items: center;
}

.solution-copy {
  gap: 16px;
}

.solution-kpis {
  gap: 14px;
  margin: 12px 0 4px;
}

.solution-kpi {
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, hsl(210, 60%, 98%));
}

.solution-kpi strong {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.solution-visual {
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), hsl(209, 72%, 96%));
}

.solution-visual::before {
  content: none;
}

.solution-visual img {
  min-height: 540px;
}

.process-stepper {
  gap: 16px;
}

.process-stepper::before {
  background: rgba(25, 91, 166, 0.16);
}

.process-stepper::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 49px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--brand-sky));
  transform: scaleX(0);
  transform-origin: left center;
  animation: process-line-scan 12s linear infinite;
}

.process-step {
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-node {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--card);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 10px 22px rgba(24, 46, 84, 0.08);
  transition: color 0.65s ease, border-color 0.65s ease, box-shadow 0.65s ease;
  animation: process-node-fill 12s linear infinite;
}

.process-step:nth-child(2) .process-node {
  animation-name: process-node-fill-2;
  animation-delay: 0s;
}

.process-step:nth-child(3) .process-node {
  animation-name: process-node-fill-3;
  animation-delay: 0s;
}

.process-step:nth-child(4) .process-node {
  animation-name: process-node-fill-4;
  animation-delay: 0s;
}

.process-step:nth-child(5) .process-node {
  animation-name: process-node-fill-5;
  animation-delay: 0s;
}

.process-pill {
  border-radius: 8px;
}

@keyframes process-line-scan {
  0%,
  10% {
    transform: scaleX(0);
  }

  94% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes process-node-fill {
  0%,
  4% {
    background-color: var(--card);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(24, 46, 84, 0.08);
  }

  7%,
  100% {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 14px 30px rgba(20, 81, 151, 0.2);
  }
}

@keyframes process-node-fill-2 {
  0%,
  26% {
    background-color: var(--card);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(24, 46, 84, 0.08);
  }

  29%,
  100% {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 14px 30px rgba(20, 81, 151, 0.2);
  }
}

@keyframes process-node-fill-3 {
  0%,
  47% {
    background-color: var(--card);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(24, 46, 84, 0.08);
  }

  50%,
  100% {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 14px 30px rgba(20, 81, 151, 0.2);
  }
}

@keyframes process-node-fill-4 {
  0%,
  68% {
    background-color: var(--card);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(24, 46, 84, 0.08);
  }

  71%,
  100% {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 14px 30px rgba(20, 81, 151, 0.2);
  }
}

@keyframes process-node-fill-5 {
  0%,
  89% {
    background-color: var(--card);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(24, 46, 84, 0.08);
  }

  92%,
  100% {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 14px 30px rgba(20, 81, 151, 0.2);
  }
}

.audience-card,
.product-flow-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card img,
.product-flow-card img {
  filter: saturate(0.95) contrast(1.02);
}

.kpi {
  background: linear-gradient(180deg, #ffffff, hsl(209, 56%, 98%));
}

.kpi::before {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--brand-sky));
}

.kpi-label,
.plan-tag {
  border-radius: 8px;
}

.kpi-icon {
  border-radius: 10px;
}

.kpi .kpi-status {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 154px;
  padding: 0 22px;
  border: 4px solid hsl(210, 55%, 94%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(10, 59, 111, 0.24);
}

.kpi .kpi-status::before {
  content: "";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 12 4 4 7-8'/%3E%3Cpath d='m13 12 4 4 4-5'/%3E%3C/svg%3E") center / 17px 17px no-repeat;
}

.kpi:has(.kpi-status) {
  overflow: visible;
  padding-top: 34px;
}

.supporting-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.supporting-card {
  min-height: 136px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
}

.trust-card {
  background: linear-gradient(180deg, #ffffff, hsl(210, 60%, 98%));
  min-height: 210px;
}

.team-card {
  align-content: start;
  background: #ffffff;
}

.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
}

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

.price-card {
  border-radius: 16px;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(25, 91, 166, 0.34);
  box-shadow: 0 28px 72px rgba(20, 81, 151, 0.16);
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--accent);
}

.responsible-section {
  background:
    linear-gradient(180deg, hsl(213, 48%, 97%), hsl(210, 55%, 94%));
}

.tech-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.tech-item img,
.security-item img {
  border-radius: 10px;
}

.mia-question {
  border-radius: 8px;
  box-shadow: none;
}

.mia-message {
  border-radius: 12px;
}

.cta-section {
  background:
    linear-gradient(180deg, hsl(210, 55%, 94%), hsl(214, 45%, 97%));
}

.cta-box {
  border-radius: 18px;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 31, 66, 0.96), rgba(18, 82, 150, 0.96)),
    url("assets/impacto.png") center / cover no-repeat;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
  margin-inline: 0;
}

.cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.footer {
  background: linear-gradient(135deg, hsl(214, 72%, 17%) 0%, hsl(211, 70%, 27%) 58%, hsl(201, 76%, 36%) 100%);
}

.whatsapp-float {
  width: 58px;
  height: 58px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 64px 0 56px;
  }

  .hero-grid,
  .solution-grid,
  .pricing-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    transform: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .solution-visual img {
    min-height: 0;
    height: auto;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-height: 780px) and (min-width: 981px) {
  .hero {
    min-height: calc(100vh - 78px);
    padding: 24px 0 22px;
  }

  .hero-grid {
    transform: translateY(-8px);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 3.35vw, 3.15rem);
    max-width: 720px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-proof {
    display: none;
  }

  .hero-visual img {
    height: min(32vh, 250px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-stepper::after,
  .process-node {
    animation: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .nav-content {
    min-height: 74px;
  }

  .nav-links {
    top: 74px;
  }

  .hero {
    padding: 48px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
  }

  .hero p {
    font-size: 1.04rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    padding: 15px;
  }

  .section {
    padding: 76px 0;
  }

  .problem-card .card-media,
  .audience-card,
  .product-flow-card {
    height: auto;
  }

  .solution-visual img,
  .hero-visual img {
    min-height: 320px;
  }

  .process-step {
    max-width: none;
  }

  .cta-box {
    padding: 34px 22px;
  }
}

/* Cleanup: no image modals, lighter institutional logos, cleaner contact CTA */
.problem-card,
.feature-card,
.solution-visual,
img {
  cursor: default;
}

.supporting-entities {
  margin-top: 42px;
}

.supporting-marquee {
  padding: 8px 0 4px;
}

.supporting-card {
  flex: 0 0 190px;
  min-height: 118px;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.supporting-card img {
  max-height: 62px;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.86;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.supporting-card:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

.supporting-card span {
  color: hsl(215, 30%, 24%);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.32;
}

.cta-section {
  padding: 86px 0;
  background: linear-gradient(180deg, hsl(210, 55%, 94%), hsl(214, 48%, 97%));
}

.cta-box {
  display: block;
  max-width: 1060px;
  padding: 52px 56px;
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(8, 31, 66, 0.94), rgba(20, 89, 158, 0.9)),
    url("assets/impacto.png") center / cover no-repeat;
  box-shadow: 0 28px 74px rgba(13, 35, 71, 0.18);
}

.cta-box h2 {
  max-width: 780px;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.08;
}

.cta-box p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.cta-actions .btn {
  min-width: 180px;
}

.cta-actions .btn.primary {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.cta-actions .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn.light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.cta-actions .btn.light:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

@media (max-width: 760px) {
  .cta-section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 36px 22px;
    text-align: left;
  }

  .cta-box h2,
  .cta-box p {
    margin-inline: 0;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .supporting-card {
    flex-basis: 150px;
    min-height: 104px;
  }
}

/* Final overrides for clean partner logos and non-card team layout */
.supporting-track {
  overflow: visible;
}

.supporting-set {
  gap: 56px;
}

.supporting-card {
  flex: 0 0 190px;
  width: 190px;
  min-height: 76px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.supporting-card img {
  display: block;
  width: auto;
  max-width: 158px;
  max-height: 52px;
  object-fit: contain;
}

.supporting-card span {
  display: none;
}

.team-section .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.team-section .team-card {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.team-section .team-card:hover {
  transform: none;
  box-shadow: none;
}

.team-section .team-photo {
  width: 136px;
  height: 136px;
  border-radius: 50%;
}

.team-section .team-bio {
  max-width: 29ch;
  color: var(--muted-foreground);
}

@media (max-width: 980px) {
  .team-section .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .supporting-set {
    gap: 34px;
  }

  .supporting-card {
    flex-basis: 138px;
    width: 138px;
    min-height: 64px;
    padding: 0 10px;
  }

  .supporting-card img {
    max-width: 122px;
    max-height: 44px;
  }

  .team-section .team-grid {
    grid-template-columns: 1fr;
  }
}
