:root {
  --purple: #6f2c8f;
  --teal: #4fafa9;
  --pink: #f3c7d8;
  --beige: #f7f1e8;
  --blue: #23324d;
  --white: #ffffff;
  --ink: #1f2430;
  --muted: #667085;
  --line: rgba(35, 50, 77, 0.12);
  --shadow: 0 30px 90px rgba(35, 50, 77, 0.18);
  --soft-shadow: 0 18px 44px rgba(35, 50, 77, 0.11);
  --radius: 8px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Nunito Sans", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.34)),
    var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.section {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(35, 50, 77, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 226px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a:not(.btn) {
  position: relative;
  padding: 12px 0;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #6f2c8f 0%, #8d4bae 48%, #4fafa9 100%);
  box-shadow: 0 18px 40px rgba(111, 44, 143, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(111, 44, 143, 0.32);
}

.btn-ghost {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(111, 44, 143, 0.18);
  box-shadow: 0 14px 34px rgba(35, 50, 77, 0.08);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.btn-large {
  min-height: 58px;
  padding: 0 32px;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding: 118px 0 62px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.96) 0%, rgba(255, 255, 255, 0.7) 38%, rgba(255, 255, 255, 0.08) 64%),
    radial-gradient(circle at 9% 26%, rgba(243, 199, 216, 0.58), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(79, 175, 169, 0.22), transparent 28%),
    url("bg/01_bg_hero.jpg") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 2%;
  width: 620px;
  height: 620px;
  background: url("elementos/07_el_glow_purple.png") center / contain no-repeat;
  opacity: 0.26;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: url("elementos/14_el_wave_divider_bottom.png") bottom center / cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
  align-items: start;
  gap: 24px;
  min-height: calc(100svh - 180px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  max-width: 540px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54));
  box-shadow: 0 30px 90px rgba(35, 50, 77, 0.16);
  backdrop-filter: blur(14px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #7b348f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  line-height: 1.03;
}

h1,
h2 {
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.62rem, 4vw, 4.65rem);
}

h2 {
  font-size: clamp(2.05rem, 3.35vw, 4rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  margin: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin-top: 18px;
  color: #465068;
  font-size: 1.08rem;
}

.credential {
  margin-top: 18px;
  padding: 15px 18px;
  width: min(100%, 520px);
  border: 1px solid rgba(111, 44, 143, 0.14);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 32px rgba(35, 50, 77, 0.08);
  backdrop-filter: blur(12px);
}

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

.credential span {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.support-line {
  margin-top: 16px;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.96rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
  margin-top: 0;
  background: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  filter: saturate(0.92) contrast(1.025) brightness(1.04);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.92) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 0.02) 58%),
    linear-gradient(180deg, rgba(35, 50, 77, 0.05), rgba(35, 50, 77, 0.24));
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0));
  opacity: 0.86;
  pointer-events: none;
}

.hero-note {
  display: none;
  position: absolute;
  z-index: 4;
  max-width: 250px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(35, 50, 77, 0.14);
  backdrop-filter: blur(14px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  color: var(--blue);
  font-size: 0.92rem;
}

.hero-note span {
  color: #667085;
  font-size: 0.82rem;
}

.note-top {
  top: 28px;
  left: -24px;
}

.note-bottom {
  right: 22px;
  bottom: 34px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.split-layout.reverse .image-panel {
  order: 2;
}

.split-layout.reverse .section-copy {
  order: 1;
}

.section-copy p,
.section-heading p {
  color: #545f74;
  font-size: 1.02rem;
}

.section-copy p + p,
.section-heading p + p {
  margin-top: 16px;
}

.subtitle {
  margin-top: 10px;
  color: var(--purple) !important;
  font-weight: 800;
}

.highlight-text {
  margin-top: 22px !important;
  color: var(--purple) !important;
  font-weight: 800;
  font-size: 1.12rem !important;
}

.japan-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 48%, rgba(247, 241, 232, 0.58) 100%),
    url("imagens-psicologia/40_img_brasileiros_japao.jpg") right center / 52% auto no-repeat,
    url("bg/02_bg_section_light.jpg") center / cover;
}

