:root {
  --cream: #fbf6ee;
  --cream-soft: #f4e8db;
  --cream-strong: #ecdccd;
  --teal: #073d4b;
  --teal-soft: #0d4d5d;
  --terracotta: #b45a3a;
  --terracotta-dark: #8c422c;
  --ink: #0b3442;
  --text: #3f4851;
  --line: #d49b84;
  --shadow-soft: 0 24px 70px rgba(35, 24, 14, 0.1);
  --title-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #efe8dd;
  color: var(--text);
  font-family: var(--body-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  background: linear-gradient(180deg, #fffaf3 0%, #efe7dd 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 253, 248, 0.96) 0 20%, transparent 52%),
    radial-gradient(circle at 48% 22%, rgba(255, 247, 239, 0.7) 0 14%, transparent 40%),
    linear-gradient(180deg, #fdf8f0 0%, #fbf3e9 64%, #f3e7da 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero__glow--left {
  top: 44px;
  left: 84px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 68%);
  opacity: 0.85;
}

.hero__glow--right {
  top: 116px;
  right: 210px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 246, 238, 0.82) 0%, rgba(255, 246, 238, 0) 72%);
  opacity: 0.72;
}

.hero__wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -4.4vw;
  height: 15.3vw;
  min-height: 118px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 64% 72% 0 0;
  transform: rotate(-2.5deg);
  z-index: 4;
}

.hero__container {
  position: relative;
  z-index: 6;
  width: 100%;
  padding: 8px 0 96px;
}

.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 48px;
  max-width: 1328px;
  width: calc(100% - 96px);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 320px;
  color: var(--teal);
  line-height: 1;
}

.brand__mark {
  width: 48px;
  height: 60px;
  flex: 0 0 auto;
  background: center / contain no-repeat url("assets/decor/logo-aline-mark.png");
}

.brand__text {
  display: grid;
  align-items: start;
  gap: 4px;
}

.brand__name {
  font-family: var(--title-font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand__role {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 0;
  margin-left: auto;
  color: #0a3240;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-label span,
.nav-toggle-label::before,
.nav-toggle-label::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: var(--teal);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-toggle-label::before { top: 12px; }
.nav-toggle-label span { top: 50%; transform: translateY(-50%); }
.nav-toggle-label::after { bottom: 12px; }

/* Hamburger transform when checked */
.nav-toggle:checked + .nav-toggle-label::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav__link {
  position: relative;
  padding: 4px 0 8px;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.nav__link--active::after,
.nav__link:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 35px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--terracotta), var(--terracotta-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(185, 91, 56, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(185, 91, 56, 0.23);
}

.button img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  color: #fff;
  filter: brightness(0) invert(1);
}

.button--small {
  min-height: 58px;
  align-self: center;
  margin-top: 6px;
  padding: 0 30px;
  font-size: 15px;
  white-space: nowrap;
}

.button--small img {
  width: 20px;
  height: 20px;
}

.button--outline {
  min-width: 290px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
  box-shadow: none;
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: min(660px, 55%) 1fr;
  align-items: center;
  gap: 18px;
  padding-left: max(48px, calc((100vw - 1328px) / 2 + 48px));
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 670px;
  margin-top: -80px;
  padding-bottom: 24px;
}

.hero__title {
  max-width: 648px;
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(53px, 4.6vw, 62px);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero__title-accent {
  position: relative;
  left: 2px;
  top: 5px;
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}

.hero__lead {
  max-width: 558px;
  margin: 38px 0 42px;
  color: #434b53;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.hero__actions {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__mobile-secondary {
  display: inline-flex;
}

.intro__actions-mobile {
  display: none;
}

.hero__visual {
  --hero-mist-bottom: -18px;
  --hero-mist-height: 170px;
  position: relative;
  z-index: 8;
  justify-self: stretch;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  isolation: isolate;
  padding-top: 20px;
}

.hero__visual::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: var(--hero-mist-bottom);
  height: var(--hero-mist-height);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 251, 246, 0.18) 28%,
      rgba(255, 249, 241, 0.46) 56%,
      rgba(255, 248, 239, 0.84) 82%,
      rgba(255, 248, 239, 0.98) 100%
    );
  filter: blur(12px);
  pointer-events: none;
  z-index: 6;
}

.hero__frame {
  position: absolute;
  top: 16px;
  bottom: 12px;
  left: 12px;
  right: -12px;
  border: 1.5px solid rgba(201, 109, 76, 0.45);
  border-radius: 48px;
  z-index: 2;
  pointer-events: none;
}

.hero__photo-bg {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 95%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  border-radius: 48px;
}

.hero__photo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 4;
  filter: drop-shadow(0 20px 32px rgba(51, 37, 25, 0.08));
  border-radius: 48px;
}

