:root {
  --color-primary: #062b72;
  --color-primary-dark: #021b4b;
  --color-secondary: #1f70b7;
  --color-accent: #268a7a;
  --color-accent-soft: #e8f5f1;
  --color-highlight: #b57a2b;
  --color-highlight-soft: #fbf4e8;
  --color-dark: #142246;
  --color-text: #29354b;
  --color-muted: #68758d;
  --color-light: #ffffff;
  --color-soft: #f6f8f8;
  --color-warm: #fbf7ef;
  --color-border: #d9e2ef;
  --shadow-soft: 0 12px 34px rgba(10, 36, 86, 0.12);
  --shadow-card: 0 8px 22px rgba(12, 39, 81, 0.1);
  --radius-lg: 8px;
  --radius-md: 6px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(31, 112, 183, 0.42);
  outline-offset: 3px;
}

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

h1,
h2 {
  color: var(--color-primary-dark);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 630px;
  font-size: clamp(2.35rem, 3.35vw, 3.08rem);
  font-weight: 700;
}

.hero-title-line {
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 3.1vw, 3.05rem);
  font-weight: 700;
}

h3 {
  color: var(--color-primary-dark);
  font-size: 1.12rem;
  line-height: 1.25;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(5, 25, 67, 0.16);
}

.btn--primary {
  color: var(--color-light);
  background: linear-gradient(135deg, var(--color-primary), #0b3d83);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.btn--ghost {
  color: var(--color-primary);
  background: rgba(255, 253, 248, 0.78);
  border-color: #c8bba5;
}

.btn--ghost:hover {
  background: var(--color-light);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--outline-light {
  color: var(--color-light);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.56);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-light);
}

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

.section {
  padding: 72px 0;
}

.section--soft {
  background: linear-gradient(180deg, #fbfaf7 0%, #eef6f3 100%);
}

.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  padding-bottom: 16px;
}

.section-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.topbar {
  color: rgba(255, 255, 255, 0.94);
  background: var(--color-primary-dark);
  font-size: 0.83rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 20px;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(8, 35, 78, 0.08);
  backdrop-filter: blur(12px);
}

.navbar__inner {
  display: grid;
  grid-template-columns: 156px 1fr auto;
  align-items: center;
  min-height: 118px;
  gap: 30px;
}

.brand {
  width: 142px;
}

