﻿:root {
  --ink: #172022;
  --muted: #5c686a;
  --line: #d9e2df;
  --paper: #f7f5ef;
  --white: #ffffff;
  --green: #1f6b5b;
  --green-dark: #164d43;
  --gold: #b98234;
  --coral: #c9674f;
  --blue: #345c78;
  --shadow: 0 18px 48px rgba(23, 32, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid rgba(217, 226, 223, 0.9);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand-logo {
  width: 176px;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 15px;
  color: #263336;
}

.nav-links a:hover,
.nav-links a.active {
  background: #e7eee9;
  color: var(--green-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  width: 42px;
  height: 38px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #13201f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("./images/hero-workshop.png") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 26, 25, 0.82), rgba(13, 26, 25, 0.48) 54%, rgba(13, 26, 25, 0.22));
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 10vh;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 800;
}

.hero p {
  max-width: 690px;
  margin: 22px 0 30px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(255, 255, 255, 0.88);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn.primary {
  color: var(--white);
  background: var(--green);
}

.btn.primary:hover {
  background: var(--green-dark);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.section {
  padding: 78px 0;
}

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

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(23, 32, 34, 0.05);
}

.white .card {
  background: #fbfaf6;
}

.card strong,
.metric strong {
  display: block;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list li,
.pill {
  border: 1px solid var(--line);
  background: #eef3ef;
  border-radius: 999px;
  padding: 5px 10px;
  color: #334243;
  font-size: 13px;
}

.band {
  background: var(--green-dark);
  color: var(--white);
}

.band .section-head p,
.band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.band .card strong {
  color: var(--gold);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  min-height: 230px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.service-block {
  border-left: 4px solid var(--green);
}

.service-block h3 {
  margin-bottom: 10px;
}

.service-block ul,
.article-body ul,
.founder-list {
  padding-left: 1.2em;
  margin: 12px 0 0;
}

.service-block li,
.article-body li,
.founder-list li {
  margin: 6px 0;
}

.system-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.system-row h3 {
  color: var(--green-dark);
}

.system-row p {
  margin: 6px 0;
  color: var(--muted);
}

.profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.profile-card {
  position: sticky;
  top: 96px;
}

.profile-card img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.quote {
  border-left: 4px solid var(--gold);
  padding: 12px 0 12px 20px;
  color: var(--green-dark);
  font-size: 21px;
  margin: 24px 0;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.article-item time {
  color: var(--muted);
  font-size: 14px;
}

.article-item h3 {
  margin: 4px 0 10px;
}

.article-body {
  max-width: 860px;
}

.article-body h2 {
  font-size: 28px;
  margin: 38px 0 12px;
}

.article-body p {
  color: #2f3c3e;
}

.callout {
  background: #edf3ef;
  border-left: 4px solid var(--green);
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  color: var(--green-dark);
  font-weight: 700;
}

.footer {
  background: #121b1b;
  color: rgba(255, 255, 255, 0.78);
  padding: 36px 0;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  color: var(--white);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .section-head,
  .split,
  .profile,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .profile-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav,
  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 640px;
  }

  .hero-inner {
    padding: 72px 0 64px;
  }

  .section {
    padding: 56px 0;
  }

  .grid.four,
  .grid.three,
  .grid.two,
  .system-row,
  .article-item {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

  .actions .btn {
    width: 100%;
  }
}

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

.service-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left-width: 0;
  border-top: 5px solid var(--green);
}

.service-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.service-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #e7eee9;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 18px;
}

.service-heading h3 {
  font-size: 24px;
}

.service-groups {
  display: grid;
  gap: 12px;
}

.service-group {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.service-group strong {
  display: block;
  color: var(--green-dark);
  font-size: 17px;
  margin-bottom: 8px;
}

.solution-cases {
  border-top: 1px solid var(--line);
}

.case-list {
  display: grid;
  gap: 24px;
}

.solution-case {
  padding: 32px;
}

.case-heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.case-heading h3 {
  font-size: 26px;
  line-height: 1.35;
}

.case-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 800;
}

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

.case-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-detail h4 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 17px;
}

.case-detail p {
  margin: 0;
}

.case-detail p strong {
  display: inline;
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
}

.case-detail ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
}

.case-detail li {
  margin: 6px 0;
}

.case-results li::marker {
  color: var(--green-dark);
}

.credentials-card {
  max-width: 620px;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 6px;
}

.coach-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f5ef;
}

.contact-email {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.qr-list figure {
  margin: 0;
}

.qr-list img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.qr-list figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 180px;
  z-index: 40;
}

.floating-contact__item {
  display: grid;
  place-items: center;   /* ← 新增：内容水平+垂直居中 */
  gap: 2px;
  min-width: 112px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow);
  text-decoration: none;  /* 顺手加，去掉 a 标签下划线 */
}

.floating-contact__item span {
  font-size: 13px;
  opacity: 0.82;
}

.floating-contact__item strong {
  font-size: 15px;
}

@media (max-width: 900px) {
  .solution-grid,
  .coach-contact,
  .case-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 142px;
  }

  .solution-case {
    padding: 22px 20px;
  }

  .case-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .case-number {
    width: 40px;
    height: 40px;
  }

  .case-heading h3 {
    font-size: 22px;
  }

  .credentials-list {
    grid-template-columns: 1fr;
  }

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

  .floating-contact {
    right: 14px;
    bottom: 16px;
  }
}

