:root {
  --brand: rgb(195, 131, 96);
  --brand-strong: #8f5c45;
  --brand-soft: #f3ddd1;
  --brand-ghost: #fff6f1;
  --ink: #251b17;
  --muted: #6d5e57;
  --line: rgba(37, 27, 23, .12);
  --surface: #fffdfb;
  --surface-2: #fff7f2;
  --surface-3: #f8eee8;
  --success: #426c57;
  --shadow: 0 24px 70px rgba(77, 48, 36, .13);
  --shadow-soft: 0 14px 40px rgba(77, 48, 36, .08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1160px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at top left, rgba(195, 131, 96, .18), transparent 34rem),
    linear-gradient(180deg, #fffaf6 0%, #fffdfb 38%, #fff7f2 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--brand);
  color: white;
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 246, .86);
  border-color: rgba(37, 27, 23, .08);
  box-shadow: 0 12px 30px rgba(77, 48, 36, .06);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  width: clamp(150px, 19vw, 225px);
  height: auto;
  object-fit: contain;
}

.brand-fallback {
  font-weight: 850;
  letter-spacing: -.04em;
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(37, 27, 23, .08);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 36px rgba(77, 48, 36, .06);
}

.nav-menu a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
  background: var(--brand-ghost);
}

.nav-menu a[aria-current="page"] {
  color: white;
  background: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(37, 27, 23, .12);
  background: rgba(255, 255, 255, .72);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.menu-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav-menu a:focus-visible,
.menu-toggle:focus-visible,
input:focus,
textarea:focus {
  outline: 3px solid rgba(195, 131, 96, .32);
  outline-offset: 3px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 16px 34px rgba(195, 131, 96, .28);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border-color: rgba(37, 27, 23, .11);
  box-shadow: 0 12px 30px rgba(77, 48, 36, .08);
}

.btn-ghost {
  color: var(--brand-strong);
  background: var(--brand-ghost);
  border-color: rgba(195, 131, 96, .18);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.main {
  overflow: hidden;
}

.section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.section-tight {
  padding: clamp(42px, 6vw, 82px) 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: clamp(58px, 8vw, 104px) 0 clamp(72px, 9vw, 130px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .86fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-strong);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(195, 131, 96, .22);
  border-radius: 999px;
  padding: 8px 12px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(195, 131, 96, .13);
}

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

.hero h1,
.page-hero h1 {
  max-width: 13ch;
  margin: 22px 0 18px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.075em;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--brand-strong);
}

.lead {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(37, 27, 23, .08);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-weight: 700;
}

.trust-pill span {
  min-width: 0;
  line-height: 1.32;
}

.trust-pill strong {
  display: block;
  color: var(--ink);
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.hero-card {
  position: relative;
}

.hero-card picture {
  display: block;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 12%;
  background: linear-gradient(135deg, rgba(195, 131, 96, .2), rgba(255, 255, 255, .04));
  border-radius: 52px;
  filter: blur(4px);
  z-index: -1;
}

.hero-illustration {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  inset-inline-start: -14px;
  bottom: 28px;
  width: min(290px, 74%);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(37, 27, 23, .08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.floating-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(37, 27, 23, .09);
  background: rgba(255, 255, 255, .7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: .76;
}

.card h3 {
  font-size: 1.34rem;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.72;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 20px;
  background: var(--brand-ghost);
  color: var(--brand-strong);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

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

.card-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: .62em;
}

.soft-panel {
  position: relative;
  padding: clamp(28px, 5vw, 56px);
  border-radius: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 247, 242, .92)),
    url("soft-pattern.svg");
  border: 1px solid rgba(37, 27, 23, .08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(37, 27, 23, .08);
  border-radius: 24px;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(195, 131, 96, .24);
}

.step h3 {
  margin: 2px 0 6px;
  font-size: 1.06rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-strip {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: white;
  box-shadow: 0 24px 68px rgba(143, 92, 69, .24);
}

.cta-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.cta-strip p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.64;
}

.cta-strip .btn {
  flex: 0 0 auto;
  color: var(--brand-strong);
  background: white;
}

.page-hero {
  padding: clamp(58px, 7vw, 96px) 0 clamp(38px, 6vw, 76px);
}

.page-hero h1 {
  max-width: 15ch;
}

.breadcrumb {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--brand-strong);
}

.profile-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: start;
}

.team-section .section-heading {
  margin-bottom: 24px;
}

.team-section .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
}