.brand img {
  width: 142px;
  height: 86px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--color-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn--nav {
  min-width: 178px;
  min-height: 54px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #eef5fd;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("../img/hero-consultor.jpg");
  background-position: center right;
  background-size: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(246, 250, 255, 0.9) 36%, rgba(232, 242, 252, 0.36) 56%, rgba(4, 27, 70, 0.1) 100%),
    radial-gradient(circle at 62% 42%, rgba(108, 176, 230, 0.14), transparent 34%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 610px;
  padding: 62px 0;
}

.hero__lead {
  max-width: 500px;
  margin-top: 24px;
  color: var(--color-dark);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero__copy {
  max-width: 530px;
  margin-top: 24px;
  color: #57657b;
  font-size: 0.98rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.proof-strip {
  background: linear-gradient(180deg, var(--color-light), var(--color-warm));
  box-shadow: 0 12px 28px rgba(8, 36, 80, 0.08);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proof-item {
  min-height: 178px;
  padding: 30px 22px 26px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item i {
  color: var(--color-primary);
  font-size: 2.25rem;
}

.proof-item:nth-child(2n) i {
  color: var(--color-accent);
}

.proof-item:nth-child(5) i {
  color: var(--color-highlight);
}

.proof-item h2 {
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  line-height: 1.22;
}

.proof-item p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.solution-card {
  display: block;
  min-height: 226px;
  padding: 28px 26px 24px;
  background: linear-gradient(180deg, var(--color-light), #fbfcfb);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover {
  border-color: #adc4de;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.solution-card:focus-visible {
  border-color: var(--color-secondary);
  outline: 3px solid rgba(31, 112, 183, 0.28);
  outline-offset: 3px;
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.solution-card:nth-child(3n + 2) .card-icon {
  color: var(--color-accent);
}

.solution-card:nth-child(3n) .card-icon {
  color: var(--color-highlight);
}

.solution-card p {
  margin-top: 14px;
  color: #59687c;
  font-size: 0.94rem;
  line-height: 1.5;
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--color-primary);
  font-size: 0.91rem;
  font-weight: 800;
}

.school-section {
  position: relative;
  overflow: hidden;
  color: var(--color-light);
  background: #062b72;
}

.school-section::before {
  display: none;
}

.school-section::after {
  display: none;
}

.school-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  min-height: 510px;
  gap: 56px;
  padding: 64px 0;
}

.school-photo {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  width: min(62vw, 880px);
  overflow: hidden;
  pointer-events: none;
}

.school-photo::before {
  display: none;
}

.school-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(4, 33, 94, 0) 34%,
      rgba(4, 33, 94, 0.2) 43%,
      rgba(4, 33, 94, 0.72) 61%,
      #062b72 84%),
    linear-gradient(180deg, rgba(4, 33, 94, 0.08), transparent 36%, rgba(4, 33, 94, 0.18));
  content: "";
}

.school-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.school-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
}

.eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.school-copy h2 {
  max-width: 760px;
  color: var(--color-light);
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}

.school-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.school-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  margin: 32px 0;
}

.school-benefits span {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.school-benefits i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #b6ddff;
  border: 1px solid rgba(182, 221, 255, 0.58);
  border-radius: var(--radius-md);
}

.methodology {
  background: var(--color-light);
}

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

.steps::before {
  position: absolute;
  top: 43px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #becce0 0 12px, transparent 12px 22px);
  content: "";
}

.step {
  position: relative;
  text-align: center;
}

.step__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  color: var(--color-light);
  background: var(--color-primary);
  border: 8px solid #f0f5fb;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(7, 40, 98, 0.2);
}

.step h3 {
  margin-top: 18px;
  font-size: 1rem;
}

.step p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.89rem;
  line-height: 1.48;
}

.choices__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 92px;
}

.choice-list h2 {
  max-width: 470px;
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.choice-list ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-dark);
  font-weight: 700;
}

.choice-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.choice-list i {
  margin-top: 4px;
  color: var(--color-primary);
}

.testimonial {
  min-height: 296px;
  padding: 46px 48px 36px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.testimonial > i {
  color: var(--color-primary);
  font-size: 2.65rem;
}

.testimonial blockquote {
  margin: 18px 0 24px;
  color: #3d4b62;
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial footer {
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--color-primary-dark);
  font-size: 0.93rem;
}

.testimonial span {
  color: var(--color-muted);
  font-size: 0.87rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 249, 245, 0.98), rgba(235, 246, 242, 0.92)),
    var(--color-soft);
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(38, 138, 122, 0.16), transparent 68%);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 86px 0 82px;
  text-align: center;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: #53637a;
  font-size: 1.08rem;
}

.page-hero--school {
  background:
    linear-gradient(90deg, rgba(251, 249, 245, 0.97), rgba(235, 246, 242, 0.9)),
    url("../img/conteudo-escola.jpg") center right / cover;
}

.eyebrow--blue {
  color: var(--color-primary);
}

.lead-text {
  margin: 18px 0;
  color: var(--color-dark);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 70px;
}

.split-section h2,
.profile-copy h2 {
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.feature-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-light);
  background: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.feature-list article:nth-child(2) i {
  background: var(--color-accent);
}

.feature-list article:nth-child(3) i {
  background: var(--color-highlight);
}

.feature-list p,
.profile-copy p,
.detail-panel p,
.article-content p {
  color: #56667c;
}

.feature-list article p {
  grid-column: 2;
}

.profile-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.profile-copy .check-list {
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.45;
}

.check-list i {
  margin-top: 4px;
  color: var(--color-primary);
}

.anchor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.anchor-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 18px;
  color: var(--color-primary-dark);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.anchor-grid a:hover {
  border-color: #9ccbbf;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.anchor-grid i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.anchor-grid a:nth-child(3n + 2) i {
  color: var(--color-accent);
}