/* Visual refresh: enterprise coaching system inspired by Deloitte Digital, Linear, CoachHub, and BetterUp. */
:root {
  --ink: #101716;
  --muted: #66726f;
  --line: #dfe7e2;
  --paper: #f5f4ee;
  --white: #ffffff;
  --green: #1d6b57;
  --green-dark: #0f2f29;
  --green-soft: #e8f1eb;
  --signal: #b8e986;
  --gold: #b88a3d;
  --shadow: 0 24px 70px rgba(16, 23, 22, 0.12);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(29, 107, 87, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, var(--paper) 54%, #f1f3ee 100%);
  letter-spacing: 0;
}

.site-header {
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(223, 231, 226, 0.78);
  box-shadow: 0 12px 40px rgba(16, 23, 22, 0.05);
}

.nav {
  min-height: 78px;
}

.brand-logo {
  width: 188px;
  max-height: 50px;
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(16, 23, 22, 0.78);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #101716;
  border-color: #101716;
  color: #fff;
}

.hero {
  min-height: calc(100vh - 78px);
  align-items: center;
  background: #0b1513;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.92), rgba(8, 18, 16, 0.68) 48%, rgba(8, 18, 16, 0.3)),
    linear-gradient(180deg, rgba(8, 18, 16, 0.04), rgba(8, 18, 16, 0.46));
}

.hero-inner {
  padding: 86px 0 92px;
}

.eyebrow {
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.band .eyebrow,
.coach-contact .eyebrow {
  color: var(--signal);
}

h1 {
  max-width: 880px;
  font-size: clamp(42px, 6.4vw, 82px);
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  font-size: clamp(30px, 4.2vw, 50px);
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 11px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn.primary {
  background: var(--signal);
  color: #0f2f29;
  box-shadow: 0 14px 34px rgba(184, 233, 134, 0.24);
}

.btn.primary:hover {
  background: #c8f39e;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.section {
  padding: 96px 0;
}

.section.white {
  background: #fffdf8;
}

.section-head {
  gap: 46px;
  margin-bottom: 42px;
}

.section-head p {
  font-size: 16px;
}

.card {
  border-color: rgba(223, 231, 226, 0.92);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 16px 46px rgba(16, 23, 22, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 107, 87, 0.26);
  box-shadow: 0 24px 64px rgba(16, 23, 22, 0.1);
}

.white .card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.card strong,
.metric strong {
  color: var(--green-dark);
  font-size: 30px;
}

.grid.four .card strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 15px;
  margin-bottom: 18px;
}

.grid.four .card h3 {
  margin-bottom: 8px;
}

.tag-list {
  gap: 10px;
}

.tag-list li,
.pill {
  background: #fffdf8;
  border-color: rgba(16, 23, 22, 0.12);
  color: #22302e;
  padding: 7px 12px;
  box-shadow: 0 8px 24px rgba(16, 23, 22, 0.04);
}

.band {
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 233, 134, 0.18), transparent 34%),
    linear-gradient(135deg, #0c201c 0%, #102f29 58%, #132823 100%);
}

.band .card {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.band .card:hover {
  border-color: rgba(184, 233, 134, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.process .card::before {
  color: var(--signal);
}

.split {
  gap: 56px;
}

.image-panel {
  border-radius: 8px;
  border-color: rgba(16, 23, 22, 0.1);
  box-shadow: 0 26px 80px rgba(16, 23, 22, 0.14);
}

.solution-grid {
  gap: 24px;
}

.service-block {
  border-top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
  position: relative;
  overflow: hidden;
}

.service-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-dark), var(--signal));
}

.service-number {
  background: #101716;
  color: var(--signal);
}

.service-heading h3 {
  margin-bottom: 0;
  font-size: 23px;
}

.service-group {
  background: rgba(232, 241, 235, 0.52);
  border-color: rgba(29, 107, 87, 0.13);
}

.system-row {
  border-top-color: rgba(16, 23, 22, 0.12);
  padding: 34px 0;
}

.profile-card img,
.qr-list img {
  box-shadow: 0 20px 60px rgba(16, 23, 22, 0.1);
}

.quote {
  border-left-color: var(--signal);
  background: #f4faef;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}

.article-item {
  border-left: 5px solid transparent;
}

.article-item:hover {
  border-left-color: var(--signal);
}

.coach-contact {
  background: linear-gradient(135deg, rgba(16, 23, 22, 0.95), rgba(15, 47, 41, 0.95));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 24px 70px rgba(16, 23, 22, 0.14);
}

.coach-contact h2,
.coach-contact .contact-email {
  color: #fff;
}

.footer {
  background: #0c1110;
}

.floating-contact {
  position: fixed;
  right: 2px;
  top: 50%;
  bottom: auto;
  z-index: 9999;
  transform: translateY(-50%);
}

.floating-contact__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-height: 96px;
  padding: 12px 8px;
  border: 1px solid rgba(184, 233, 134, 0.28);
  border-radius: 36px 0 0 36px;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(16, 23, 22, 0.16);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  outline: none;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.floating-contact__item > span {
  display: block;
  width: 28px;
}

.floating-contact__item:hover,
.floating-contact__item:focus-within {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
  transform: translateX(-2px);
}

/* 弹窗 */
.contact-popup {
  position: absolute;
  top: 50%;
  right: 86px;
  display: flex;
  flex-direction: column;
  width: 168px;
  padding: 14px 14px 16px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(184, 233, 134, 0.35);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(16, 23, 22, 0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(8px, -50%);

  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.contact-popup__title {
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.contact-popup::after {
  position: absolute;
  top: 50%;
  right: -7px;
  width: 14px;
  height: 14px;
  content: "";
  border-top: 1px solid rgba(184, 233, 134, 0.35);
  border-right: 1px solid rgba(184, 233, 134, 0.35);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-50%) rotate(45deg);
}

/* 鼠标移入显示 */
.floating-contact__item:hover .contact-popup,
.floating-contact__item:focus-within .contact-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.contact-popup__qr {
  width: 128px;
  height: 128px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  object-fit: cover;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .floating-contact {
    top: auto;
    right: 12px;
    bottom: 16px;
    transform: none;
  }

  .floating-contact__item {
    width: 92px;
    min-height: 54px;
    border-radius: 28px;
  }

  .floating-contact__item > span {
    width: auto;
    white-space: nowrap;
  }

  .floating-contact__item:hover,
  .floating-contact__item:focus-within {
    transform: translateY(-2px);
  }

  .contact-popup {
    top: auto;
    right: 0;
    bottom: 70px;
    width: min(168px, calc(100vw - 24px));
    transform: translateY(8px);
  }

  .contact-popup::after {
    top: auto;
    right: 38px;
    bottom: -7px;
    transform: rotate(135deg);
  }

  .floating-contact__item:hover .contact-popup,
  .floating-contact__item:focus-within .contact-popup {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 72px;
  }

  .nav-links {
    top: 72px;
    background: rgba(251, 250, 246, 0.98);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero {
    min-height: 680px;
  }
}

/* Final visual tuning: quieter scale, more air, premium editorial rhythm. */
:root {
  --shadow-soft: 0 22px 56px rgba(16, 23, 22, 0.08);
  --shadow-card: 0 14px 36px rgba(16, 23, 22, 0.055);
}

body {
  font-size: 15.5px;
  line-height: 1.82;
  color: #15201f;
}

.site-header {
  box-shadow: none;
}

.nav {
  width: min(1120px, calc(100% - 56px));
  min-height: 76px;
}

.brand-logo {
  width: 168px;
}

.nav-links {
  gap: 12px;
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 76px);
  align-items: center;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 22, 20, 0.84), rgba(13, 32, 29, 0.56) 54%, rgba(13, 32, 29, 0.28)),
    linear-gradient(180deg, rgba(8, 22, 20, 0.1), rgba(8, 22, 20, 0.42));
}

.hero-inner {
  width: min(1120px, calc(100% - 56px));
  padding: 92px 0 112px;
}

.eyebrow,
.hero .eyebrow,
.contact-popup__title {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.45vw, 56px);
  line-height: 1.16;
  font-weight: 760;
}

.hero p {
  max-width: 620px;
  margin: 26px 0 36px;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.section {
  padding: 112px 0;
}

.section.white {
  background: rgba(255, 255, 255, 0.72);
}

.container {
  width: min(1120px, calc(100% - 56px));
}

.section-head {
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.58fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}

.section-head p,
.split > div > p,
.card p {
  font-size: 15px;
  line-height: 1.86;
}

h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.28;
  font-weight: 720;
}

h3 {
  font-size: 19px;
  line-height: 1.42;
  font-weight: 700;
}

.grid {
  gap: 24px;
}

.card {
  min-height: 100%;
  padding: 28px 26px;
  border-color: rgba(223, 231, 226, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.white .card {
  background: rgba(251, 250, 246, 0.78);
}

.card strong,
.metric strong {
  font-size: 21px;
  margin-bottom: 16px;
  color: var(--green);
}

.grid.four .card strong {
  width: 44px;
  height: 44px;
  font-size: 15px;
}

.grid.four .card h3 {
  margin-top: 2px;
}

.split {
  gap: 64px;
}

.tag-list {
  gap: 10px;
  margin-top: 24px;
}

.tag-list li,
.pill {
  padding: 6px 12px;
  font-size: 12px;
  background: rgba(232, 241, 235, 0.76);
}

.image-panel {
  box-shadow: var(--shadow-soft);
}

.band {
  background:
    radial-gradient(circle at 82% 12%, rgba(184, 233, 134, 0.08), transparent 34%),
    linear-gradient(135deg, #0b1f1b, #123c34);
}

.band .card {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.12);
}

.process .card {
  min-height: 250px;
}

.partners-section {
  overflow: hidden;
}

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

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 124px;
  padding: 24px 26px;
  border: 1px solid rgba(223, 231, 226, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover {
  border-color: rgba(29, 107, 87, 0.26);
  box-shadow: 0 18px 48px rgba(16, 23, 22, 0.08);
  transform: translateY(-2px);
}

.partner-logo img {
  width: 100%;
  max-width: 190px;
  max-height: 58px;
  object-fit: contain;
}

.partner-logo img[src="./Logo/logo.png"] {
  max-width: 72px;
  max-height: 72px;
}

.footer {
  padding: 46px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 56px));
  font-size: 14px;
}

.floating-contact__item {
  width: 66px;
  min-width: 0;
  min-height: 90px;
  font-size: 12px;
}

.contact-popup {
  right: 80px;
}

@media (max-width: 900px) {
  .nav,
  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 40px, 1120px);
  }

  .section {
    padding: 88px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .grid {
    gap: 18px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .nav,
  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 30px, 1120px);
  }

  .brand-logo {
    width: 138px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    padding: 72px 0 80px;
  }

  h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.18;
  }

  h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .hero p {
    max-width: 330px;
    font-size: 14.5px;
    line-height: 1.82;
  }

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

  .section {
    padding: 76px 0;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-head h2 {
    max-width: none;
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.3;
  }

  .section-head > p {
    max-width: none;
    font-size: 15px;
    line-height: 1.75;
  }

  .card {
    padding: 24px 22px;
  }

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

  .partner-logo {
    min-height: 96px;
    padding: 18px;
  }

  .partner-logo img {
    max-width: 132px;
    max-height: 48px;
  }

  .partner-logo img[src="./Logo/logo.png"] {
    max-width: 56px;
    max-height: 56px;
  }

  .floating-contact__item {
    width: 88px;
    min-width: 0;
    min-height: 52px;
  }
}

