:root {
  --blue: #0A4C78;
  --blue-dark: #073A5C;
  --blue-soft: #E8F3FA;
  --accent: #00B4D8;
  --accent-dark: #0096C7;
  --green: #06D6A0;
  --danger: #E11D48;
  --danger-soft: #FFF1F2;
  --warning: #F59E0B;
  --warning-soft: #FFFBEB;
  --bg: #FFFFFF;
  --bg-soft: #F1F5F9;
  --text: #1E293B;
  --muted: #64748B;
  --line: #E2E8F0;
  --shadow: 0 18px 48px rgba(15, 23, 42, .10);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, .07);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 88px;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
section { scroll-margin-top: 88px; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(226, 232, 240, .86);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}

.brand img { height: 62px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}

.nav a:hover { color: var(--blue); background: var(--blue-soft); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 12px 28px rgba(0, 180, 216, .26); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { color: var(--blue); background: #fff; border-color: rgba(10, 76, 120, .22); }
.btn-secondary:hover { border-color: var(--accent); box-shadow: var(--shadow-soft); }
.btn-light { color: #fff; border-color: rgba(255, 255, 255, .55); background: transparent; }
.btn-light:hover { background: rgba(255,255,255,.10); }
.hero-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: #0B4F78;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-link:hover {
  color: var(--accent-dark);
}

.topbar .btn { min-height: 42px; padding: 0 16px; }

.eyebrow {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, .15);
}

.eyebrow.light { color: #fff; background: rgba(255,255,255,.13); }
h1, h2, h3 {
  margin: 0;
  color: var(--text);
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: 0;
}

h1 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.03; }
h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08; }
h3 { font-size: clamp(19px, 2vw, 24px); line-height: 1.18; }
p { color: var(--muted); line-height: 1.65; margin: 0; }

.hero {
  position: relative;
  padding: 40px 0 44px;
  background:
    linear-gradient(135deg, rgba(241,245,249,.78) 0%, rgba(255,255,255,.95) 48%, rgba(232,243,250,.82) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,76,120,.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10,76,120,.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  position: relative;
  display: grid;
  gap: 19px;
  align-content: center;
  transform: translateY(-12px);
}

.hero-title {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.hero-title > span {
  display: block;
  color: #334155;
  font-size: clamp(25px, 2.62vw, 34px);
  font-weight: 800;
  line-height: 1.06;
}

.hero-title strong {
  display: block;
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(32px, 3.45vw, 46px);
  font-weight: 900;
  line-height: 1.02;
}

.hero-title strong span {
  display: block;
}

.hero-copy p { color: #4B5F78; font-size: 18px; max-width: 660px; line-height: 1.55; }
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-actions .btn-primary {
  min-height: 52px;
  padding-inline: 26px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 180, 216, .30);
}

.trust-strip {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 28px;
  margin-top: 20px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  align-items: center;
}

@media (min-width: 641px) {
  .trust-strip {
    font-size: 15.5px;
  }
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 0;
  white-space: nowrap;
}

.trust-strip span::before {
  content: "✓";
  color: var(--green);
  font-size: .86em;
  font-weight: 900;
}

.trust-strip span:not(:last-child)::after {
  content: "•";
  margin: 0 14px;
  color: #CBD5E1;
}

.trust-strip span:not(:last-child)::after {
  content: none;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  justify-items: center;
  transform: translateX(-24px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px 18px 22px 36px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0,180,216,.08), rgba(10,76,120,.035));
  pointer-events: none;
}

.executive-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  min-height: 382px;
  padding: 28px;
  border: 1px solid rgba(10, 76, 120, .13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FBFD 100%);
  box-shadow: 0 20px 45px rgba(11, 79, 120, .10);
}

.executive-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.executive-head {
  margin-top: 22px;
}

.executive-title {
  color: var(--text);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 28px;
  line-height: 1.08;
}

