/* Google Fonts carregadas via <link> no HTML para melhor performance */

:root {
  --bg-page: #f4f8fb;
  --bg-surface: rgba(255, 255, 255, 0.82);
  --bg-surface-strong: #ffffff;
  --bg-accent: #0f172a;
  --bg-accent-soft: #16233d;
  --text-main: #10213f;
  --text-muted: #59708f;
  --text-soft: #7d8da7;
  --line-soft: rgba(16, 33, 63, 0.08);
  --line-strong: rgba(16, 33, 63, 0.14);
  --navy: #10213f;
  --navy-strong: #0b1630;
  --thermal-blue: #1377ff;
  --thermal-green: #3ccf91;
  --thermal-yellow: #ffc247;
  --thermal-orange: #ff7a3d;
  --thermal-red: #ef4444;
  --gradient-thermal: linear-gradient(135deg, #1377ff 0%, #31bfba 28%, #8ddd4f 45%, #ffc247 67%, #ff7a3d 84%, #ef4444 100%);
  --gradient-hero: radial-gradient(circle at top left, rgba(19, 119, 255, 0.2), transparent 28%), radial-gradient(circle at 82% 18%, rgba(255, 122, 61, 0.18), transparent 26%), linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
  --shadow-soft: 0 18px 60px rgba(16, 33, 63, 0.08);
  --shadow-strong: 0 30px 90px rgba(15, 23, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  background: var(--gradient-hero);
  color: var(--text-main);
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 33, 63, 0.07);
  box-shadow: 0 2px 16px rgba(16, 33, 63, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 15rem;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1 1 auto;
  justify-content: center;
}

.main-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--navy);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 32px rgba(16, 33, 63, 0.2);
}

.button-primary .button-glow {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--gradient-thermal);
  box-shadow: 0 0 18px rgba(255, 122, 61, 0.55);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  border: 1px solid rgba(16, 33, 63, 0.08);
}

.hero {
  padding: 4.6rem 0 4.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: start;
  gap: 3.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--gradient-thermal);
}

.hero-copy h1 {
  margin: 1.35rem 0 1.35rem;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.9rem, 5.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  max-width: 8.8ch;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0;
  max-width: 58ch;
  font-size: 1.14rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.trust-pill {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-pill strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.04rem;
  line-height: 1.25;
}

.trust-pill span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1.55rem;
  background: linear-gradient(180deg, rgba(11, 22, 48, 0.97), rgba(16, 33, 63, 0.9));
  color: white;
  box-shadow: var(--shadow-strong);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -35% auto auto -14%;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(19, 119, 255, 0.34), transparent 68%);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto -12% -18% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.32), transparent 70%);
}

.screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.screen-label {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-top h2 {
  margin: 0.45rem 0 0;
  font-size: 1.52rem;
  line-height: 1.18;
  max-width: 15ch;
  text-wrap: balance;
}

.risk-chip {
  flex: 0 0 auto;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 11.5rem;
  max-width: 13.5rem;
  padding: 0.75rem 1rem 0.8rem 0.95rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 122, 61, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--thermal-orange);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.risk-chip-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.25;
}

.risk-chip-value {
  display: block;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.panel h3 {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.heatmap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(9, 15, 33, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 900 / 502;
  width: 100%;
  min-height: 12rem;
}

.heatmap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.metric-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

.metric-card {
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 0;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.metric-card span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.52;
}

.metric-card em {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.signal {
  border-radius: var(--radius-md);
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.signal strong {
  display: block;
  font-size: 0.9rem;
}

.signal span {
  display: block;
  margin-top: 0.38rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.signal-green { box-shadow: inset 0 0 0 1px rgba(60, 207, 145, 0.28); }
.signal-yellow { box-shadow: inset 0 0 0 1px rgba(255, 194, 71, 0.28); }
.signal-red { box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.28); }

.section {
  padding: 3.25rem 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
  max-width: 66rem;
}

.section-head span {
  color: var(--thermal-orange);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.1vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 15ch;
  text-wrap: balance;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 70ch;
}

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

#tecnologia .section-head h2,
#tecnologia .section-head p {
  margin-left: auto;
  margin-right: auto;
}

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

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 2.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.story-card.dark {
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-accent-soft) 100%);
  color: white;
}

.story-card strong {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(16, 33, 63, 0.08);
}

.story-card.dark strong {
  background: rgba(255, 255, 255, 0.08);
}

.story-card h3 {
  margin: 0 auto 0.9rem;
  font-size: 1.6rem;
  line-height: 1.22;
  max-width: min(100%, 22ch);
  text-align: center;
  text-wrap: balance;
}

.story-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: inherit;
  opacity: 0.88;
}

.story-card ul {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.story-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.story-card li::before {
  content: '';
  flex: none;
  width: 0.78rem;
  height: 0.78rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: var(--gradient-thermal);
}

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

.section-entenda {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}

.insight-card {
  margin: 0;
  min-height: 100%;
}

.insight-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--bg-surface-strong);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.insight-card-link:hover,
.insight-card-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.insight-card-link:focus-visible {
  outline: 2px solid rgba(19, 119, 255, 0.35);
  outline-offset: 3px;
}