.plant {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.plant--left {
  left: -8%;
  bottom: 20px;
  width: 176px;
  opacity: 0.85;
  transform: rotate(-7deg);
}

.plant--right {
  right: -5%;
  bottom: 0px;
  width: 174px;
  opacity: 0.95;
}









/* --- Intro Section --- */
.intro {
  position: relative;
  width: 100%;
  margin-top: -174px;
  padding: 0 0 12px;
  background: linear-gradient(180deg, #fbf5ed 0%, #f7eee2 70%, #f4e9dc 100%);
  z-index: 7;
}

.intro__top-wave {
  position: absolute;
  top: -84px;
  left: -4%;
  right: -4%;
  height: 124px;
  background: linear-gradient(
    180deg,
    rgba(251, 245, 237, 0) 0%,
    rgba(251, 245, 237, 0.42) 28%,
    rgba(251, 245, 237, 0.82) 62%,
    #fbf5ed 100%
  );
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.intro__top-wave::before,
.intro__top-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.intro__top-wave::before {
  top: 0;
  height: 18px;
  background: linear-gradient(180deg, rgba(251, 245, 237, 0.08), rgba(251, 245, 237, 0));
  opacity: 0.9;
}

.intro__top-wave::after {
  bottom: 0;
  height: 22px;
  background: linear-gradient(180deg, rgba(251, 245, 237, 0), rgba(251, 245, 237, 0.22));
  opacity: 1;
}

.intro__container {
  position: relative;
  width: 100%;
  z-index: 2;
}

.intro__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.95fr);
  align-items: start;
  gap: 50px;
  width: 100%;
  padding: 34px max(48px, calc((100vw - 1328px) / 2 + 48px)) 28px;
  isolation: isolate;
}

.intro__panel::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -8px;
  height: 46px;
  background: linear-gradient(
    180deg,
    rgba(244, 233, 220, 0) 0%,
    rgba(244, 233, 220, 0.42) 52%,
    rgba(244, 233, 220, 0.94) 100%
  );
  border-radius: 0;
  z-index: -1;
}

.intro__content {
  position: relative;
  max-width: 345px;
  padding-top: 4px;
  z-index: 2;
}

.intro__title {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(32px, 2.6vw, 40px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.intro__lead {
  margin: 0;
  max-width: 310px;
  color: #49515a;
  font-size: 14px;
  line-height: 1.68;
}

.intro__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 0;
}

.feature__icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  opacity: 0.95;
}

.feature__title {
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.feature__desc {
  margin: 0;
  color: #4d555d;
  font-size: 17px;
  line-height: 1.66;
}

.intro__cta {
  display: none;
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}

.intro__plant {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.intro__plant--bottom {
  left: 23px;
  top: 64px;
  bottom: auto;
  width: 206px;
  opacity: 0.82;
  z-index: 1;
}

/* --- Audience Section --- */
.audience {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 74px 0 108px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9) 0 14%, transparent 40%),
    linear-gradient(180deg, #fbf7f1 0%, #ffffff 34%, #ffffff 100%);
}

.audience__plant--right {
  position: absolute;
  right: -12px;
  top: 16px;
  width: 148px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.audience__wave {
  position: absolute;
  top: -14px;
  left: -4%;
  right: -4%;
  height: 58px;
  background: #fbf7f1;
  border-radius: 0 0 50% 50% / 0 0 56% 56%;
  opacity: 0.98;
}

.audience__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 max(48px, calc((100vw - 1328px) / 2 + 48px));
}

.audience__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  text-align: center;
}

.audience__title {
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.032em;
}

.audience__decorator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 190px;
}

.intro__content .audience__decorator {
  margin: 8px 0 20px;
}

.audience__decorator-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.9;
}

.audience__decorator-line {
  width: 68px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 109, 76, 0.18), rgba(201, 109, 76, 0.72), rgba(201, 109, 76, 0.18));
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.audience-card {
  display: grid;
  grid-template-columns: 65px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon desc";
  column-gap: 18px;
  row-gap: 12px;
  min-height: 208px;
  padding: 28px 30px 26px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(221, 202, 185, 0.64);
  border-radius: 20px;
  box-shadow:
    0 10px 28px rgba(36, 29, 20, 0.05),
    0 2px 10px rgba(36, 29, 20, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 155, 132, 0.72);
  box-shadow:
    0 16px 36px rgba(36, 29, 20, 0.08),
    0 4px 14px rgba(36, 29, 20, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.audience-card__icon {
  grid-area: icon;
  width: 53px;
  height: 53px;
  object-fit: contain;
  opacity: 0.86;
  margin-top: 4px;
}

.audience-card__title {
  grid-area: title;
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.audience-card__desc {
  grid-area: desc;
  margin: 0;
  color: #4e5761;
  font-size: 14px;
  line-height: 1.68;
}

/* --- Online Care Section --- */
.online-care {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 76px 0 92px;
  background: linear-gradient(180deg, #fffaf3 0%, #fbf4ea 100%);
}

.online-care__wave-top,
.online-care__wave-bottom {
  position: absolute;
  left: -4%;
  right: -4%;
  pointer-events: none;
}

.online-care__wave-top {
  top: 0;
  height: 44px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0));
}

.online-care__wave-bottom {
  bottom: -1px;
  height: 128px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0) 0%, rgba(247, 238, 227, 0.94) 100%);
  border-radius: 50% 50% 0 0 / 52% 52% 0 0;
}