.executive-head p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.executive-main-metric {
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(0, 180, 216, .22);
  border-radius: 14px;
  background: linear-gradient(135deg, #ECFEFF 0%, #FFFFFF 100%);
}

.executive-main-metric span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.executive-main-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font: 900 45px/1 Manrope, Inter, sans-serif;
}

.executive-main-metric small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.executive-indicators div {
  min-width: 0;
  padding: 0;
}

.executive-indicators strong {
  display: block;
  color: var(--text);
  font: 900 22px/1 Manrope, Inter, sans-serif;
  white-space: nowrap;
}

.executive-indicators span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.executive-chart {
  position: relative;
  height: 92px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.executive-bars {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
}

.executive-bars span {
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--accent), var(--blue));
  opacity: .88;
}

.dashboard-window {
  position: absolute;
  inset: 16px 18px 28px 0;
  border: 1px solid rgba(10,76,120,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--line);
}

.dashboard-top span { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.dashboard-top strong { margin-left: 12px; color: var(--muted); font-size: 12px; }
.dashboard-body { display: grid; grid-template-columns: 78px 1fr; min-height: 430px; }
.dashboard-side {
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: start;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
}

.dashboard-side img { width: 44px; height: 44px; border-radius: 8px; background: #fff; padding: 5px; }
.dashboard-side i { height: 34px; border-radius: 8px; background: rgba(255,255,255,.16); }
.dashboard-side i:nth-of-type(1) { background: var(--accent); }
.dashboard-main { padding: 24px; display: grid; gap: 18px; background: linear-gradient(180deg,#fff,#F8FAFC); }
.dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.dashboard-heading small { display: block; color: var(--muted); font-weight: 700; }
.dashboard-heading strong { font: 800 28px/1.05 Manrope, Inter, sans-serif; color: var(--text); }
.dashboard-heading strong span { display: block; }
.dashboard-heading em {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  line-height: 1.15;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.dashboard-heading em small {
  margin-top: 3px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.kpi-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.kpi-row small { display: block; color: var(--muted); font-weight: 700; }
.kpi-row strong { display: block; margin-top: 7px; font: 800 25px/1 Manrope, Inter, sans-serif; color: var(--text); }
.kpi-row .kpi-opportunity {
  border-color: rgba(0, 180, 216, .32);
  background: #ECFEFF;
}

.kpi-row .kpi-opportunity strong {
  color: var(--blue);
}

.chart-card {
  height: 214px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 14px;
}

.chart-card span {
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--accent), var(--blue));
}

.chart-card span:nth-child(3) { background: linear-gradient(180deg, var(--accent), var(--blue)); }
.chart-card span:last-child { background: linear-gradient(180deg, var(--green), #059669); }
.floating-kpi {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 188px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.floating-kpi small { color: var(--muted); font-weight: 800; }
.floating-kpi strong { display: block; margin: 8px 0 4px; color: var(--blue); font: 800 34px/1 Manrope, Inter, sans-serif; }
.floating-kpi span { color: var(--muted); font-size: 13px; font-weight: 700; }
.growth-chip {
  position: absolute;
  left: 12px;
  top: 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--blue);
  font-weight: 900;
}

.section { padding: 94px 0; }
.section-soft { background: var(--bg-soft); }
.section-head {
  max-width: 890px;
  margin-bottom: 34px;
  display: grid;
  gap: 14px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.section-head p { font-size: 17px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(0, 180, 216, .30);
  box-shadow: var(--shadow-soft);
}

.card.pad { padding: 28px; }
.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 24px;
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 15.5px; }
.closing-note {
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

#problemas,
#solucoes,
#modelos,
#sustentacao-e-evolucao,
#como-funciona,
#cases,
#setores,
#contato {
  scroll-margin-top: 88px;
}

.diagnostico-section {
  padding: 64px 0 88px;
}

#solucoes {
  padding-top: 72px;
  background: linear-gradient(180deg, #F4FAFD 0%, #FFFFFF 85%);
}

#solucoes .section-head h2 {
  max-width: 980px;
  font-size: clamp(36px, 3.1vw, 48px);
  line-height: 1.08;
}

.diagnostico-head {
  max-width: 940px;
  margin-bottom: 0;
}

.diagnostico-title {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.diagnostico-title span {
  color: var(--blue);
}

.diagnostico-copy {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.diagnostico-copy p {
  color: #4B5F78;
  font-size: 18px;
  line-height: 1.65;
}

.problem-grid {
  margin-top: 36px;
  gap: 18px;
}

.problem-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .35);
  box-shadow: 0 18px 40px rgba(11, 79, 120, .10);
}

.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #EAF8FC;
  color: var(--accent);
}

.problem-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  margin-bottom: 11px;
}

.problem-card p {
  font-size: 15.5px;
  line-height: 1.62;
}

.diagnostico-alert {
  margin-top: 28px;
  width: 100%;
  padding: 22px 28px;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(0,180,216,.08), rgba(255,255,255,.95));
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.58;
  box-shadow: 0 10px 26px rgba(11, 79, 120, .06);
}

.format-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.solution-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid rgba(0, 180, 216, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11, 79, 120, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.format-card {
  position: relative;
  min-height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-color: rgba(11, 79, 120, .12);
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .35);
  box-shadow: 0 18px 40px rgba(11, 79, 120, .10);
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .32);
  box-shadow: 0 18px 42px rgba(11, 79, 120, .10);
}

.solution-card h3,
.format-card h3 {
  margin-bottom: 11px;
}

.solution-card p,
.format-card p {
  font-size: 15.5px;
  line-height: 1.62;
}

.format-card .check-list {
  margin-bottom: 22px;
}

.format-card .pain-line {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}

.format-card .solution-line {
  color: #4B5F78;
}

.format-card .text-link {
  margin-top: auto;
}

.format-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audience-card {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.audience-card .icon { width: 58px; height: 58px; font-size: 28px; }
.check-list { display: grid; gap: 10px; margin: 22px 0; }
.check-list span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.check-list span::before { content: "✓"; color: var(--green); font-weight: 900; }
.text-link {
  width: max-content;
  color: var(--blue);
  font-weight: 900;
  margin-top: auto;
  border-bottom: 2px solid rgba(0,180,216,.35);
}

.section-cta {
  margin-top: 24px;
}

.section-cta .text-link {
  font-weight: 800;
}

#modelos .grid-2 {
  margin-top: 44px;
}

#solucoes .btn-secondary {
  padding: 14px 22px;
}

