/**
 * Simplestek — site institucional multipágina.
 * Fundo branco no conteúdo; header e footer no azul-marinho da marca.
 */
:root {
  --navy: #112a42;
  --navy-deep: #0a1e30;
  --navy-soft: #1b3d59;
  --blue: #2e8bcb;
  --blue-bright: #54b4eb;
  --blue-pale: #e8f5fd;
  --ink: #10283c;
  --slate: #526b7d;
  --mist: #f4f8fb;
  --line: #e1e8ee;
  --paper: #ffffff;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p {
  margin: 0;
}

h1, h2, h3, .eyebrow, .step-number {
  font-family: "Sora", sans-serif;
}

button:not(:disabled), [role="button"]:not([aria-disabled="true"]), a[href] {
  cursor: pointer;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

button, input, textarea, select {
  font: inherit;
}

img, svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  color: white;
  background: var(--navy);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand-logo {
  position: relative;
  width: 190px;
  height: 48px;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo--large {
  width: 230px;
  height: 60px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 2.5rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  color: rgb(255 255 255 / 78%);
  background: none;
  border: 0;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms var(--ease-out);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: white;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 2px;
  background: var(--blue-bright);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms var(--ease-out);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: -1rem;
  width: 300px;
  display: grid;
  gap: 0.15rem;
  padding: 0.6rem;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 25px 50px rgb(16 40 60 / 18%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out), visibility 160ms;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
  transition: background 150ms var(--ease-out), color 150ms var(--ease-out);
}

.nav-dropdown-menu a:hover {
  color: var(--blue);
  background: var(--mist);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-left: auto;
  padding: 0.65rem 1.1rem;
  border: 0;
  border-radius: 0.5rem;
  color: white !important;
  background: var(--blue) !important;
  box-shadow: 0 10px 28px rgb(46 139 203 / 26%);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background 180ms var(--ease-out);
}

.header-cta:hover {
  background: #3699dc !important;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgb(255 255 255 / 6%);
}

.menu-icon-close {
  display: none;
}

.menu-toggle.is-open .menu-icon-open {
  display: none;
}

.menu-toggle.is-open .menu-icon-close {
  display: block;
}

.mobile-nav {
  display: none;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav {
  padding: 1rem 1.25rem 1.35rem;
  color: white;
  background: var(--navy);
  border-top: 1px solid rgb(255 255 255 / 10%);
  box-shadow: 0 22px 40px rgb(0 0 0 / 25%);
}

.mobile-nav a {
  padding: 0.7rem 0;
  color: rgb(255 255 255 / 78%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 650;
}

.mobile-nav a.mobile-sub {
  padding-left: 1rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.78rem;
}

.mobile-nav a.is-active {
  color: var(--blue-bright);
}

.mobile-nav a.mobile-cta {
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
  color: white;
  border: 0;
  background: var(--blue);
  text-align: center;
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--blue);
  font-size: 0.7rem;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

/* ---------- Buttons ---------- */

.button-primary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 1.45rem;
  border: 0;
  border-radius: 0.5rem;
  color: white !important;
  background: var(--blue) !important;
  box-shadow: 0 10px 28px rgb(46 139 203 / 26%);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button-primary:hover {
  background: #3699dc !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgb(46 139 203 / 34%);
}

.button-primary:active {
  transform: scale(0.97);
}

.button-ghost {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 1.35rem;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: white !important;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 160ms var(--ease-out);
}

.button-ghost:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
}

/* ---------- Page hero (fundo branco) ---------- */

.page-hero {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background: var(--paper);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  align-items: center;
  gap: 4rem;
}

.page-hero--center .container {
  grid-template-columns: 1fr;
  max-width: 820px;
  text-align: center;
}

.page-hero--center .eyebrow {
  justify-content: center;
}

.page-hero--center .hero-actions {
  justify-content: center;
}

.page-hero h1 {
  max-width: 640px;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--ink);
}

.page-hero--center h1 {
  max-width: 100%;
  margin-inline: auto;
}

.page-hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin-top: 1.4rem;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-hero--center .hero-lead {
  max-width: 620px;
  margin-inline: auto;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1.8rem;
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 700;
}

.page-hero--center .hero-proof {
  justify-content: center;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.hero-proof svg {
  color: var(--blue);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy-deep);
  box-shadow: 0 35px 70px rgb(16 40 60 / 20%);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(5 20 32 / 30%));
  pointer-events: none;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  padding-block: 1.6rem;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.trust-bar > .container > span {
  color: var(--slate);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.trust-bar strong {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
}

.trust-bar-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

/* ---------- Stat band (navy) ---------- */

.stat-band {
  padding-block: 4.5rem;
  color: white;
  background: var(--navy);
}

.stat-band-heading {
  max-width: 640px;
  margin-bottom: 2.6rem;
}

.stat-band-heading h2 {
  color: white;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.03em;
}

.stat-band-heading p {
  margin-top: 0.9rem;
  color: rgb(255 255 255 / 62%);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.stat-grid article {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem 1.6rem;
}

.stat-grid article:not(:last-child) {
  border-right: 1px solid rgb(255 255 255 / 14%);
}

.stat-grid strong {
  color: var(--blue-bright);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  letter-spacing: -0.03em;
}

.stat-grid span {
  margin-top: 0.6rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---------- Section layout ---------- */

.section-pad {
  padding-block: 6rem;
}

.section-pad--tight {
  padding-block: 4.5rem;
}

.section-mist {
  background: var(--mist);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading--center {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.section-heading > p {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 1rem;
}

/* ---------- Solution cards (hub + grids) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.1rem;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgb(16 40 60 / 5%);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgb(16 40 60 / 11%);
}

.solution-card--highlight {
  border-color: var(--blue);
  box-shadow: 0 20px 45px rgb(46 139 203 / 14%);
}

.solution-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-pale);
}

.solution-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.3rem 0.55rem;
  color: white;
  background: var(--blue);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-card h3 {
  margin-top: 1.6rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.solution-card > p {
  margin-top: 0.65rem;
  color: var(--slate);
  font-size: 0.87rem;
  line-height: 1.6;
}

.solution-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 1.2rem 0 0;
  flex: 1;
}

.solution-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #3e596c;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.4;
}

.solution-card li svg {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  width: 15px;
  height: 15px;
  color: var(--blue);
}

.solution-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  color: var(--blue);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
}

.solution-more svg {
  width: 15px;
  height: 15px;
}

/* ---------- Detail page: feature list + visual ---------- */

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 4.5rem;
}

.detail-layout--reverse {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
}

.detail-layout--reverse > :first-child {
  order: 2;
}

.feature-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.feature-list > div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.feature-list svg {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--blue);
}

.feature-list strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
}

.feature-list small {
  display: block;
  margin-top: 0.22rem;
  color: var(--slate);
  font-size: 0.78rem;
}

/* Mockup window (Protocolo) */

.mockup-window {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 25px 55px rgb(16 40 60 / 12%);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.mockup-titlebar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7e2e8;
}

.mockup-titlebar span:last-child {
  background: var(--blue);
}

.mockup-titlebar small {
  margin-left: 0.5rem;
  color: #8ca0ae;
  font-family: "Sora", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.mockup-body {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 1.1rem;
}

.mockup-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-col-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ca0ae;
}

.mockup-card {
  padding: 0.55rem 0.65rem;
  color: #3a5266;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-left: 3px solid #c7d6de;
  font-size: 0.68rem;
  font-weight: 650;
}

.mockup-card--active {
  color: var(--ink);
  background: var(--blue-pale);
  border-left-color: var(--blue);
}

/* Version stack (GED) */

.version-stack {
  display: grid;
  gap: 0.65rem;
}

.version-stack > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 0.8rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  background: white;
}

.version-stack > div:first-child {
  border-color: rgb(46 139 203 / 35%);
  background: var(--blue-pale);
}

.version-stack span {
  grid-row: span 2;
  align-self: center;
  color: var(--blue);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.version-stack strong {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
}

.version-stack small {
  color: var(--slate);
  font-size: 0.68rem;
}

/* Scan stack (Digitalização) */

.scan-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-stack {
  position: relative;
  width: 190px;
  height: 190px;
}

.scan-stack .paper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgb(16 40 60 / 10%);
}

.scan-stack .paper:nth-child(1) {
  transform: rotate(-9deg);
}

.scan-stack .paper:nth-child(2) {
  transform: rotate(5deg);
}

.scan-stack .paper:nth-child(3) {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(-2deg);
}

/* Workflow steps (Protocolo zero papel) */

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.workflow-track::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 25%;
  height: 2px;
  background: var(--blue);
}

.workflow-step {
  position: relative;
  padding: 2rem 1.6rem 0 0;
}

.workflow-step:not(:last-child) {
  margin-right: 1.6rem;
  border-right: 1px solid var(--line);
}

.workflow-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  color: var(--blue);
  background: var(--blue-pale);
}

.step-number {
  display: block;
  margin-bottom: 0.6rem;
  color: #9aafbd;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.workflow-step h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.workflow-step p {
  margin-top: 0.65rem;
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* School management visual */

.school-visual {
  display: grid;
  gap: 0.7rem;
}

.school-visual > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  background: white;
  border: 1px solid var(--line);
}

.school-visual svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.school-visual strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
}