/* Multi-page refinement: align inner pages with the calmer homepage direction. */
main > .section:first-child {
  padding-top: 118px;
  padding-bottom: 92px;
}

main > .section:first-child h1,
.profile h1 {
  max-width: 860px;
  font-size: clamp(32px, 3.6vw, 44px) !important;
  line-height: 1.24 !important;
  font-weight: 720 !important;
}

main > .section:first-child .container > p,
.article-body > p,
.profile section > p {
  max-width: 760px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--muted);
}

.solution-grid {
  gap: 28px;
}

.service-block {
  padding: 34px 32px;
}

.service-heading {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
}

.service-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 15px;
}

.service-heading h3 {
  font-size: 26px;
  line-height: 1.35;
}

.service-block .service-group strong {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.service-block ul {
  color: var(--muted);
  line-height: 1.9;
}

.service-group {
  padding: 18px 18px 16px;
}

.system-row {
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 42px;
  padding: 42px 0;
}

.system-row h3 {
  font-size: 20px;
}

.profile {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: 68px;
}

.profile-card {
  top: 116px;
}

.profile-card img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.quote {
  margin: 30px 0 36px;
  font-size: 18px;
  line-height: 1.82;
}

.profile h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.5vw, 32px);
}

.founder-list {
  color: var(--muted);
  line-height: 1.92;
}