.benefit-card { min-height: 320px; }
.sustentacao-highlight {
  background:
    linear-gradient(135deg, rgba(10,76,120,.98), rgba(7,58,92,.96));
  color: #fff;
}

.sustentacao-highlight .split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.sustentacao-copy {
  max-width: 560px;
}

.sustentacao-copy .eyebrow {
  margin-bottom: 18px;
}

.sustentacao-highlight h2,
.sustentacao-highlight p { color: #fff; }
.sustentacao-highlight p {
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.55;
}
.sustentacao-checklist {
  margin-top: 24px;
  gap: 12px;
}
.sustentacao-highlight .check-list span { color: #fff; }
.sustentacao-checklist span { font-weight: 700; }
.sustentacao-shot {
  position: relative;
  min-height: 400px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.20);
  transform: scale(.93);
  transform-origin: center right;
}

.sustentacao-shot .dashboard-window {
  inset: 18px 28px 24px;
  transform: none;
  box-shadow: none;
}

.sustentacao-shot .chart-card {
  height: 198px;
  padding: 16px;
}

.phone-preview {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 138px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.phone-preview strong { display: block; color: var(--blue); font: 800 24px/1 Manrope, Inter, sans-serif; }
.phone-preview span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; font-weight: 800; }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,.38), transparent);
}

.step {
  position: relative;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(11, 79, 120, .12);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  z-index: 1;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .32);
  box-shadow: 0 18px 42px rgba(11, 79, 120, .10);
}

.step span {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 22px;
}