.insight-card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #e8eef6, #f4f8fb);
  overflow: hidden;
}

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

.insight-card-body {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.35rem 1.35rem;
  flex: 1;
}

.insight-card-body h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.insight-card-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.insight-cta {
  margin-top: 0.2rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--thermal-blue);
}

.tech-card,
.benefit-card,
.timeline-step {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
}

.compliance-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.tech-card {
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: var(--gradient-thermal);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(19, 119, 255, 0.12), rgba(255, 122, 61, 0.18));
  font-size: 1.4rem;
}

.tech-card h3,
.benefit-card h3,
.timeline-step h3 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  line-height: 1.3;
  text-wrap: balance;
}

.tech-card p,
.benefit-card p,
.timeline-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.tech-card,
.benefit-card {
  min-height: 20rem;
}

.compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: start;
}

.compliance-intro {
  padding: 2.15rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--navy) 0%, #16284f 100%);
  color: white;
  box-shadow: var(--shadow-strong);
}

.compliance-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.compliance-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.compliance-metrics div {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.compliance-metrics strong {
  display: block;
  font-size: 1.4rem;
}

.compliance-metrics span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.compliance-card .card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.compliance-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.3;
  text-wrap: balance;
}

.compliance-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

.workflow {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
}

.timeline-number {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  background: var(--navy);
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(16, 33, 63, 0.18);
}

.timeline-copy span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: var(--thermal-orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-card strong {
  display: block;
  margin-bottom: 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.cta {
  padding: 2rem 0 4.5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.92fr);
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background: linear-gradient(135deg, #0c1732 0%, #142349 58%, #1f3769 100%);
  box-shadow: var(--shadow-strong);
}

.cta-copy {
  padding: 1.2rem;
  color: white;
}

.cta-copy h2 {
  margin: 0 0 1rem;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 12ch;
  text-wrap: balance;
}

.cta-copy p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.cta-list {
  display: grid;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.84);
}

.cta-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cta-list span::before {
  content: '';
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: var(--gradient-thermal);
}

.contact-card {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.contact-card p {
  margin: 0 0 1.3rem;
  color: var(--text-muted);
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 33, 63, 0.12);
  background: #f8fbfd;
  color: var(--text-main);
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(19, 119, 255, 0.2);
  border-color: rgba(19, 119, 255, 0.36);
}

.contact-form .button {
  width: 100%;
  min-height: 3.35rem;
}

.contact-form .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-feedback {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-feedback[hidden] {
  display: none;
}

.form-feedback strong {
  display: block;
  font-size: 1rem;
}

.form-feedback--success {
  background: rgba(60, 207, 145, 0.12);
  border: 1px solid rgba(60, 207, 145, 0.35);
  color: #1a6b47;
}

.form-feedback--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #9b1c1c;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.75rem 2rem;
  align-items: start;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-primary,
.footer-secondary {
  display: grid;
  gap: 0.55rem;
}

.footer-lead {
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
}

.footer-powered {
  margin: 0;
  color: var(--text-main);
}

.footer-product {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-sep {
  margin: 0 0.35rem;
  color: var(--text-soft);
  font-weight: 400;
}

.footer-radsquare {
  font-weight: 700;
  color: var(--navy);
}

.footer-spinoff {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-einstein-link {
  color: var(--thermal-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.footer-secondary {
  text-align: right;
}

.footer-copy,
.footer-legal {
  margin: 0;
}

.footer-legal {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* ── Infographic modal ── */
.infografico-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(calc(100vw - 2rem), 1100px);
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: none;
  border-radius: var(--radius-xl);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.infografico-dialog::backdrop {
  background: rgba(10, 15, 35, 0.78);
  backdrop-filter: blur(6px);
}

.infografico-dialog-box {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 40px 120px rgba(10, 15, 35, 0.5);
  max-height: calc(100vh - 2rem);
}

.infografico-dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  flex: 0 0 auto;
}

.infografico-dialog-tab {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--thermal-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.infografico-dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}

.infografico-dialog-close:hover {
  background: var(--bg-page);
  transform: scale(1.04);
}

.infografico-dialog-img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 7rem);
  object-fit: contain;
  display: block;
  flex: 1;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .brand-logo {
    width: 12.5rem;
  }

  .hero-grid,
  .problem-solution,
  .compliance-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    max-width: 10ch;
  }
}

@media (max-width: 780px) {
  .metric-stack,
  .header-inner,
  .hero-trust,
  .screen-footer,
  .tech-grid,
  .benefits-grid,
  .compliance-grid,
  .contact-form,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-secondary {
    text-align: left;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line-soft);
  }

  .header-inner {
    display: grid;
  }

  .brand-logo {
    width: 11rem;
  }

  .header-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
    max-width: 9ch;
  }

  .story-card,
  .compliance-intro,
  .cta-copy,
  .contact-card {
    padding: 1.45rem;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-number {
    width: 2.75rem;
    height: 2.75rem;
  }
}