.online-care__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 46px;
  width: 100%;
  padding: 0 max(48px, calc((100vw - 1328px) / 2 + 48px));
}

.online-care__visual {
  position: relative;
  min-height: 560px;
}

.online-care__blob {
  position: absolute;
  top: 46px;
  left: 34px;
  width: 610px;
  height: 550px;
  background: radial-gradient(circle at 42% 42%, rgba(247, 231, 217, 0.98) 0%, rgba(247, 231, 217, 0.78) 52%, rgba(247, 231, 217, 0.14) 74%, rgba(247, 231, 217, 0) 100%);
  filter: blur(2px);
  opacity: 0.98;
}

.online-care__badge {
  position: absolute;
  top: 30px;
  left: 4px;
  z-index: 5;
  width: 150px;
}

.online-care__badge img {
  width: 100%;
  opacity: 0.96;
}

.laptop {
  display: none;
}

.laptop__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.laptop__screen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.laptop__base {
  display: none;
}

.laptop__trackpad {
  display: none;
}

.online-care__back-plant {
  position: absolute;
  bottom: -10px;
  left: -8px;
  width: 180px;
  opacity: 0.68;
  pointer-events: none;
  z-index: 2;
}

.online-care__plant {
  position: absolute;
  top: 140px;
  left: calc(50% + 20px);
  transform: translateX(-50%);
  width: 75%;
  right: auto;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
}

.online-care__content {
  max-width: 700px;
  padding-top: 12px;
}

.online-care__title {
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(58px, 5.8vw, 86px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.online-care__lead {
  max-width: 560px;
  margin: 28px 0 44px;
  color: #43505a;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.55;
}

.online-care__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 30px 36px;
  max-width: 680px;
  margin-top: 8px;
}

.online-feature {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 0;
  text-align: left;
}

.online-feature + .online-feature {
  padding-left: 0;
}

.online-feature + .online-feature::before {
  content: none;
}

.online-feature__icon {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.online-feature__title {
  margin: 3px 0 8px;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.online-feature__desc {
  margin: 0;
  color: #505863;
  font-size: 15px;
  line-height: 1.7;
}

/* --- Process Section --- */
.process__plant--left {
  position: absolute;
  left: -14px;
  bottom: 48px;
  width: 136px;
  opacity: 0.58;
  pointer-events: none;
  z-index: 1;
}

.process__plant--right {
  position: absolute;
  right: -14px;
  top: 48px;
  width: 144px;
  opacity: 0.58;
  pointer-events: none;
  z-index: 1;
}

.process {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 0 98px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88) 0 16%, transparent 50%),
    linear-gradient(180deg, #fdf8f1 0%, #fbf2e8 100%);
}

.process::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -42px;
  height: 138px;
  background: linear-gradient(180deg, rgba(252, 244, 233, 0), rgba(247, 236, 223, 0.92));
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
}

.process__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 max(48px, calc((100vw - 1328px) / 2 + 48px));
}

.process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  text-align: center;
}

.process__title {
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(54px, 5.3vw, 74px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.process__title-leaf {
  width: 56px;
  height: 56px;
  opacity: 0.88;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.process__grid {
  display: grid;
  width: min(100%, 1220px);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  max-width: none;
  margin: 0 auto;
  padding-top: 0;
}

.process-card__step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  margin-bottom: 38px;
}

.process-card__step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--terracotta), rgba(201, 109, 76, 0.1));
  transform: translateY(-50%);
  z-index: 0;
}

.process-card:last-child .process-card__step::after {
  display: none;
}

.process-card__step-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(209, 128, 94, 0.4);
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  font-family: var(--body-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(201, 109, 76, 0.08);
}

.process-card__icon {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 26px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(201, 109, 76, 0.12));
}

/* Ajuste fino de escala para equilíbrio visual */
.process-card:nth-child(2) .process-card__icon,
.process-card:nth-child(3) .process-card__icon {
  padding: 12px;
}


.process-card__title {
  margin: 0 0 16px;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

.process-card__desc {
  margin: 0;
  color: #4a5661;
  font-size: 15px;
  line-height: 1.74;
}

.process-card__desc a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.process-card__desc a:hover {
  color: var(--terracotta);
}

/* --- About Section --- */
.about-psychologist {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 96px 0 94px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.84) 0 16%, transparent 46%),
    linear-gradient(180deg, #fff9f1 0%, #fbf3e9 100%);
}

.about-psychologist::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: -54px;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0), rgba(255, 250, 243, 0.86) 55%, rgba(255, 249, 241, 0.98) 100%);
  pointer-events: none;
}

.about-psychologist__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 64px;
  width: 100%;
  padding: 0 max(48px, calc((100vw - 1328px) / 2 + 48px));
}

.about-psychologist__visual {
  position: relative;
  min-height: 660px;
  isolation: isolate;
}