.process-note {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 22px 28px;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(0,180,216,.08), rgba(255,255,255,.96));
  text-align: center;
  color: var(--text);
  font-weight: 800;
  line-height: 1.55;
}

.tech-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tech-section .section-head h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.tech-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.tech-card {
  padding: 28px;
  border: 1px solid rgba(11, 79, 120, .12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11, 79, 120, .04);
  background: #F8FAFC;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .32);
  box-shadow: 0 18px 42px rgba(11, 79, 120, .10);
}

.tech-card h3 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: 20px;
}

.tech-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.tech-note {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 22px 28px;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(0,180,216,.08), rgba(255,255,255,.96));
  color: var(--text);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.differential-card {
  padding: 28px;
  border: 1px solid rgba(11, 79, 120, .12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11, 79, 120, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.differential-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .32);
  box-shadow: 0 18px 42px rgba(11, 79, 120, .10);
}
.case-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.case-meta {
  display: inline-flex;
  max-width: 560px;
  margin: 18px 0 22px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.case-note {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.case-columns { display: grid; gap: 20px; }
.case-block h3 { margin-bottom: 8px; font-size: 20px; }
.case-results h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.result-list { display: grid; gap: 12px; }
.case-result {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #F8FAFC;
}

.case-result strong {
  display: block;
  color: var(--blue);
  font: 900 24px/1.1 Manrope, Inter, sans-serif;
}

.case-result span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.result-list > span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #F8FAFC;
  color: var(--text);
  font-weight: 800;
  line-height: 1.45;
}

blockquote {
  margin: 18px 0 0;
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: var(--blue-soft);
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

blockquote cite { display: block; margin-top: 12px; color: var(--blue); font-style: normal; font-weight: 900; }
.sector-card {
  min-height: 210px;
  padding: 28px;
}

#setores .section-head h2 {
  max-width: 820px;
  font-size: clamp(38px, 3.4vw, 52px);
}

.sector-note {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 22px 28px;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(0,180,216,.08), rgba(255,255,255,.96));
  color: var(--text);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.final-cta {
  padding: 96px 0 72px;
  background: var(--blue);
  color: #fff;
}

.final-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.final-box h2,
.final-box p { color: #fff; }
.final-box p { color: rgba(255,255,255,.86); font-size: 18px; }
.cta-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
}

.cta-panel h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.cta-panel ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}

.cta-panel li {
  margin-bottom: 8px;
}

.final-cta .btn-primary {
  min-height: 52px;
  padding: 0 28px;
}

.final-small { margin-top: 16px; color: rgba(255,255,255,.72); font-size: 14px; }

.footer {
  padding: 52px 0 28px;
  background: #F8FAFC;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr 1fr 1fr;
  gap: 28px;
}

.footer img { height: 56px; width: auto; margin-bottom: 16px; }
.footer p, .footer a, .footer span { color: var(--muted); line-height: 1.55; font-size: 14px; }
.footer-col { display: grid; gap: 9px; align-content: start; }
.footer strong { color: var(--text); margin-bottom: 4px; }
.footer a:hover { color: var(--blue); }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 36px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 36px rgba(37, 211, 102, .35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

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

.whatsapp-float.is-near-footer {
  bottom: 92px;
}

.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 180, 216, .45);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .sustentacao-highlight .split,
  .case-card,
  .final-box { grid-template-columns: 1fr; }
  .grid-4, .grid-5, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .tech-groups { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 500px; }
  .sustentacao-shot { transform: none; }
  .topbar .btn { display: none; }
}