.coach-contact {
  margin-top: 58px;
  padding: 36px;
  gap: 36px;
}

.coach-contact .qr-list img {
  box-shadow: none;
}

.article-list {
  gap: 24px;
}

.article-item {
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 34px;
  padding: 26px 28px;
  border: 1px solid rgba(223, 231, 226, 0.8);
  border-left: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.article-item:hover {
  border-color: rgba(184, 233, 134, 0.42);
}

.article-item h3 {
  font-size: 20px;
  line-height: 1.42;
}

.article-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body h2 {
  margin: 48px 0 14px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.36;
}

.article-body p,
.article-body li {
  font-size: 15.5px;
  line-height: 1.95;
}

.callout {
  margin: 34px 0;
  padding: 22px 24px;
  font-size: 15.5px;
}

@media (max-width: 900px) {
  main > .section:first-child {
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .profile,
  .system-row,
  .article-item {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-block,
  .coach-contact,
  .article-item {
    padding: 28px 24px;
  }

  .coach-contact {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  main > .section:first-child {
    padding-top: 72px;
    padding-bottom: 58px;
  }

  main > .section:first-child h1,
  .profile h1 {
    font-size: clamp(28px, 8.4vw, 38px) !important;
  }

  .service-heading {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .service-number {
    width: 42px;
    height: 42px;
  }

  .service-heading h3 {
    font-size: 22px;
  }

  .article-body p,
  .article-body li,
  main > .section:first-child .container > p {
    font-size: 15px;
  }
}