.about-psychologist__shape {
  position: absolute;
  top: 24px;
  left: 36px;
  right: -12px;
  bottom: 24px;
  border: 1.5px solid rgba(201, 109, 76, 0.45);
  border-radius: 36px;
  z-index: 1;
  transform: rotate(3deg);
  pointer-events: none;
}

.about-psychologist__plant {
  position: absolute;
  right: -48px;
  left: auto;
  top: 24px;
  width: 176px;
  opacity: 0.74;
  transform: scaleX(-1);
  z-index: 3;
}

.about-psychologist__photo {
  position: absolute;
  top: 32px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 64px);
  object-fit: cover;
  object-position: 63% center;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(51, 37, 25, 0.08);
  z-index: 2;
}

.about-psychologist__content {
  max-width: 820px;
  padding-top: 28px;
}

.about-psychologist__title {
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(58px, 6vw, 90px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.about-psychologist__content .audience__decorator {
  margin: 26px 0 28px;
}

.about-psychologist__text {
  margin: 0 0 20px;
  color: #46525d;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.62;
}

.about-psychologist__text:last-child {
  margin-bottom: 0;
}

.about-psychologist__profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(214, 184, 160, 0.58);
}

.about-psychologist__profile-block {
  min-width: 0;
}

.about-psychologist__profile-block--wide {
  grid-column: 1 / -1;
}

.about-psychologist__profile-title {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}

.about-psychologist__profile-text,
.about-psychologist__education {
  margin: 0;
  color: #46525d;
  font-size: 16px;
  line-height: 1.68;
}

.about-psychologist__education {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.about-psychologist__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(214, 184, 160, 0.64);
}

.about-detail {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(214, 184, 160, 0.44);
}

.about-detail:last-child {
  border-bottom: 0;
}

.about-detail__icon {
  width: 56px;
  height: 56px;
  color: var(--terracotta);
}

.about-detail__icon img,
.about-detail__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-detail__text {
  margin: 0;
  color: #41505c;
  font-size: 19px;
  line-height: 1.5;
}

.about-psychologist__wave {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -20px;
  height: 124px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0), rgba(247, 236, 223, 0.92));
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
}

/* --- FAQ Section --- */
.faq {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 104px 0 94px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.86) 0 14%, transparent 46%),
    linear-gradient(180deg, #fffaf2 0%, #fbf3e8 100%);
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  pointer-events: none;
}

.faq::before {
  top: -42px;
  height: 88px;
  background: linear-gradient(180deg, rgba(251, 243, 232, 0), rgba(251, 243, 232, 0.88) 60%, rgba(255, 250, 242, 0.98) 100%);
}

.faq::after {
  bottom: -38px;
  height: 92px;
  background: linear-gradient(180deg, rgba(251, 243, 232, 0), rgba(248, 233, 220, 0.62) 58%, rgba(246, 226, 209, 0.92) 100%);
}

.faq__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 max(48px, calc((100vw - 1328px) / 2 + 48px));
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
  text-align: center;
}

.faq__title {
  margin: 0;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(54px, 5.8vw, 82px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.faq__decorator {
  width: 78px;
  opacity: 0.84;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.faq-card {
  border: 1px solid rgba(219, 189, 165, 0.74);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.7);
  box-shadow: 0 14px 30px rgba(55, 35, 16, 0.03);
  align-self: start;
}

.faq-card[open] {
  background: rgba(255, 252, 248, 0.9);
}

.faq-card__summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  list-style: none;
  cursor: pointer;
}

.faq-card__summary::-webkit-details-marker {
  display: none;
}

.faq-card__icon {
  width: 46px;
  height: 46px;
  color: var(--terracotta);
}

.faq-card__icon img,
.faq-card__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-card__question {
  color: var(--teal);
  font-size: 20px;
  line-height: 1.45;
}

.faq-card__plus {
  color: var(--terracotta);
  font-size: 34px;
  line-height: 1;
  justify-self: end;
  transition: transform 0.2s ease;
}

.faq-card[open] .faq-card__plus {
  transform: rotate(45deg);
}

.faq-card__answer {
  margin: 0;
  padding: 0 28px 24px 98px;
  color: #4b5661;
  font-size: 16px;
  line-height: 1.72;
}

.faq__plant {
  position: absolute;
  right: -6px;
  bottom: -8px;
  width: 176px;
  opacity: 0.8;
  transform: scaleX(-1);
  pointer-events: none;
}

/* --- CTA Footer Section --- */
.cta-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cta-footer__top {
  position: relative;
  padding: 74px 0 0;
  background:
    radial-gradient(circle at 24% 24%, rgba(247, 217, 195, 0.55) 0 18%, transparent 48%),
    linear-gradient(180deg, #f8eadc 0%, #f4dcc8 100%);
}

.cta-footer__top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 118px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0));
}

.cta-footer__top::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -22px;
  height: 74px;
  background: linear-gradient(180deg, rgba(244, 220, 200, 0), rgba(10, 58, 73, 0.1) 54%, rgba(10, 58, 73, 0.22) 100%);
  pointer-events: none;
}