.japan-section::before,
.services-section::before,
.topics-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("elementos/12_el_particles_soft.png") center / cover;
  opacity: 0.16;
  pointer-events: none;
}

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

.feature-card,
.service-card,
.topic-grid span,
.editorial-grid article {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
  box-shadow: 0 18px 42px rgba(35, 50, 77, 0.09);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card {
  min-height: 118px;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  color: var(--blue);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.service-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(111, 44, 143, 0.18), rgba(79, 175, 169, 0.22));
}

.feature-card:hover,
.service-card:hover,
.topic-grid span:hover,
.editorial-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 44, 143, 0.18);
  box-shadow: var(--soft-shadow);
}

.about-section {
  background:
    linear-gradient(100deg, rgba(35, 50, 77, 0.08), rgba(255, 255, 255, 0.88) 42%, rgba(247, 241, 232, 0.8)),
    radial-gradient(circle at 90% 10%, rgba(243, 199, 216, 0.46), transparent 32%),
    url("bg-2/21_bg_about.jpg") center / cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 72px;
}

.portrait {
  position: relative;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: -24px 24px 24px -24px;
  z-index: 0;
  border-radius: 28px 120px 28px 28px;
  background:
    linear-gradient(135deg, rgba(111, 44, 143, 0.18), rgba(79, 175, 169, 0.22)),
    url("elementos/12_el_particles_soft.png") center / cover;
}

.portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 28px 130px 28px 28px;
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(1.025) brightness(1.045);
}

.pill-grid,
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-grid span,
.check-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(35, 50, 77, 0.06);
  font-size: 0.92rem;
  font-weight: 700;
}

.check-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex: 0 0 auto;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(250, 248, 245, 0.84), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 15% 10%, rgba(79, 175, 169, 0.2), transparent 30%),
    url("bg-2/22_bg_servicos.jpg") center / cover;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.section-heading strong {
  display: inline-block;
  margin-top: 20px;
  color: var(--purple);
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.service-card img {
  width: 58px;
  margin-bottom: 28px;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 108px;
  height: 108px;
  right: -30px;
  top: -30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243, 199, 216, 0.38), rgba(79, 175, 169, 0.16));
}

.image-section {
  background: var(--white);
}

.online-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 232, 0.58)),
    url("bg-2/25_bg_contato.jpg") center / cover;
}

.online-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.58)),
    url("imagens-psicologia/3.png") center / cover;
  opacity: 0.18;
  filter: saturate(1.08);
  pointer-events: none;
}

.presencial-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 232, 0.64)),
    url("bg-2/24_bg_duvidas.jpg") center / cover;
}

.psycho-section {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.78), rgba(255, 255, 255, 0.9)),
    url("bg-2/22_bg_servicos(1).jpg") center / cover;
}

.image-panel {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(111, 44, 143, 0.24), rgba(79, 175, 169, 0.2)),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: -22px 26px 26px -22px;
  z-index: -1;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(243, 199, 216, 0.44), rgba(79, 175, 169, 0.24)),
    url("elementos/12_el_particles_soft.png") center / cover;
  box-shadow: 0 22px 70px rgba(111, 44, 143, 0.12);
  pointer-events: none;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 24px;
  background:
    linear-gradient(180deg, transparent 54%, rgba(35, 50, 77, 0.22)),
    linear-gradient(135deg, rgba(79, 175, 169, 0.08), rgba(35, 50, 77, 0.03));
  pointer-events: none;
}

.image-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease;
  filter: saturate(0.9) contrast(1.025) brightness(1.065);
}

.image-panel:hover img {
  transform: scale(1.035);
}

