:root {
  --navy: #21253B;
  --navy-dark: #171A2B;
  --blue: #364DE8;
  --blue-hover: #293FD1;
  --orange: #E8764D;
  --orange-hover: #D9633A;
  --off-white: #D7DBFA;
  --white: #FFFFFF;
  --background: #FAFBFF;
  --text: #303449;
  --text-light: #656B83;
  --line: rgba(33, 37, 59, 0.12);
  --shadow: 0 22px 70px rgba(27, 32, 67, 0.14);
  --shadow-soft: 0 14px 40px rgba(27, 32, 67, 0.08);
  --radius-large: 30px;
  --radius-medium: 18px;
  --container: 1180px;
}

/* =========================================================
   RESET E BASE
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: var(--background);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 105px 0;
}

/* =========================================================
   TIPOGRAFIA E COMPONENTES GERAIS
========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.eyebrow-light {
  color: var(--off-white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-content h2,
.final-cta h2 {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-top: 20px;
  color: var(--text-light);
  font-size: 1.06rem;
}

/* =========================================================
   BOTÕES
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(54, 77, 232, 0.25);
}

.button-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 14px 30px rgba(54, 77, 232, 0.32);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(33, 37, 59, 0.25);
}

.button-outline:hover {
  color: var(--blue);
  background: var(--white);
  border-color: var(--blue);
}

.button-orange {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(232, 118, 77, 0.25);
}

.button-orange:hover {
  background: var(--orange-hover);
  box-shadow: 0 15px 34px rgba(232, 118, 77, 0.3);
}

/* =========================================================
   LOGO / MARCA PONTE ROMANA
========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--navy);
  fill: currentColor;
}

.brand-name {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-name small {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-light .brand-mark,
.brand-light .brand-name {
  color: var(--white);
}

/* =========================================================
   CABEÇALHO E MENU
========================================================= */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 19px 0;
  background: rgba(250, 251, 255, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.header-scrolled {
  padding: 12px 0;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(28, 32, 61, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--navy);
  font-size: 0.89rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transition: width 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--blue);
}

.main-nav > a:not(.button):hover::after {
  width: 100%;
}

.nav-button {
  margin-left: 4px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 7px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  padding: 167px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(54, 77, 232, 0.13), transparent 24%),
    linear-gradient(145deg, #F8F9FF 0%, #EEF0FF 100%);
}

.hero-decoration {
  position: absolute;
  pointer-events: none;
}

.hero-decoration-one {
  right: -105px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(54, 77, 232, 0.16);
  border-radius: 50% 50% 0 0;
}

.hero-decoration-two {
  right: 25px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(232, 118, 77, 0.35);
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(330px, 0.73fr);
  align-items: center;
  gap: 70px;
}

.hero-content h1 {
  max-width: 745px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.65rem, 5.5vw, 4.7rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.068em;
}

.hero-content h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 630px;
  margin: 26px 0 33px;
  color: #565D77;
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 37px;
  color: var(--text-light);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-note-line {
  width: 34px;
  height: 1px;
  background: var(--orange);
}

.hero-photo-wrapper {
  position: relative;
  width: min(100%, 428px);
  margin-left: auto;
}

.hero-photo {
  position: relative;
  height: 570px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 210px 210px 18px 18px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(23, 26, 43, 0.38));
}

.hero-photo-card {
  position: absolute;
  right: -30px;
  bottom: 43px;
  max-width: 230px;
  padding: 18px 19px;
  color: var(--white);
  background: var(--navy);
  border-left: 4px solid var(--orange);
  box-shadow: 0 14px 35px rgba(23, 26, 43, 0.2);
}

.hero-photo-card strong {
  display: block;
  font-size: 0.91rem;
  line-height: 1.3;
}

.hero-photo-card span {
  display: block;
  margin-top: 5px;
  color: var(--off-white);
  font-size: 0.77rem;
  line-height: 1.45;
}

/* =========================================================
   FAIXA DE AUTORIDADE
========================================================= */