.cta-footer__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 0 max(48px, calc((100vw - 1328px) / 2 + 48px)) 84px;
}

.cta-footer__intro {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.cta-footer__badge {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
  border: 2px solid rgba(201, 109, 76, 0.6);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.58);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.48);
}

.cta-footer__badge img {
  width: 74px;
}

.cta-footer__title {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: var(--title-font);
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.cta-footer__lead {
  max-width: 520px;
  margin: 0;
  color: #43515c;
  font-size: 22px;
  line-height: 1.6;
}

.cta-footer__action {
  text-align: center;
}

.cta-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 470px;
  min-height: 116px;
  padding: 0 42px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--terracotta), var(--terracotta-dark));
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-shadow:
    0 18px 34px rgba(167, 108, 78, 0.18),
    0 3px 8px rgba(140, 66, 44, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.cta-footer__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 22px 38px rgba(167, 108, 78, 0.22),
    0 5px 10px rgba(140, 66, 44, 0.22);
}

.cta-footer__button-icon {
  width: 42px;
  height: 42px;
}

.cta-footer__button-icon svg {
  width: 100%;
  height: 100%;
}

.cta-footer__button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cta-footer__contact-note {
  margin: 18px 0 0;
  color: #4b5661;
  font-size: 18px;
}

.cta-footer__plant {
  position: absolute;
  pointer-events: none;
}

.cta-footer__plant--right {
  right: 24px;
  top: 28px;
  width: 196px;
  opacity: 0.5;
  transform: scaleX(-1);
}

.site-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #0a3a49 0%, #072f3b 100%);
  color: #f7efe5;
}

.site-footer__wave {
  position: absolute;
  left: -4%;
  right: -4%;
  top: -72px;
  height: 130px;
  background: linear-gradient(180deg, rgba(9, 56, 70, 0), rgba(9, 56, 70, 0.16) 38%, rgba(9, 56, 70, 0.34) 100%);
  border-radius: 50% 50% 0 0 / 56% 56% 0 0;
}

.site-footer__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
  width: 100%;
  padding: 86px max(48px, calc((100vw - 1328px) / 2 + 48px)) 40px;
}

.site-footer__brand {
  position: relative;
}

.site-footer__brand-branch {
  width: 56px;
  margin-bottom: 14px;
  opacity: 0.88;
}

.site-footer__brand-name {
  margin: 0 0 10px;
  color: #fff8f0;
  font-family: var(--title-font);
  font-size: 30px;
  line-height: 1.08;
}

.site-footer__brand-role {
  margin: 0;
  color: #d89a7f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-footer__text,
.site-footer__contacts {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__text p {
  margin: 0 0 10px;
  color: rgba(255, 248, 240, 0.94);
  font-size: 18px;
  line-height: 1.65;
}

.site-footer__text p:last-child {
  margin-bottom: 0;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 248, 240, 0.96);
  font-size: 18px;
}

.site-footer__contact-icon {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}

.site-footer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px 20px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 248, 240, 0.88);
  font-size: 16px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: var(--terracotta);
}

/* --- Responsive Adjustments for New Sections --- */

@media (max-width: 1420px) {
  .button--small {
    display: none;
  }
}