.topics-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 244, 247, 0.86)),
    radial-gradient(circle at 15% 5%, rgba(79, 175, 169, 0.2), transparent 30%),
    url("bg/03_bg_section_soft_accent.jpg") center / cover;
}

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

.topic-grid span {
  min-height: 76px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 800;
  text-align: center;
}

.blog-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.62)),
    url("bg-2/23_bg_blog.jpg") center / cover;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.editorial-grid article {
  min-height: 72px;
  padding: 18px;
  color: var(--blue);
  font-weight: 800;
}

.faq-section {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.88), rgba(255, 255, 255, 0.78)),
    url("bg/04_bg_faq.jpg") center / cover;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 62px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(35, 50, 77, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(35, 50, 77, 0.05);
  overflow: hidden;
}

summary {
  cursor: pointer;
  position: relative;
  padding: 22px 56px 22px 22px;
  color: var(--blue);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  font-size: 1.55rem;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 22px 22px;
  color: #566174;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(35, 50, 77, 0.86), rgba(111, 44, 143, 0.72)),
    url("bg/05_bg_cta_whatsapp.jpg") center / cover;
  color: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 50px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    url("elementos/12_el_particles_soft.png") center / cover;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card p {
  color: var(--white);
}

.contact-card .eyebrow::before {
  background: var(--pink);
}

.contact-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-card p + p {
  margin-top: 14px;
}

.contact-card .btn {
  margin-top: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  font-style: normal;
}

.contact-list span {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pink);
}

.contact-final {
  grid-column: 1 / -1;
  font-weight: 800;
}

.site-footer {
  padding: 68px 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(20, 28, 45, 0.95), rgba(35, 50, 77, 0.92)),
    url("bg-3/26_bg_footer_dark.jpg") center / cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.75fr;
  gap: 48px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 20px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
}

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

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

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .brand img {
    width: 196px;
  }

  .hero-grid,
  .split-layout,
  .about-grid,
  .faq-grid {
    gap: 44px;
  }
}

@media (max-width: 920px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 2px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .main-nav a {
    padding: 12px 10px !important;
  }

  .main-nav .btn {
    margin-top: 10px;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 0 24px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: calc(100svh - 120px);
    display: flex;
    align-items: flex-end;
  }

  .hero-grid,
  .split-layout,
  .about-grid,
  .faq-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .image-panel,
  .split-layout.reverse .section-copy {
    order: initial;
  }

  .hero-visual {
    inset: 0;
    max-width: none;
    margin: 0;
    border-radius: 0;
  }

  .hero-visual img {
    height: 100%;
    min-height: 100svh;
    aspect-ratio: auto;
    transform: none;
    border-radius: 0;
    object-position: 72% center;
  }

  .hero-visual::before {
    inset: 0;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(247, 241, 232, 0.18) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(247, 241, 232, 0.92) 100%),
      linear-gradient(90deg, rgba(247, 241, 232, 0.18), rgba(255, 255, 255, 0.02));
  }

  .hero-copy {
    align-self: end;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 14px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  }

  h1 {
    font-size: clamp(2.25rem, 8.8vw, 3.25rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.85rem, 7vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-subtitle,
  .section-copy p,
  .section-heading p {
    font-size: 0.98rem;
  }

  .image-panel {
    overflow: hidden;
  }

  .image-panel::before {
    inset: 0;
    border-radius: 28px;
  }

  .cards-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .section {
    padding: 66px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 148px;
  }

  .main-nav {
    inset: 72px 14px auto;
  }

  h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.55rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.58rem, 8vw, 2.05rem);
    line-height: 1.1;
  }

  h3 {
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 100svh;
    padding: 84px 0 18px;
  }

  .hero-grid {
    min-height: calc(100svh - 102px);
  }

  .hero-copy {
    padding: 18px;
    margin-bottom: 0;
    border-radius: 20px;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .credential {
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 14px;
  }

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

  .hero-visual img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 72% center;
    transform: none;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(247, 241, 232, 0.12) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(247, 241, 232, 0.96) 100%),
      linear-gradient(90deg, rgba(247, 241, 232, 0.06), rgba(255, 255, 255, 0));
  }

  .hero-note {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 10px;
  }

  .hero-visual::after {
    height: 140px;
    right: 0;
    bottom: 0;
  }

  .feature-grid,
  .cards-grid,
  .topic-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card {
    min-height: 118px;
  }

  .portrait::before {
    inset: 0;
  }

  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .image-panel {
    padding: 7px;
    border-radius: 24px;
  }

  .image-panel img,
  .image-panel::after {
    border-radius: 18px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .feature-card,
  .service-card,
  .topic-grid span,
  .editorial-grid article {
    border-radius: 16px;
  }
}

