.approach-graphic {
  display: block;
  width: min(250px, 65%);
  height: auto;
  margin: 2.5rem 0 -1rem auto;
  filter: drop-shadow(0 18px 28px rgba(10, 34, 49, .12));
  transform: rotate(-5deg);
}

.hero-copy h1 {
  margin-bottom: 1rem;
}

.hero-promise {
  max-width: 720px;
  margin: 0 0 1.7rem;
  color: var(--teal);
  font: 650 clamp(1.25rem, 2.2vw, 2rem)/1.25 var(--display);
  letter-spacing: -.03em;
}

html { scroll-padding-top: 110px; }

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.about :where(a, button, summary):focus-visible,
.contact :where(a, button, summary):focus-visible,
footer :where(a, button, summary):focus-visible {
  outline-color: #fff;
}

button, summary { touch-action: manipulation; }

.button.whatsapp {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.button.whatsapp:hover {
  color: #fff;
  background: var(--teal);
}

.about-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .9rem;
}

.about-actions {
  margin-top: 1.75rem;
}

.button.linkedin {
  background: var(--aqua);
  color: var(--ink);
}

.linkedin-message {
  color: #fff;
}

.contact-actions {
  justify-content: center;
}

.button.whatsapp-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
}

.button.whatsapp-light:hover {
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--aqua);
}

.growth-signature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8.5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.growth-copy h2 {
  margin: 0 0 1.5rem;
  font: 700 clamp(3.2rem, 7vw, 7rem)/.96 var(--display);
  letter-spacing: -.06em;
}

.growth-copy h2 em {
  color: var(--teal);
  font-style: normal;
}

.growth-copy > p:last-of-type {
  max-width: 680px;
  margin: 0;
  color: #50636c;
  font-size: 1.08rem;
}

.growth-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  max-width: 680px;
  margin-top: 2rem;
}

.growth-principles span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .65rem clamp(.55rem, 1vw, .9rem);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: clamp(.78rem, 1vw, .95rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.growth-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7fbfa;
}

.growth-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.expertise {
  background: #eef5f4;
  border-top: 1px solid var(--line);
}

.expertise-grid {
  display: grid;
  gap: 1.25rem;
}

.expertise-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.expertise-copy {
  padding: clamp(2rem, 4.5vw, 4.5rem);
}

.expertise-copy h3 {
  margin: .8rem 0 1rem;
  font: 700 clamp(1.8rem, 3.3vw, 3.4rem)/1.08 var(--display);
  letter-spacing: -.04em;
}

.expertise-copy p {
  color: #50636c;
  max-width: 660px;
}

.expertise-copy ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0 0 1rem;
}

.expertise-copy ul > li {
  padding: .45rem 0;
  border-bottom: 1px solid var(--line);
}

.expertise-copy ul > li::before {
  content: "—";
  color: var(--teal);
  margin-right: .7rem;
}

.expertise-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  padding: clamp(1rem, 2.5vw, 2.5rem);
  background: #f7fbfa;
}

.expertise-link {
  display: inline-flex;
  gap: .5rem;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.reply-note {
  margin-top: 1.4rem !important;
  font-weight: 700;
  color: #fff !important;
}

.faq-list {
  max-width: 980px;
  margin-left: auto;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}

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

.faq-list summary {
  cursor: pointer;
  font: 700 clamp(1.05rem, 1.7vw, 1.35rem)/1.35 var(--display);
  color: var(--ink);
}

.faq-list p {
  max-width: 800px;
  margin: 1rem 0 .25rem;
  color: #50636c;
}

@media (max-width: 900px) {
  .growth-signature {
    grid-template-columns: 1fr;
  }

  .approach-graphic {
    width: 190px;
    margin: 2rem 0 0;
  }

  .expertise-card img {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .growth-copy h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .growth-principles {
    grid-template-columns: minmax(0, 290px);
    justify-content: center;
  }

  .growth-principles span {
    width: 100%;
    font-size: .95rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .approach-graphic {
    animation: mjx-float 8s ease-in-out infinite;
  }

  @keyframes mjx-float {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-8px); }
  }
}