@media (max-width: 1180px) {
  .hero__container {
    padding-top: 4px;
  }

  .site-header {
    align-items: center;
    margin-bottom: 4px;
  }

  .nav {
    gap: 20px;
    margin-top: 0;
    font-size: 15px;
  }

  .brand {
    min-width: 280px;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__mark {
    width: 42px;
    height: 52px;
  }

  .hero__grid {
    gap: 20px;
  }

  .hero__content {
    max-width: 590px;
    padding-bottom: 38px;
  }

  .hero__title {
    max-width: 560px;
    font-size: clamp(49px, 4.15vw, 60px);
  }

  .hero__lead {
    max-width: 500px;
    font-size: 18px;
  }

  .hero__visual {
    min-height: 628px;
    width: 100%;
  }

  .hero__photo-bg {
    right: 5px;
    width: 100%;
  }

  .hero__photo {
    right: 0;
    width: 100%;
  }

  .plant--right {
    right: -15%;
    width: 156px;
  }

  .plant--left {
    left: 0;
    width: 150px;
  }

  .intro {
    margin-top: -72px;
  }

  .intro__panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px max(40px, calc((100vw - 1328px) / 2 + 40px)) 38px;
  }

  .intro__content {
    max-width: 620px;
  }

  .intro__lead {
    max-width: 560px;
  }

  .intro__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .intro__plant--bottom {
    left: 27px;
    top: 52px;
    width: 196px;
  }

  .audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .online-care__container,
  .process__container {
    padding: 0 max(40px, calc((100vw - 1328px) / 2 + 40px));
  }

  .online-care__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .online-care__visual {
    min-height: 460px;
  }

  .online-care__content {
    max-width: 100%;
    text-align: center;
  }

  .online-care__lead {
    margin-inline: auto;
  }

  .online-care__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 34px;
    margin-inline: auto;
  }

  .online-feature:nth-child(3)::before {
    content: none;
  }

  .process {
    padding-top: 90px;
  }

  .process__header {
    margin-bottom: 46px;
  }

  .process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 780px);
    gap: 34px 38px;
  }

  .process-card {
    max-width: none;
  }

  .process-card__step {
    margin-bottom: 32px;
  }

  .process-card:nth-child(2n) .process-card__step-line {
    display: none;
  }

  .about-psychologist__container,
  .faq__container,
  .cta-footer__container,
  .site-footer__container {
    padding-left: max(40px, calc((100vw - 1328px) / 2 + 40px));
    padding-right: max(40px, calc((100vw - 1328px) / 2 + 40px));
  }

  .about-psychologist__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-psychologist__visual {
    order: -1;
    min-height: 520px;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-psychologist__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .about-psychologist__content .audience__decorator {
    justify-content: center;
  }

  .about-psychologist__profile {
    text-align: left;
  }

  .about-psychologist__details {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(214, 184, 160, 0.64);
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .cta-footer__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__text,
  .site-footer__contacts {
    padding-left: 0;
    border-left: 0;
  }

  .laptop {
    display: block;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__container {
    padding-bottom: 72px;
  }

  .site-header {
    justify-content: space-between;
    align-items: center;
    padding-inline: 24px;
    width: 100%;
    margin-bottom: 36px;
  }

  .brand {
    justify-content: flex-start;
    min-width: auto;
  }

  .brand__text {
    justify-items: start;
  }

  .nav-toggle-label {
    display: flex;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    padding: 120px 40px;
    background: var(--cream);
    z-index: 100;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }

  .nav-toggle:checked ~ .nav {
    right: 0;
  }

  .nav__link {
    font-size: 20px;
    padding: 8px 0;
    width: fit-content;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 0;
    max-width: min(calc(100% - 36px), 720px);
    margin-inline: auto;
  }

  .hero__content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0;
    padding-inline: 2px;
    text-align: left;
  }

  .hero__title {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    margin-bottom: 0;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }

  .hero__title-accent {
    display: inline;
    left: 0;
    top: 0;
  }

  .hero__lead {
    max-width: none;
    margin: 13px 0 28px;
    font-size: 18px;
    line-height: 1.62;
  }

  .hero__actions {
    display: none;
  }

  .hero__mobile-secondary {
    display: none;
  }

  .hero__visual {
    width: 100%;
    max-width: 620px;
    min-height: 620px;
    margin: -30px auto -74px;
  }

  .hero__photo-bg,
  .hero__photo {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__photo-bg {
    width: min(610px, 110%);
  }

  .hero__photo {
    width: min(610px, 110%);
  }

  .plant--left {
    left: 0;
  }

  .plant--right {
    right: -6%;
  }

  .hero__wave {
    height: 150px;
  }

  .hero__glow--left {
    top: 20px;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translateX(-50%);
  }

  .hero__glow--right {
    right: auto;
    left: 50%;
    top: 250px;
    width: 360px;
    height: 360px;
    transform: translateX(-50%);
  }

  .intro {
    margin-top: -104px;
  }

  .intro__content {
    margin-top: -67px;
    z-index: 8;
  }

  .intro__top-wave {
    top: -48px;
    height: 96px;
  }

  .intro__top-wave::before,
  .intro__top-wave::after {
    height: auto;
  }

  .intro__panel {
    padding: 28px 18px 34px;
  }

  .intro__content {
    max-width: 100%;
    margin-top: -30px;
    text-align: center;
  }

  .intro__title {
    max-width: 14ch;
    margin-inline: auto;
  }

  .intro__lead {
    max-width: 620px;
    margin-inline: auto;
  }

  .audience__container {
    padding: 0 18px;
  }

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

  .intro__cta {
    display: inline-flex;
    margin-top: 2px;
  }

  .intro__actions-mobile {
    display: flex;
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .feature {
    max-width: none;
    min-height: 100%;
    padding: 20px 18px;
    border: 1px solid rgba(221, 202, 185, 0.64);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 10px 24px rgba(36, 29, 20, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    gap: 12px;
  }

  .feature__icon {
    width: 56px;
    height: 56px;
  }

  .feature__title {
    font-size: 20px;
  }

  .intro__plant--bottom {
    left: 11px;
    top: 196px;
    bottom: auto;
    width: 153px;
  }

  .audience {
    padding: 62px 0 84px;
  }

  .audience__wave {
    height: 46px;
  }

  .online-care {
    padding: 56px 0 72px;
  }

  .online-care__container,
  .process__container {
    padding: 0 18px;
  }

  .online-care__visual {
    min-height: 400px;
  }

  .online-care__badge {
    width: 116px;
    top: 12px;
  }

  .online-care__blob {
    left: 14px;
    width: 470px;
    height: 420px;
  }

  .laptop {
    position: relative;
    display: block;
    z-index: 1;
    top: 50px;
    left: 16px;
    right: 0;
    bottom: auto;
    transform: none;
  }

  .online-care__back-plant {
    width: 140px;
  }

  .online-care__plant {
    top: 124px;
    left: calc(50% + 10px);
    width: 87%;
    z-index: 3;
  }

  .online-care__features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .online-feature {
    padding-right: 0;
    text-align: left;
  }

  .online-feature__icon {
    justify-self: center;
    transform-origin: center top;
  }

  .online-feature:nth-child(2) .online-feature__icon {
    transform: translateX(-10px) scale(0.76);
  }

  .online-feature:nth-child(3) .online-feature__icon {
    transform: translateX(-8px) scale(0.72);
  }

  .online-feature:nth-child(4) .online-feature__icon {
    transform: translateX(-10px) scale(0.72);
  }

  .online-feature + .online-feature {
    padding-left: 0;
  }

  .online-feature + .online-feature::before {
    left: 0;
    right: 0;
    top: -12px;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(214, 181, 156, 0), rgba(214, 181, 156, 0.56), rgba(214, 181, 156, 0));
  }

  .process {
    padding: 78px 0 72px;
  }

  .process__header {
    margin-bottom: 40px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
  }

  .process-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .process-card__step {
    display: none;
  }

  .process-card__icon {
    margin-top: 0;
  }

  .process-card:nth-child(3) .process-card__icon {
    transform: scale(1.2);
  }

  .process-card:nth-child(2) .process-card__icon {
    transform: scale(1.2);
  }

  .about-psychologist,
  .faq {
    padding: 74px 0 72px;
  }

  .about-psychologist__container,
  .faq__container,
  .cta-footer__container,
  .site-footer__container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-psychologist__visual {
    min-height: 440px;
  }

  .about-psychologist__shape {
    inset: 24px 4px 20px;
    border-radius: 30px;
  }

  .about-psychologist__photo {
    top: 30px;
    left: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 58px);
    border-radius: 24px;
  }

  .about-psychologist__plant {
    width: 110px;
    right: -28px;
    left: auto;
    top: -12px;
  }

  .about-detail {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .about-detail__icon {
    width: 44px;
    height: 44px;
  }

  .about-detail__text {
    font-size: 17px;
  }

  .faq-card__summary {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    padding: 22px 22px;
  }

  .faq-card__question {
    font-size: 18px;
  }

  .faq-card__answer {
    padding: 0 22px 22px 86px;
    font-size: 15px;
  }

  .cta-footer__top {
    padding-top: 56px;
  }

  .cta-footer__intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-footer__badge {
    width: 112px;
    height: 112px;
  }

  .cta-footer__badge img {
    width: 62px;
  }

  .cta-footer__button {
    min-width: 0;
    width: 100%;
    min-height: 88px;
    font-size: 21px;
  }

  .cta-footer__plant--right {
    width: 128px;
    right: 8px;
  }

  .site-footer__container {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero__container {
    padding-top: 2px;
  }

  .hero__grid {
    max-width: min(calc(100% - 28px), 480px);
  }

  .site-header {
    justify-content: space-between;
    padding-inline: 14px;
    margin-bottom: 28px;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__mark {
    width: 36px;
    height: 44px;
  }

  .brand__role {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero__title {
    max-width: none;
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -0.025em;
  }

  .hero__lead {
    margin: 11px 0 24px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero__actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 22px;
    font-size: 15px;
  }

  .button--outline {
    min-width: 0;
  }

  .hero__visual {
    min-height: 512px;
  }

  .hero__photo-bg {
    width: 118%;
  }

  .hero__photo {
    width: 118%;
  }

  .plant--left {
    left: -9%;
    width: 130px;
  }

  .plant--right {
    right: -16%;
    width: 135px;
  }

  .hero__wave {
    min-height: 96px;
  }

  .intro {
    margin-top: -84px;
    padding-bottom: 10px;
  }

  .intro__panel {
    padding: 28px 14px 44px;
  }

  .intro__top-wave {
    top: -34px;
    height: 72px;
  }

  .intro__top-wave::before,
  .intro__top-wave::after {
    height: auto;
  }

  .intro__panel {
    gap: 28px;
    padding: 24px 14px 28px;
  }

  .intro__content {
    margin-top: -49px;
    z-index: 8;
  }

  .intro__panel::after {
    bottom: -8px;
    height: 36px;
  }

  .intro__title {
    font-size: 33px;
  }

  .intro__lead,
  .feature__desc,
  .audience-card__desc {
    font-size: 14px;
  }

  .intro__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .intro__cta {
    width: 100%;
    margin-top: 4px;
  }

  .intro__actions-mobile {
    margin-top: 2px;
  }

  .feature {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon desc";
    align-items: start;
    column-gap: 14px;
    row-gap: 6px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .feature__icon {
    grid-area: icon;
    width: 52px;
    height: 52px;
    margin-top: 2px;
  }

  .feature__title {
    grid-area: title;
    font-size: 19px;
    line-height: 1.2;
  }

  .feature__desc {
    grid-area: desc;
    line-height: 1.55;
  }

  .intro__plant--bottom {
    width: 117px;
    left: -10px;
    top: 164px;
    bottom: auto;
  }

  .audience {
    padding: 54px 0 72px;
  }

  .audience__container {
    padding: 0 14px;
  }

  .audience__header {
    margin-bottom: 32px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card {
    min-height: 0;
    padding: 24px 22px;
    grid-template-columns: 59px minmax(0, 1fr);
    column-gap: 14px;
  }

  .online-care {
    padding: 44px 0 58px;
  }

  .online-care__container,
  .process__container {
    padding: 0 14px;
  }

  .online-care__visual {
    min-height: 330px;
  }

  .online-care__badge {
    width: 92px;
    left: 0;
    top: 6px;
  }

  .online-care__blob {
    left: 2px;
    top: 42px;
    width: 322px;
    height: 286px;
  }

  .laptop {
    position: relative;
    display: block;
    z-index: 1;
    top: 40px;
    left: 12px;
    right: 0;
    bottom: auto;
    transform: none;
  }

  .laptop__screen {
    width: 100%;
  }

  .online-care__back-plant {
    width: 110px;
    bottom: -6px;
    left: -4px;
  }

  .online-care__plant {
    top: 112px;
    left: calc(50% + 10px);
    width: 92%;
    z-index: 3;
  }

  .online-care__title {
    font-size: 50px;
  }

  .online-care__lead {
    margin: 22px 0 30px;
    font-size: 18px;
  }

  .online-feature__icon {
    width: 58px;
    height: 58px;
  }

  .online-feature__title {
    font-size: 21px;
  }

  .online-feature__desc {
    font-size: 14px;
  }

  .process {
    padding: 60px 0 56px;
  }

  .process__header {
    margin-bottom: 30px;
  }

  .process__title {
    font-size: 48px;
  }

  .process__title-leaf {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .process-card__step {
    height: 58px;
    margin-bottom: 20px;
  }

  .process-card__step-badge {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .process-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    font-size: 44px;
  }

  .process-card__title {
    font-size: 21px;
  }

  .process-card__desc {
    font-size: 14px;
  }

  .about-psychologist,
  .faq {
    padding: 56px 0 54px;
  }

  .about-psychologist__container,
  .faq__container,
  .cta-footer__container,
  .site-footer__container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-psychologist__visual {
    min-height: 350px;
  }

  .about-psychologist__visual {
    min-height: auto;
    max-width: 320px;
  }

  .about-psychologist__shape {
    display: none;
  }

  .about-psychologist__photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    object-position: center top;
    box-shadow:
      0 14px 26px rgba(56, 39, 24, 0.1),
      0 0 0 5px rgba(255, 252, 248, 0.58);
  }

  .about-psychologist__plant {
    display: none;
  }

  .about-psychologist__title,
  .faq__title,
  .cta-footer__title {
    font-size: 48px;
  }

  .about-psychologist__content .audience__decorator-line {
    width: 60px;
  }

  .about-psychologist__text {
    font-size: 18px;
  }

  .about-psychologist__profile {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
    padding-top: 24px;
  }

  .about-psychologist__profile-title {
    font-size: 22px;
  }

  .about-psychologist__profile-text,
  .about-psychologist__education {
    font-size: 15px;
  }

  .about-detail {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .about-detail__text {
    font-size: 16px;
  }

  .faq__decorator {
    width: 60px;
  }

  .faq-card {
    border-radius: 22px;
  }

  .faq-card__summary {
    gap: 14px;
    padding: 18px 18px;
  }

  .faq-card__icon {
    width: 38px;
    height: 38px;
  }

  .faq-card__question {
    font-size: 17px;
  }

  .faq-card__plus {
    font-size: 30px;
  }

  .faq-card__answer {
    padding: 0 18px 18px 70px;
    font-size: 14px;
  }

  .faq__plant {
    width: 108px;
  }

  .cta-footer__top {
    padding-top: 42px;
  }

  .cta-footer__badge {
    width: 96px;
    height: 96px;
  }

  .cta-footer__badge img {
    width: 52px;
  }

  .cta-footer__lead {
    font-size: 18px;
  }

  .cta-footer__button {
    min-height: 74px;
    gap: 14px;
    padding-inline: 22px;
    font-size: 18px;
  }

  .cta-footer__button-icon {
    width: 30px;
    height: 30px;
  }

  .cta-footer__contact-note {
    font-size: 15px;
  }

  .site-footer__brand-name {
    font-size: 26px;
  }

  .site-footer__brand-role {
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .site-footer__text p,
  .site-footer__contact {
    font-size: 16px;
  }

  .site-footer__contact-icon {
    width: 24px;
    height: 24px;
  }

  .site-footer__bottom {
    font-size: 14px;
    padding-bottom: 24px;
  }

  .audience__plant--right,
  .process__plant--left,
  .process__plant--right {
    display: none;
  }

  .process-card__step::after {
    display: none;
  }
}