.school-visual small {
  color: var(--slate);
  font-size: 0.72rem;
}

/* ---------- Values / team-ish grid (Quem Somos) ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 1.9rem;
  background: white;
  border: 1px solid var(--line);
}

.value-card .solution-icon {
  margin-bottom: 1.2rem;
}

.value-card h3 {
  font-size: 1.05rem;
}

.value-card p {
  margin-top: 0.6rem;
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.6;
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.timeline-strip article {
  padding-top: 1.1rem;
  border-top: 2px solid var(--blue);
}

.timeline-strip strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  color: var(--blue);
}

.timeline-strip p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details > p {
  max-width: 720px;
  padding: 0 2.5rem 1.4rem 0;
  color: var(--slate);
  font-size: 0.85rem;
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 4rem;
}

.contact-channels {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background: white;
  border: 1px solid var(--line);
  transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.contact-channel:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.contact-channel .solution-icon {
  width: 44px;
  height: 44px;
}

.contact-channel strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
}

.contact-channel small {
  display: block;
  margin-top: 0.15rem;
  color: var(--slate);
  font-size: 0.78rem;
}

.contact-panel {
  padding: 2rem;
  background: var(--navy);
  color: white;
}

.contact-panel h3 {
  color: white;
  font-size: 1.2rem;
}

.contact-panel p {
  margin-top: 0.8rem;
  color: rgb(255 255 255 / 68%);
  font-size: 0.87rem;
  line-height: 1.65;
}

.contact-panel ul {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.contact-panel li {
  display: flex;
  gap: 0.55rem;
  color: rgb(255 255 255 / 78%);
  font-size: 0.82rem;
}

.contact-panel li svg {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--blue-bright);
}

.contact-panel .button-primary {
  margin-top: 1.6rem;
  width: 100%;
}

/* ---------- CTA band ---------- */