.authority-bar {
  padding: 25px 0;
  color: var(--white);
  background: var(--navy);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  align-items: center;
  gap: 30px;
}

.authority-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 25px;
  border-right: 1px solid rgba(215, 219, 250, 0.2);
}

.authority-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  color: var(--orange);
  fill: currentColor;
}

.authority-title p {
  color: var(--off-white);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.authority-item {
  padding-left: 10px;
}

.authority-item strong {
  display: block;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.authority-item span {
  display: block;
  margin-top: 3px;
  color: rgba(215, 219, 250, 0.82);
  font-size: 0.73rem;
  line-height: 1.38;
}

/* =========================================================
   CARDS DE PÚBLICO
========================================================= */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.audience-card {
  min-height: 345px;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid rgba(33, 37, 59, 0.08);
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 28px rgba(35, 39, 71, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 77, 232, 0.25);
  box-shadow: var(--shadow-soft);
}

.audience-card-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 27px;
  color: var(--blue);
  background: rgba(54, 77, 232, 0.09);
  border-radius: 13px;
  place-items: center;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.audience-card-featured .card-icon {
  color: var(--orange);
  background: rgba(232, 118, 77, 0.13);
}

.audience-card h3 {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.audience-card-featured h3 {
  color: var(--white);
}

.audience-card p {
  margin-top: 15px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.66;
}

.audience-card-featured p {
  color: rgba(215, 219, 250, 0.85);
}

.audience-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
}

.audience-card a span {
  transition: transform 0.2s ease;
}

.audience-card a:hover span {
  transform: translateX(4px);
}

.audience-card-featured a {
  color: var(--orange);
}

/* =========================================================
   SOLUÇÕES
========================================================= */

.solutions-section {
  background: var(--off-white);
}

.solutions-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.solutions-top .section-heading {
  margin-bottom: 43px;
}

.solutions-intro {
  max-width: 370px;
  margin-bottom: 43px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.solutions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(33, 37, 59, 0.1);
  border-radius: var(--radius-medium);
}

.solution-item {
  display: flex;
  gap: 20px;
  min-height: 185px;
  padding: 31px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.solution-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.solution-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.solution-item:hover {
  background: #F9FAFF;
}

.solution-number {
  color: var(--orange);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
}

.solution-item h3 {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.solution-item p {
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.62;
}

/* =========================================================
   SOBRE O ESCRITÓRIO
========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
}

.about-photo-wrap {
  position: relative;
  width: min(100%, 465px);
}

.about-photo {
  position: relative;
  z-index: 1;
  height: 590px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 18px 165px 18px 18px;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-accent {
  position: absolute;
  z-index: 0;
  top: 45px;
  left: -28px;
  width: 90%;
  height: 90%;
  border: 1px solid var(--orange);
  border-radius: 16px 140px 16px 16px;
}

.about-content h2 {
  max-width: 650px;
}

.about-content > p:not(.eyebrow) {
  margin-top: 21px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.78;
}

.about-content blockquote {
  display: flex;
  gap: 15px;
  margin-top: 31px;
  padding: 19px 20px;
  background: #F4F5FF;
  border-left: 3px solid var(--orange);
}

.about-content blockquote svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--blue);
  fill: currentColor;
}

.about-content blockquote p {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.58;
}

/* =========================================================
   PROFISSIONAIS
========================================================= */

.professionals-section {
  background: #F8F9FF;
}

.professionals-heading {
  max-width: 680px;
}

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.professional-card {
  display: grid;
  grid-template-columns: 205px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(33, 37, 59, 0.09);
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 29px rgba(30, 35, 70, 0.05);
}

.professional-photo {
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.professional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.professional-photo-ana img {
  object-position: center top;
}

.professional-content {
  padding: 29px 25px 28px;
}

.professional-role {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.professional-content h3 {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.31rem;
  letter-spacing: -0.04em;
}

.professional-content p {
  margin-top: 13px;
  color: var(--text-light);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: var(--white);
  background: var(--navy);
}

.final-cta::before {
  position: absolute;
  top: -95px;
  right: -95px;
  width: 315px;
  height: 315px;
  border: 1px solid rgba(215, 219, 250, 0.16);
  border-radius: 50%;
  content: "";
}

.final-cta::after {
  position: absolute;
  bottom: -120px;
  left: 6%;
  width: 255px;
  height: 255px;
  border: 1px solid rgba(232, 118, 77, 0.28);
  border-radius: 50% 50% 0 0;
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
}

.cta-logo {
  display: grid;
  width: 88px;
  height: 88px;
  color: var(--orange);
  border: 1px solid rgba(232, 118, 77, 0.46);
  border-radius: 50%;
  place-items: center;
}

.cta-logo svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.final-cta h2 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(215, 219, 250, 0.86);
  font-size: 0.98rem;
}

/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
  padding: 72px 0 22px;
  color: var(--off-white);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 52px;
}

.footer-description {
  max-width: 355px;
  margin-top: 23px;
  color: rgba(215, 219, 250, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
}

.footer-column a,
.footer-column span {
  color: rgba(215, 219, 250, 0.72);
  font-size: 0.84rem;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  color: rgba(215, 219, 250, 0.5);
  border-top: 1px solid rgba(215, 219, 250, 0.12);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1050px) {
  .hero-grid {
    gap: 42px;
  }

  .about-grid {
    gap: 58px;
  }

  .authority-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 18px;
  }

  .professional-card {
    grid-template-columns: 175px 1fr;
  }

  .final-cta-content {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .final-cta-content .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    width: min(83vw, 340px);
    height: 100vh;
    padding: 105px 32px 35px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    visibility: hidden;
    background: var(--white);
    box-shadow: -15px 0 45px rgba(26, 30, 57, 0.12);
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .main-nav.nav-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav > a:not(.button) {
    font-size: 1rem;
  }

  .main-nav .nav-button {
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
  }

  .menu-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-photo-wrapper {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .hero-photo {
    height: 540px;
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .authority-title {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 23px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 219, 250, 0.2);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .solutions-top {
    display: block;
  }

  .solutions-intro {
    margin-top: -20px;
    margin-bottom: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-photo-wrap {
    margin: 0 auto;
  }

  .professionals-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 42px;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-name {
    font-size: 0.75rem;
  }

  .hero {
    padding: 127px 0 66px;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 1.07;
  }

  .hero-text {
    margin: 21px 0 28px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    font-size: 0.77rem;
  }

  .hero-note-line {
    margin-top: 9px;
  }

  .hero-photo {
    height: 445px;
    border-radius: 165px 165px 16px 16px;
  }

  .hero-photo-card {
    right: -8px;
    bottom: 22px;
    max-width: 205px;
    padding: 15px;
  }

  .authority-bar {
    padding: 28px 0;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .authority-title {
    grid-column: auto;
  }

  .authority-item {
    padding-left: 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-content h2,
  .final-cta h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .section-heading > p:last-child {
    font-size: 0.98rem;
  }

  .audience-card {
    padding: 28px 24px;
  }

  .solutions-list {
    grid-template-columns: 1fr;
  }

  .solution-item,
  .solution-item:nth-child(odd) {
    min-height: auto;
    padding: 25px 21px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .solution-item:last-child {
    border-bottom: 0;
  }

  .about-photo {
    height: 455px;
    border-radius: 15px 125px 15px 15px;
  }

  .about-accent {
    top: 27px;
    left: -15px;
  }

  .about-content blockquote {
    padding: 17px;
  }

  .professional-card {
    grid-template-columns: 1fr;
  }

  .professional-photo {
    height: 335px;
  }

  .professional-photo img {
    object-position: center 18%;
  }

  .professional-photo-ana img {
    object-position: center 20%;
  }

  .professional-content {
    padding: 25px 22px;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-logo {
    width: 70px;
    height: 70px;
  }

  .cta-logo svg {
    width: 38px;
    height: 38px;
  }

  .final-cta-content .button {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}