.anchor-grid a:nth-child(3n) i {
  color: var(--color-highlight);
}

.content-page {
  background: var(--color-light);
}

.content-stack {
  display: grid;
  gap: 24px;
}

.detail-panel {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 34px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 138px;
}

.detail-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.detail-panel h3 {
  margin-bottom: 8px;
}

.detail-panel p + p {
  margin-top: 12px;
}

.detail-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  color: var(--color-light);
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 1.55rem;
}

.detail-panel:nth-child(3n + 2) .detail-panel__icon {
  background: var(--color-accent);
}

.detail-panel:nth-child(3n) .detail-panel__icon {
  background: var(--color-highlight);
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.42;
}

.two-column-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  content: "";
}

.detail-panel:nth-child(3n + 2) .two-column-list li::before {
  background: var(--color-accent);
}

.detail-panel:nth-child(3n) .two-column-list li::before {
  background: var(--color-highlight);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.info-grid > div,
.quote-box,
.timeline-list div {
  background: #fbfaf7;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.info-grid > div {
  padding: 20px;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.timeline-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px;
}

.timeline-list strong {
  color: var(--color-primary);
}

.timeline-list span {
  color: #53637a;
}

.note-text {
  margin-top: 18px;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.note-text--center {
  max-width: 820px;
  margin: 30px auto 0;
  text-align: center;
}

.quote-box {
  margin: 20px 0;
  padding: 22px;
  color: var(--color-primary-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(180deg, var(--color-warm), var(--color-accent-soft));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.article-aside h2 {
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

.article-aside a {
  padding: 8px 0;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  font-weight: 800;
}

.article-aside a:last-child {
  border-bottom: 0;
}

.article-content {
  max-width: 820px;
}

.article-content h2,
.article-content h3 {
  margin-top: 28px;
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-content [id] {
  scroll-margin-top: 132px;
}

.article-content p {
  margin-top: 14px;
  font-size: 1.03rem;
}

.article-author {
  color: var(--color-primary);
  font-weight: 800;
}

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

.stat-grid article {
  padding: 26px;
  background: linear-gradient(180deg, var(--color-light), #fbfaf7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stat-grid strong {
  display: block;
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1;
}

.stat-grid article:nth-child(2) strong {
  color: var(--color-accent);
}

.stat-grid article:nth-child(3) strong {
  color: var(--color-highlight);
}

.stat-grid span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-weight: 700;
}

.company-list {
  position: relative;
  columns: 3;
  column-gap: 28px;
  padding: 30px;
  background: linear-gradient(180deg, var(--color-light), #fbfaf7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.company-list span {
  display: block;
  break-inside: avoid;
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.35;
  position: relative;
}

.company-list span::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  content: "";
}

.company-list-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin: 20px auto 0;
  padding: 0 22px;
  color: var(--color-primary);
  background: var(--color-light);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 800;
  cursor: pointer;
}

.company-list-toggle i {
  transition: transform 180ms ease;
}

.company-list-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--color-light);
  background:
    linear-gradient(90deg, var(--color-primary-dark), var(--color-primary)),
    var(--color-primary-dark);
}

.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 250px;
  gap: 40px;
  padding: 46px 0;
}

.final-cta h2 {
  max-width: 680px;
  color: var(--color-light);
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.final-cta p {
  max-width: 670px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.final-cta__action {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.final-cta__action span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.growth-mark {
  position: absolute;
  right: -18px;
  bottom: 0;
  display: flex;
  align-items: end;
  gap: 13px;
  color: rgba(112, 181, 232, 0.62);
  font-size: 4rem;
  opacity: 0.72;
}

.growth-mark i {
  position: absolute;
  right: 8px;
  bottom: 108px;
}

.growth-mark span {
  display: block;
  width: 32px;
  background: rgba(112, 181, 232, 0.72);
  border-radius: 4px 4px 0 0;
}

.growth-mark span:nth-child(2) { height: 52px; }
.growth-mark span:nth-child(3) { height: 86px; }
.growth-mark span:nth-child(4) { height: 124px; }
.growth-mark span:nth-child(5) { height: 158px; }

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #031b4c;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(auto-fit, minmax(170px, 1fr));
  gap: 40px;
  padding: 58px 0 42px;
}

.footer-brand img {
  width: 158px;
  height: 116px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 8px 10px;
  background: var(--color-light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(0, 10, 38, 0.24);
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--color-light);
  font-size: 0.98rem;
}

.site-footer a,
.site-footer address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.45;
}

.site-footer a:hover {
  color: var(--color-light);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  color: var(--color-light);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-md);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  color: var(--color-light);
  background: #128c4a;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(3, 27, 76, 0.32);
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  color: var(--color-light);
  background: #0d783f;
  box-shadow: 0 16px 34px rgba(3, 27, 76, 0.4);
  transform: translateY(-3px);
}

.whatsapp-float i {
  font-size: 1.55rem;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .navbar__inner {
    grid-template-columns: 132px auto 48px;
    min-height: 96px;
  }

  .brand,
  .brand img {
    width: 124px;
  }

  .brand img {
    height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .btn--nav {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 96px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

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

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .proof-strip__grid,
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-item:nth-child(3) {
    border-right: 0;
  }

  .proof-item:nth-child(n + 4) {
    border-top: 1px solid var(--color-border);
  }

  .steps::before {
    display: none;
  }

  .choices__inner,
  .split-section,
  .profile-section,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .article-aside {
    position: static;
  }

  .company-list {
    columns: 2;
  }

  .school-section__inner {
    grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
    gap: 36px;
  }

  .school-photo {
    width: 68vw;
  }

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

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

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

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .topbar__group {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .topbar__contact {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    background-position: center right;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(246, 250, 255, 0.92) 56%, rgba(8, 39, 86, 0.24) 100%);
  }

  .hero__inner {
    min-height: auto;
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .hero__lead {
    font-size: 1.06rem;
  }

  .proof-strip__grid,
  .solutions-grid,
  .anchor-grid,
  .stat-grid,
  .two-column-list,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__inner {
    padding: 62px 0 58px;
    text-align: left;
  }

  .page-hero h1,
  .page-hero p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  .detail-panel {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    scroll-margin-top: 110px;
  }

  .timeline-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .company-list {
    columns: 1;
    padding: 24px;
  }

  .company-list.is-collapsed {
    max-height: 720px;
    overflow: hidden;
  }

  .company-list.is-collapsed::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(251, 250, 247, 0), #fbfaf7 88%);
    content: "";
    pointer-events: none;
  }

  .company-list-toggle {
    display: flex;
  }

  .proof-item {
    border-right: 0;
    border-top: 1px solid var(--color-border);
  }

  .proof-item:first-child {
    border-top: 0;
  }

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

  .school-benefits {
    grid-template-columns: 1fr;
  }

  .school-section__inner {
    grid-template-columns: 1fr;
    padding-top: 350px;
  }

  .school-photo {
    top: 0;
    bottom: auto;
    width: 100vw;
    height: 390px;
  }

  .school-photo::after {
    background:
      linear-gradient(180deg,
        rgba(4, 33, 94, 0.04) 32%,
        rgba(4, 33, 94, 0.24) 52%,
        rgba(4, 33, 94, 0.82) 76%,
        #062b72 100%);
  }

  .school-photo img {
    object-position: center 42%;
  }

  .school-copy {
    grid-column: 1;
  }

  .testimonial {
    padding: 32px 26px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .growth-mark {
    right: -54px;
    opacity: 0.34;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .navbar__inner {
    min-height: 86px;
    gap: 14px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .brand img {
    height: 66px;
  }

  .nav-menu {
    top: 86px;
    right: 16px;
    left: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .section-heading {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-title-line {
    white-space: normal;
  }

  .section-heading h2::after {
    left: 0;
    transform: none;
  }

  .school-section__inner {
    padding: 330px 0 54px;
  }

  .school-photo {
    height: 365px;
  }

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

  .footer__bottom div {
    flex-direction: column;
    gap: 8px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