@media (max-width: 860px) {
  body { padding-top: 76px; }
  .topbar-inner { position: relative; min-height: 76px; }
  .brand img { height: 48px; }
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 13px 14px; background: #fff; border: 1px solid var(--line); }
  .grid-3, .grid-4, .grid-5, .steps { grid-template-columns: 1fr; }
  .tech-groups { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { padding: 48px 0; }
}

@media (max-width: 640px) {
  section { scroll-margin-top: 76px; }
  #problemas,
  #solucoes,
  #modelos,
  #sustentacao-e-evolucao,
  #como-funciona,
  #cases,
  #setores,
  #contato {
    scroll-margin-top: 76px;
  }
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: 35px; }
  h2 { font-size: 29px; }
  .hero-copy p, .section-head p, .final-box p { font-size: 16px; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; min-height: 50px; }
  .hero-visual { min-height: 450px; }
  .dashboard-window { inset: 28px 0 54px; border-radius: 14px; }
  .dashboard-body { grid-template-columns: 54px 1fr; }
  .dashboard-side { padding: 10px; }
  .dashboard-side img { width: 34px; height: 34px; }
  .dashboard-main { padding: 15px; gap: 12px; }
  .dashboard-heading { display: grid; }
  .dashboard-heading strong { font-size: 22px; }
  .kpi-row { grid-template-columns: 1fr; gap: 9px; }
  .kpi-row div { padding: 11px; }
  .kpi-row strong { font-size: 20px; }
  .chart-card { height: 128px; gap: 8px; padding: 12px; }
  .floating-kpi { right: 8px; width: 148px; padding: 14px; }
  .floating-kpi strong { font-size: 25px; }
  .card.pad, .case-card, .cta-panel { padding: 22px; }
  .diagnostico-section { padding: 54px 0 68px; }
  #solucoes { padding-top: 58px; }
  #solucoes .section-head h2 { font-size: clamp(29px, 8vw, 36px); }
  .diagnostico-title { font-size: clamp(29px, 8vw, 36px); }
  .diagnostico-copy p { font-size: 16px; }
  .problem-grid { margin-top: 28px; gap: 14px; }
  .problem-card { min-height: auto; padding: 22px; }
  .solution-card,
  .format-card { min-height: auto; padding: 22px; }
  .diagnostico-alert { padding: 22px; font-size: 16px; border-radius: 12px; }
  .sustentacao-highlight .section { padding: 64px 0; }
  .sustentacao-shot { min-height: 360px; }
  .sustentacao-shot .dashboard-window { inset: 18px 12px 42px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 18px; bottom: 22px; width: 52px; height: 52px; }
  .whatsapp-float.is-near-footer { bottom: 96px; }
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 0 34px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    gap: 16px;
    transform: none;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    width: auto;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero h1 {
    font-size: clamp(30px, 8.4vw, 35px);
    line-height: 1.06;
  }

  .hero-title {
    gap: 5px;
  }

  .hero-title > span {
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.08;
  }

  .hero-title strong {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .hero-link {
    min-height: 34px;
    justify-content: center;
    font-size: 14px;
  }

  .trust-strip {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    font-size: 13px;
  }

  .trust-strip span {
    width: auto;
    max-width: none;
    padding: 0;
    line-height: 1.25;
    white-space: normal;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .trust-strip span:not(:last-child)::after {
    content: none;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 10px;
    transform: none;
    justify-items: stretch;
  }

  .hero-visual::before {
    display: none;
  }

  .executive-card {
    width: 100%;
    min-height: auto;
    padding: 20px;
    border-radius: 14px;
  }

  .executive-head {
    margin-top: 16px;
  }

  .executive-title {
    font-size: 24px;
  }

  .executive-main-metric {
    margin-top: 18px;
    padding: 17px;
  }

  .executive-main-metric strong {
    font-size: 40px;
  }

  .executive-indicators {
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
  }

  .executive-indicators div:last-child {
    grid-column: 1 / -1;
  }

  .executive-chart {
    height: 82px;
    margin-top: 18px;
  }

  .executive-bars {
    width: 100%;
    height: 66px;
    gap: 7px;
  }

  .hero .growth-chip,
  .hero .floating-kpi {
    position: static;
    width: 100%;
    border-radius: 8px;
  }

  .hero .growth-chip {
    justify-self: start;
    width: max-content;
    max-width: 100%;
    padding: 10px 12px;
  }

  .hero .dashboard-window {
    position: relative;
    inset: auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .hero .dashboard-top {
    height: 42px;
    padding: 0 12px;
  }

  .hero .dashboard-top strong {
    margin-left: 6px;
    font-size: 11px;
  }

  .hero .dashboard-body {
    display: block;
    min-height: 0;
  }

  .hero .dashboard-side {
    display: none;
  }

  .hero .dashboard-main {
    padding: 14px;
    gap: 12px;
  }

  .hero .dashboard-heading {
    display: grid;
    gap: 8px;
  }

  .hero .dashboard-heading strong {
    font-size: 21px;
  }

  .hero .dashboard-heading em {
    width: max-content;
    max-width: 100%;
    padding: 7px 9px;
  }

  .hero .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero .kpi-row div {
    min-width: 0;
    padding: 10px;
  }

  .hero .kpi-row div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero .kpi-row small {
    font-size: 12px;
  }

  .hero .kpi-row strong {
    font-size: 19px;
    white-space: nowrap;
  }

  .hero .chart-card {
    height: 104px;
    padding: 10px;
    gap: 7px;
  }

  .hero .floating-kpi {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 12px;
    padding: 13px 14px;
  }

  .hero .floating-kpi small {
    grid-column: 1 / -1;
  }

  .hero .floating-kpi strong {
    margin: 0;
    font-size: 24px;
  }

  .hero .floating-kpi span {
    text-align: right;
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE HARDENING — AutoControl Home
   ========================================================= */

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: break-word;
}

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

@media (max-width: 900px) {
  body { padding-top: 76px; }

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

  .brand img {
    max-width: 150px;
    height: auto;
  }

  .topbar .btn {
    display: inline-flex;
    min-height: 44px;
    padding: 0 16px;
    white-space: nowrap;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .topbar-inner {
    gap: 8px;
  }

  .brand img {
    max-width: 132px;
  }

  .topbar .btn {
    padding: 0 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head.center {
    text-align: left;
    justify-items: start;
  }

  h1,
  .hero-title strong {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  h2,
  .section-head h2 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  h3 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.12;
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.62;
  }
}

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

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual,
  .report-card {
    width: 100%;
    max-width: 560px;
    margin: 32px auto 0;
    transform: none !important;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .text-link,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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

@media (max-width: 640px) {
  .grid-4,
  .problem-grid,
  .tech-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .problem-card,
  .benefit-card,
  .format-card,
  .tech-card,
  .differential-card,
  .sector-card,
  .step {
    padding: 24px;
    border-radius: 16px;
  }
}

@media (max-width: 900px) {
  .grid-2,
  .case-card,
  .final-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .format-card,
  .audience-card,
  .case-card {
    min-height: auto;
  }
}

@media (max-width: 960px) {
  .sustentacao-highlight .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sustentacao-copy {
    max-width: 100%;
  }

  .sustentacao-shot {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    transform: none !important;
  }
}

@media (max-width: 560px) {
  #sustentacao-e-evolucao {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .sustentacao-checklist {
    gap: 10px;
  }

  .sustentacao-shot {
    margin-top: 26px;
  }
}

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

  .steps::before {
    display: none;
  }
}

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

  .process-note {
    max-width: 100%;
    padding: 20px 22px;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .case-card {
    gap: 32px;
  }

  .case-results h3 {
    margin-top: 8px;
  }

  .case-meta {
    display: inline-block;
    white-space: normal;
    max-width: 100%;
  }

  .case-result {
    padding: 18px 20px;
  }

  .case-quote {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .final-cta {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .final-cta-card,
  .cta-panel {
    margin-top: 32px;
  }
}

@media (max-width: 560px) {
  .final-cta h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .final-cta-card,
  .cta-panel {
    padding: 22px;
  }

  .final-cta-card li,
  .cta-panel li {
    line-height: 1.55;
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.whatsapp-float {
  z-index: 80;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float.is-near-footer {
    bottom: 108px;
  }
}

@media (max-width: 360px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float.is-near-footer {
    bottom: 104px;
  }
}

/* =========================================================
   MISSION, VISION AND VALUES PAGE
   ========================================================= */

.mvv-page {
  background: #fff;
}

.breadcrumb {
  padding: 18px 0 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FAFD 100%);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #64748B;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: ">";
  color: rgba(11, 79, 120, .35);
  font-weight: 800;
}

.breadcrumb a {
  color: #0B4F78;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #00B4D8;
}

.mvv-hero {
  padding: 96px 0 92px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 180, 216, .10), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F4FAFD 100%);
  overflow: hidden;
}

.mvv-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}

.mvv-hero-copy h1 {
  max-width: 800px;
  margin: 18px 0 22px;
  color: #0B2341;
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.mvv-hero-copy p {
  max-width: 680px;
  color: #4B5F78;
  font-size: 18px;
  line-height: 1.65;
}

.micro-proof {
  margin-top: 18px;
  font-weight: 800;
  color: #0B4F78 !important;
}

.mvv-hero-card {
  background: #fff;
  border: 1px solid rgba(0, 180, 216, .18);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 22px 54px rgba(11, 79, 120, .12);
}

.card-label {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0B4F78;
}

.mvv-guide-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(11, 79, 120, .10);
}

.mvv-guide-item strong {
  display: block;
  color: #0B2341;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.mvv-guide-item p {
  margin: 0;
  color: #4B5F78;
  line-height: 1.55;
}

.mvv-principle-card,
.value-card,
.practice-card {
  background: #fff;
  border: 1px solid rgba(11, 79, 120, .12);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 32px rgba(11, 79, 120, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mvv-principle-card {
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 14px 36px rgba(11, 79, 120, .06);
}

.mvv-principle-card:hover,
.value-card:hover,
.practice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .32);
  box-shadow: 0 18px 42px rgba(11, 79, 120, .10);
}

.value-card h3,
.practice-card h3,
.mvv-principle-card h3 {
  color: #0B2341;
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.value-card p,
.practice-card p,
.mvv-principle-card p {
  color: #4B5F78;
  line-height: 1.62;
}

.mvv-values {
  background: linear-gradient(180deg, #F4FAFD 0%, #FFFFFF 100%);
}

.mvv-commitment {
  background: #062033;
  color: #fff;
}

.commitment-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.commitment-card h2 {
  color: #fff;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 18px auto 20px;
}

.commitment-card p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
}

.commitment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.commitment-chips li {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 14px;
}

.mvv-final-cta {
  background: linear-gradient(180deg, #F4FAFD 0%, #FFFFFF 100%);
}

.final-cta-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-copy h2 {
  color: #0B2341;
  font-size: clamp(36px, 3.3vw, 52px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.final-cta-copy p {
  color: #4B5F78;
  font-size: 18px;
  line-height: 1.65;
  max-width: 760px;
  margin: 18px auto 0;
}

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

@media (max-width: 960px) {
  .mvv-hero {
    padding: 76px 0 70px;
  }

  .mvv-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mvv-page .grid-3,
  .mvv-page .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mvv-hero {
    padding: 64px 0 58px;
  }

  .mvv-hero-copy h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .mvv-hero-copy p,
  .final-cta-copy p,
  .commitment-card p {
    font-size: 16px;
  }

  .mvv-page .grid-2,
  .mvv-page .grid-3,
  .mvv-page .values-grid {
    grid-template-columns: 1fr;
  }

  .mvv-hero-card,
  .mvv-principle-card,
  .value-card,
  .practice-card {
    padding: 24px;
  }

  .mvv-guide-item {
    grid-template-columns: 1fr;
  }

  .commitment-card {
    text-align: left;
  }

  .commitment-chips {
    justify-content: flex-start;
  }

  .final-cta-copy {
    text-align: left;
  }

  .final-cta-copy .cta-actions {
    justify-content: stretch;
  }
}