.profile-photo-wrap {
  display: block;
  width: 112px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--brand-ghost);
  box-shadow: 0 18px 40px rgba(77, 48, 36, .1);
}

.profile-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.avatar {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(195, 131, 96, .2);
}

.profile-card h2 {
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -.04em;
}

.profile-card .role {
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-weight: 800;
}

.profile-card .credential {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 6px 10px;
  border: 1px solid rgba(195, 131, 96, .18);
  border-radius: 999px;
  background: rgba(255, 246, 241, .78);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-ghost);
  color: var(--brand-strong);
  font-weight: 800;
  font-size: .88rem;
}

.values-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(37, 27, 23, .14) 0%, rgba(37, 27, 23, .5) 52%, rgba(37, 27, 23, .82) 100%),
    url("comunicacao-em-cada-fase-da-vida.png") center / cover no-repeat;
  background:
    linear-gradient(180deg, rgba(37, 27, 23, .14) 0%, rgba(37, 27, 23, .5) 52%, rgba(37, 27, 23, .82) 100%),
    image-set(
      url("comunicacao-em-cada-fase-da-vida.avif") type("image/avif"),
      url("comunicacao-em-cada-fase-da-vida.png") type("image/png")
    ) center / cover no-repeat;
  color: white;
}

.quote-card::after {
  background: linear-gradient(90deg, var(--brand), #fff);
}

.quote-card h2 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.quote-card p {
  max-width: 34rem;
  color: rgba(255, 255, 255, .82);
}

.faq-section {
  padding-top: clamp(38px, 6vw, 74px);
}

.faq-section .section-heading {
  align-items: start;
  grid-template-columns: 1fr;
}

.faq-list {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(37, 27, 23, .09);
  border-radius: 26px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: rgba(195, 131, 96, .28);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(77, 48, 36, .1);
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 3vw, 28px);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.25;
  list-style: none;
}

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

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-ghost);
  color: var(--brand-strong);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.faq-item[open] .faq-question::after {
  content: "-";
  transform: rotate(180deg);
  background: var(--brand);
  color: white;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(195, 131, 96, .38);
  outline-offset: -6px;
}

.faq-answer {
  padding: 0 clamp(18px, 3vw, 28px) 24px;
}

.faq-answer p {
  max-width: 74ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(340px, .9fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(37, 27, 23, .08);
}

.info-item .card-icon {
  margin: 0;
  width: 52px;
  height: 52px;
  border-radius: 17px;
}

.info-item strong {
  display: block;
  margin-bottom: 6px;
}

.info-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
  color: var(--ink);
  font-size: .94rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(37, 27, 23, .12);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(109, 94, 87, .62);
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.58;
}

.form-status {
  min-height: 24px;
  color: var(--success);
  font-weight: 800;
}

.map-card {
  overflow: hidden;
  padding: 0;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(.88) contrast(.98);
}

.footer {
  padding: 46px 0;
  border-top: 1px solid rgba(37, 27, 23, .08);
  background: rgba(255, 250, 246, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer p {
  max-width: 66ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-weight: 750;
  padding: 9px 12px;
  border-radius: 999px;
}

.footer-links .icon {
  width: 17px;
  height: 17px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-strong);
  background: var(--brand-ghost);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 82px 20px auto;
    z-index: 120;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 26px;
    background: rgba(255, 253, 251, .96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-grid,
  .section-heading,
  .split,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 12ch;
  }

  .trust-row,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .floating-note {
    inset-inline-start: 16px;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .nav-shell {
    min-height: 76px;
  }

  .logo {
    width: 148px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.5rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-pill {
    min-height: auto;
  }

  .hero-card {
    margin-top: 8px;
  }

  .hero-illustration {
    border-radius: 32px;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: -8px;
  }

  .section {
    padding: 62px 0;
  }

  .profile-card,
  .info-item,
  .step {
    grid-template-columns: 1fr;
  }

  .profile-photo-wrap {
    width: min(100%, 220px);
    max-width: 220px;
  }

  .avatar,
  .step::before {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .quote-card {
    min-height: 360px;
  }

  .quote-card h2 {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