@media (max-width: 920px) {
  .split-layout.reverse .section-copy {
    order: 1;
  }

  .split-layout.reverse .image-panel {
    order: 2;
  }

  .split-layout {
    gap: 24px;
  }

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

  .pill-grid span,
  .check-grid span {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .contact-card {
    gap: 22px;
  }

  .contact-list {
    gap: 8px;
  }

  .contact-list span {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .site-footer {
    padding: 42px 0;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    max-width: 334px;
    padding: 15px;
    margin-left: 0;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56));
  }

  .hero-grid {
    align-items: flex-end;
  }

  .hero-visual img {
    object-position: 76% center;
  }

  h1 {
    font-size: clamp(1.72rem, 8.2vw, 2.18rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.88rem);
  }

  .hero-subtitle {
    font-size: 0.84rem;
  }

  .credential {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .btn {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .feature-grid,
  .cards-grid,
  .topic-grid,
  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .feature-card,
  .service-card,
  .topic-grid span,
  .editorial-grid article {
    min-height: 50px;
    padding: 11px 10px;
    font-size: 0.82rem;
    line-height: 1.25;
    box-shadow: 0 10px 22px rgba(35, 50, 77, 0.07);
  }

  .feature-card,
  .service-card {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .service-card img {
    width: 34px;
    margin: 0 auto 8px;
  }

  .feature-card::before,
  .service-card::before,
  .service-card::after {
    display: none;
  }

  .topic-grid span,
  .editorial-grid article {
    justify-content: center;
    text-align: center;
  }

  .editorial-grid {
    margin-top: 16px;
  }

  .highlight-text {
    margin-top: 14px !important;
    font-size: 0.98rem !important;
  }

  .section-copy p + p,
  .section-heading p + p {
    margin-top: 10px;
  }

  .image-panel {
    margin-top: 2px;
  }

  .contact-section {
    padding: 48px 0;
  }

  .contact-card {
    gap: 14px;
    padding: 16px;
  }

  .contact-card h2 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .contact-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-card p + p {
    margin-top: 8px;
  }

  .contact-card .btn {
    margin-top: 14px;
  }

  .contact-list {
    gap: 6px;
  }

  .contact-list span {
    padding: 8px 10px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .contact-list strong {
    display: inline;
    margin: 0 6px 0 0;
  }

  .contact-final {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .footer-logo {
    width: 138px;
    margin-bottom: 8px;
  }

  .site-footer {
    padding: 30px 0;
  }

  .footer-grid {
    gap: 12px;
  }

  .site-footer h2 {
    margin-bottom: 6px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .site-footer a {
    display: inline-block;
    margin: 4px 12px 0 0;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    touch-action: pan-y;
  }

  body,
  main,
  section,
  header,
  footer {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .container {
    width: calc(100% - 20px);
    max-width: 100%;
    min-width: 0;
  }

  .nav-wrap {
    gap: 10px;
  }

  .brand img {
    width: 134px;
  }

  .nav-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 100svh;
    padding: 78px 0 12px;
  }

  .hero-grid {
    min-height: calc(100svh - 90px);
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual img {
    min-height: 100svh;
    object-position: 78% center;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(247, 241, 232, 0.04) 0%, rgba(255, 255, 255, 0) 38%, rgba(247, 241, 232, 0.92) 100%);
  }

  .hero-copy {
    width: min(100%, 300px);
    max-width: 300px;
    padding: 12px;
    margin: 0 0 0 0;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(35, 50, 77, 0.13);
  }

  .hero-copy .eyebrow {
    margin-bottom: 7px;
    font-size: 0.58rem;
  }

  h1 {
    font-size: clamp(1.52rem, 7.2vw, 1.92rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.28rem, 6.1vw, 1.62rem);
    line-height: 1.1;
  }

  h3 {
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .credential {
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .hero-actions .btn {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .section {
    padding: 42px 0;
  }

  .split-layout,
  .about-grid,
  .faq-grid {
    gap: 18px;
  }

  .split-layout .image-panel,
  .split-layout .section-copy,
  .split-layout.reverse .image-panel,
  .split-layout.reverse .section-copy {
    order: initial;
  }

  .image-section .split-layout,
  .blog-section .split-layout {
    display: flex;
    flex-direction: column;
  }

  .image-section .image-panel,
  .blog-section .image-panel {
    order: 1;
  }

  .image-section .section-copy,
  .blog-section .section-copy {
    order: 2;
  }

  .section-copy p,
  .section-heading p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .section-copy p + p,
  .section-heading p + p {
    margin-top: 8px;
  }

  .highlight-text {
    margin-top: 10px !important;
    font-size: 0.88rem !important;
    line-height: 1.35;
  }

  .section-heading {
    margin-bottom: 20px;
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .feature-grid,
  .cards-grid,
  .topic-grid,
  .editorial-grid,
  .pill-grid,
  .check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }

  .feature-card,
  .service-card,
  .topic-grid span,
  .editorial-grid article,
  .pill-grid span,
  .check-grid span {
    min-height: 38px;
    padding: 8px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    line-height: 1.18;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(35, 50, 77, 0.055);
  }

  .pill-grid span,
  .check-grid span {
    display: flex;
    gap: 5px;
  }

  .check-grid span::before {
    width: 5px;
    height: 5px;
  }

  .service-card img {
    display: none;
  }

  .feature-card::before,
  .service-card::before,
  .service-card::after {
    display: none;
  }

  .image-panel {
    width: 100%;
    padding: 6px;
    border-radius: 20px;
    margin: 0;
  }

  .image-panel img {
    aspect-ratio: 1.12;
    border-radius: 15px;
  }

  .image-panel::before {
    display: none;
  }

  .image-panel::after {
    inset: 6px;
    border-radius: 15px;
  }

  .portrait img {
    max-height: 430px;
    object-position: center top;
  }

  .contact-section {
    padding: 38px 0;
  }

  .contact-card {
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .contact-card h2 {
    font-size: clamp(1.28rem, 6vw, 1.55rem);
  }

  .contact-card p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .contact-card .btn {
    margin-top: 10px;
  }

  .contact-list span {
    padding: 7px 9px;
    border-radius: 10px;
    font-size: 0.74rem;
  }

  .contact-final {
    font-size: 0.78rem;
  }

  .site-footer {
    padding: 24px 0;
  }

  .footer-grid {
    gap: 9px;
  }

  .footer-logo {
    width: 122px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 0.76rem;
  }
}

@media (max-width: 380px) {
  .feature-grid,
  .cards-grid,
  .topic-grid,
  .editorial-grid,
  .pill-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .service-card,
  .topic-grid span,
  .editorial-grid article,
  .pill-grid span,
  .check-grid span {
    font-size: 0.68rem;
    padding: 7px 6px;
  }

  .hero-copy {
    width: min(100%, 286px);
    max-width: 286px;
  }
}

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

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