@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #22162d;
  --muted: #6e5f73;
  --paper: #fbf8fc;
  --surface: #ffffff;
  --line: #eadcf0;
  --accent: #00b0d0;
  --accent-dark: #007f9f;
  --purple: #a04090;
  --purple-dark: #68266f;
  --aqua-soft: #dff8fb;
  --lilac-soft: #f4e6f5;
  --shadow: 0 24px 70px rgba(160, 64, 144, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(251, 248, 252, 0.92);
  border-bottom: 1px solid rgba(234, 220, 240, 0.78);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: sticky;
}

.brand img {
  display: block;
  width: min(230px, 46vw);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a,
.header-call {
  text-decoration: none;
}

.main-nav a:hover,
.header-call:hover {
  color: var(--purple);
}

.header-call {
  flex: 0 0 auto;
  padding: 10px 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 7vw, 90px) clamp(20px, 6vw, 92px) 46px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--accent));
}

.button.secondary {
  color: var(--purple-dark);
  background: transparent;
  border-color: var(--purple);
}

.portrait {
  margin: 0;
}

.portrait img {
  display: block;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 500px;
  margin: 14px 0 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.portrait strong {
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff, #f9f0fb);
}

.trust-strip div {
  min-height: 128px;
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--purple-dark);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(62px, 8vw, 110px) clamp(20px, 6vw, 92px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.split > div:first-child p:not(.eyebrow),
.online-band > p,
.contact > div:first-child p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-grid article {
  min-height: 150px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(160, 64, 144, 0.06);
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid a,
.offer-grid a {
  color: inherit;
  text-decoration: none;
}

.service-grid a:hover,
.offer-grid a:hover {
  color: var(--purple);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--purple);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent-dark);
}

.online-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 70px);
  row-gap: 18px;
  align-items: center;
  background: var(--aqua-soft);
}

.online-band p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.platform-strip {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.platform {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  color: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(34, 22, 45, 0.12);
}

.platform.zoom {
  background: #2d8cff;
}

.platform.video {
  background: var(--purple);
}

.platform.skype {
  background: #00aff0;
}

.platform.whatsapp {
  background: #25d366;
}

.therapy-band {
  background: #fff;
}

.therapy-band .section-heading {
  max-width: 960px;
}

.therapy-band .button {
  margin-top: 14px;
}

.page-hero {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 92px);
  background: linear-gradient(135deg, #fff, var(--lilac-soft));
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.service-menu {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(160, 64, 144, 0.07);
}

.service-menu strong {
  margin-bottom: 8px;
  color: var(--purple-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-menu a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.service-menu a:hover,
.service-menu a.active {
  color: var(--purple-dark);
  background: var(--lilac-soft);
}

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

.offer-grid article,
.service-content {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(160, 64, 144, 0.06);
}

.offer-grid h2 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.offer-grid p,
.service-content p {
  color: var(--muted);
}

.service-content {
  max-width: 920px;
}

.service-content h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-content .button {
  margin-top: 16px;
}

.section-heading {
  max-width: 780px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.author-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

.publication-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.75fr);
  gap: 14px;
}

.publication-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.publication-card.feature {
  background: linear-gradient(145deg, #fff, var(--lilac-soft));
  border-color: rgba(160, 64, 144, 0.28);
}

.book-cover {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  align-self: center;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(34, 22, 45, 0.1);
}

.publication-card span,
.review-meta span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-card p,
.publication-card li {
  color: var(--muted);
}

.publication-card ul {
  display: grid;
  gap: 4px;
  margin: 18px 0 22px;
  padding-left: 18px;
}

.publication-card a,
.review-note a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 15px;
  color: #fff;
  background: var(--purple);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.publication-card a:hover,
.review-note a:hover {
  background: var(--accent-dark);
}

.reviews {
  background: var(--lilac-soft);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 22px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(160, 64, 144, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(160, 64, 144, 0.08);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 12px;
}

.review-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.stars {
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 1.04rem;
  letter-spacing: 0.08em;
}

.review-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  color: var(--muted);
}

.review-note a {
  color: #fff;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  background: linear-gradient(135deg, var(--purple-dark), #4f235a);
  color: #fff;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.92);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-decoration: none;
}

.contact-panel .whatsapp-link {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.46);
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.faq-section {
  background: #fff;
}

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

.faq-grid details {
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--purple-dark);
  font-weight: 800;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 92px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .split,
  .online-band,
  .author-band,
  .service-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-menu {
    position: static;
  }

  .platform-strip {
    grid-column: auto;
    margin-top: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 44px;
  }

  .portrait img,
  .portrait figcaption {
    margin-left: 0;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .header-call {
    width: 100%;
    text-align: center;
  }

  .service-grid,
  .offer-grid,
  .publication-grid,
  .review-grid,
  .faq-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

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

  .review-card,
  .publication-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