.cta-band {
  padding-block: 4.5rem;
  color: white;
  background: var(--navy);
  text-align: center;
}

.cta-band h2 {
  max-width: 640px;
  margin-inline: auto;
  color: white;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.03em;
}

.cta-band p {
  max-width: 560px;
  margin: 1rem auto 0;
  color: rgb(255 255 255 / 65%);
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.cta-band .button-ghost {
  color: white !important;
  background: rgb(255 255 255 / 6%) !important;
  border-color: rgb(255 255 255 / 26%);
}

.cta-band .button-ghost:hover {
  border-color: rgb(255 255 255 / 55%);
  color: white !important;
}

/* ---------- Footer ---------- */

.site-footer {
  color: white;
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.6fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-brand > p {
  max-width: 340px;
  margin-top: 1rem;
  color: rgb(255 255 255 / 50%);
  font-size: 0.78rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-nav strong {
  margin-bottom: 0.4rem;
  color: white;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
}

.footer-nav a {
  color: rgb(255 255 255 / 50%);
  font-size: 0.75rem;
  transition: color 180ms var(--ease-out);
}

.footer-nav a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  color: rgb(255 255 255 / 35%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.68rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .page-hero .container,
  .detail-layout,
  .detail-layout--reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .detail-layout--reverse > :first-child {
    order: 0;
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid,
  .timeline-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .stat-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-track {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-track::before {
    width: 50%;
  }

  .workflow-step:nth-child(2) {
    margin-right: 0;
    border-right: 0;
  }

  .workflow-step:nth-child(-n + 2) {
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 1rem;
  }

  .site-header,
  .header-inner {
    height: 68px;
  }

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

  .section-pad {
    padding-block: 4rem;
  }

  .stat-grid,
  .card-grid,
  .card-grid--4,
  .values-grid,
  .timeline-strip {
    grid-template-columns: 1fr;
  }

  .stat-grid article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .workflow-track::before {
    width: 100%;
  }

  .workflow-step {
    padding: 1.6rem 0 0;
    margin-right: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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