:root {
  --ink: #173b46;
  --muted: #5f777f;
  --paper: #ffffff;
  --soft: #f4fbf8;
  --green: #2d9b61;
  --green-deep: #0f7f67;
  --teal: #1c9eb6;
  --blue: #2877b5;
  --purple: #7d5cb3;
  --orange: #ee8d2b;
  --yellow: #f2bf39;
  --line: rgba(23, 59, 70, 0.12);
  --shadow: 0 24px 70px rgba(38, 93, 99, 0.13);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(45,155,97,.07), transparent 28%),
    radial-gradient(circle at 95% 24%, rgba(40,119,181,.06), transparent 26%),
    #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 96px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 12px 35px rgba(40,73,80,.07); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; box-shadow: 0 8px 24px rgba(43,113,111,.11); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .9rem; letter-spacing: .08em; color: var(--blue); }
.brand-copy small { margin-top: 5px; font-weight: 800; font-size: .69rem; letter-spacing: .05em; color: var(--green-deep); }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { text-decoration: none; font-size: .92rem; font-weight: 700; color: #34555f; transition: .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--green-deep); }
.nav-cta { padding: 10px 16px; background: var(--green-deep); color: #fff !important; border-radius: 999px; box-shadow: 0 8px 20px rgba(15,127,103,.18); }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 21px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.menu-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: calc(100vh - 84px); display: grid; place-items: center; overflow: hidden; padding-top: 74px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 850; color: var(--green-deep); }
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: currentColor; }
.eyebrow.light { color: #eafff8; }
.hero h1 { margin: 20px 0 0; font-size: clamp(3.5rem, 8vw, 6.7rem); letter-spacing: -.07em; line-height: .86; color: var(--blue); }
.hero h1 span { display: block; color: var(--green-deep); }
.hero-subtitle { margin: 22px 0 0; font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 850; letter-spacing: .12em; color: #2b8b8e; }
.hero-audience { margin: 26px 0 0; font-size: 1.2rem; color: var(--muted); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 22px; border-radius: 16px; text-decoration: none; font-weight: 850; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green-deep), var(--teal)); box-shadow: 0 15px 32px rgba(15,127,103,.22); }
.btn-soft { color: var(--blue); background: #eef8fb; border: 1px solid rgba(40,119,181,.12); }
.btn-white { background: #fff; color: var(--green-deep); box-shadow: 0 12px 28px rgba(0,0,0,.10); }
.mode-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.mode-pills span { padding: 8px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .88rem; font-weight: 800; }
.hero-visual { display: grid; place-items: center; }
.logo-halo { width: min(510px, 100%); aspect-ratio: 1; display: grid; place-items: center; position: relative; border-radius: 50%; background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(236,249,246,.96)); box-shadow: var(--shadow); border: 1px solid rgba(45,155,97,.11); }
.logo-halo::before { content: ""; position: absolute; inset: 7%; border-radius: 50%; border: 1px dashed rgba(40,119,181,.2); animation: rotate 24s linear infinite; }
.logo-halo img { width: 88%; border-radius: 50%; position: relative; z-index: 2; filter: saturate(1.02) contrast(1.01); }
.dot { position: absolute; border-radius: 50%; z-index: 3; box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.dot-1 { width: 28px; height: 28px; background: var(--orange); top: 9%; right: 14%; }
.dot-2 { width: 18px; height: 18px; background: var(--purple); bottom: 13%; left: 8%; }
.dot-3 { width: 14px; height: 14px; background: var(--yellow); top: 24%; left: 3%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .28; }
.hero-orb-a { width: 280px; height: 280px; background: rgba(242,191,57,.30); left: -140px; bottom: 8%; }
.hero-orb-b { width: 240px; height: 240px; background: rgba(125,92,179,.20); right: -120px; top: 8%; }

.section-heading { max-width: 770px; margin-bottom: 38px; }
.section-heading h2, .feature-intro h2, .psychology-panel h2, .contact-copy h2 { margin: 10px 0 0; font-size: clamp(2rem, 4.6vw, 3.9rem); line-height: 1.04; letter-spacing: -.04em; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }

.condition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.condition-card { min-height: 190px; padding: 26px; border-radius: var(--radius-md); border: 1px solid var(--line); background: #fff; box-shadow: 0 16px 44px rgba(42,82,88,.08); display: flex; flex-direction: column; justify-content: space-between; transition: .25s ease; }
.condition-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(42,82,88,.13); }
.condition-card h3 { margin: 34px 0 0; font-size: 1.22rem; line-height: 1.25; }
.condition-wide { grid-column: span 2; }
.mini-mark { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #fff; font-weight: 900; }
.tone-blue { background: linear-gradient(145deg, #fff, #f2f8fd); }
.tone-blue .mini-mark { background: var(--blue); }
.tone-purple { background: linear-gradient(145deg, #fff, #f7f3fb); }
.tone-purple .mini-mark { background: var(--purple); }
.tone-orange { background: linear-gradient(145deg, #fff, #fff6ed); }
.tone-orange .mini-mark { background: var(--orange); }
.tone-green { background: linear-gradient(145deg, #fff, #effaf3); }
.tone-green .mini-mark { background: var(--green); }
.tone-teal { background: linear-gradient(145deg, #fff, #effbfc); }
.tone-teal .mini-mark { background: var(--teal); }

.service-band { background: linear-gradient(135deg, #126c62 0%, #167f75 52%, #287fa0 100%); color: #fff; overflow: hidden; }
.service-band::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 70px solid rgba(255,255,255,.04); right: -140px; top: -130px; }
.section-heading-light { color: #fff; }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 220px; padding: 24px; border-radius: 22px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); transition: .25s ease; }
.service-card:hover { background: rgba(255,255,255,.15); transform: translateY(-5px); }
.service-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.15); font-weight: 900; font-size: .8rem; }
.service-card p { margin: 40px 0 0; font-weight: 700; color: #f7fffc; line-height: 1.55; }

.split-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.feature-intro { position: sticky; top: 128px; }
.accent-line { width: 120px; height: 10px; border-radius: 99px; background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green)); margin-top: 28px; }
.feature-list { display: grid; gap: 12px; }
.feature-item { padding: 22px 24px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.8); display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; box-shadow: 0 12px 34px rgba(40,73,80,.055); }
.feature-item span { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--purple)); box-shadow: 0 0 0 7px rgba(238,141,43,.08); }
.feature-item p { margin: 0; font-weight: 750; }

.psychology { background: linear-gradient(180deg, #f8fbff, #fff); }
.psychology-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 62px; align-items: center; }
.psychology-panel { min-height: 470px; padding: 44px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #ffffff, #f4f6ff); border: 1px solid rgba(125,92,179,.12); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.petal-cluster { position: absolute; width: 220px; height: 220px; right: -26px; bottom: -18px; }
.petal-cluster i { position: absolute; width: 86px; height: 132px; border-radius: 60% 60% 50% 50%; transform-origin: 50% 95%; opacity: .80; }
.petal-cluster i:nth-child(1){ background: rgba(125,92,179,.45); transform: rotate(0deg); left: 70px; top: 0; }
.petal-cluster i:nth-child(2){ background: rgba(40,119,181,.40); transform: rotate(72deg); left: 70px; top: 0; }
.petal-cluster i:nth-child(3){ background: rgba(45,155,97,.42); transform: rotate(144deg); left: 70px; top: 0; }
.petal-cluster i:nth-child(4){ background: rgba(242,191,57,.45); transform: rotate(216deg); left: 70px; top: 0; }
.petal-cluster i:nth-child(5){ background: rgba(238,141,43,.43); transform: rotate(288deg); left: 70px; top: 0; }
.psychology-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pill-card { min-height: 124px; padding: 22px; display: flex; align-items: center; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(48,73,85,.055); font-weight: 800; transition: .25s ease; }
.pill-card:hover { transform: translateY(-4px); border-color: rgba(125,92,179,.22); }

.skills-strip { padding: 38px 0; background: #fff8ed; border-block: 1px solid rgba(238,141,43,.13); }
.skills-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.skills-inner > p { margin: 0; font-size: clamp(1.5rem, 3vw, 2.7rem); font-weight: 900; letter-spacing: -.03em; color: var(--orange); }
.audience-inline { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px; font-size: .87rem; letter-spacing: .1em; font-weight: 900; color: #866029; }
.audience-inline b { color: var(--yellow); }

.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.credential { padding: 30px; min-height: 260px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(41,76,85,.075); position: relative; overflow: hidden; }
.credential::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; background: rgba(45,155,97,.07); right: -45px; bottom: -45px; }
.credential:nth-child(2)::after { background: rgba(40,119,181,.07); }
.credential:nth-child(3)::after { background: rgba(125,92,179,.07); }
.credential-no { display: inline-flex; padding: 8px 11px; border-radius: 10px; background: var(--soft); color: var(--green-deep); font-weight: 900; font-size: .8rem; }
.credential h3 { margin: 58px 0 0; font-size: 1.35rem; line-height: 1.35; }

.contact-section { padding-top: 50px; }
.contact-card { padding: 34px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #126d62, #1b8c76 50%, #317f9f); color: #fff; display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; box-shadow: 0 30px 70px rgba(18,109,98,.25); }
.contact-logo { width: 126px; height: 126px; padding: 8px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.contact-logo img { border-radius: 50%; }
.contact-copy p { margin: 14px 0 0; color: #e6fff7; font-weight: 700; }
.contact-phone { display: inline-block; margin-top: 8px; color: #fff; text-decoration: none; font-size: 1.55rem; font-weight: 900; }

.site-footer { padding: 34px 0 46px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 24px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-grid > div { display: grid; gap: 5px; }
.footer-grid strong { color: var(--blue); }
.footer-grid a { color: var(--green-deep); font-weight: 850; text-decoration: none; }

.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 46px; height: 46px; border: 0; border-radius: 15px; background: var(--ink); color: #fff; font-size: 1.2rem; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; box-shadow: 0 12px 28px rgba(20,48,57,.18); }
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: reveal-in .68s ease both; }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rotate { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .85rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .condition-wide { grid-column: span 2; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 28px, 720px); }
  .section-pad { padding: 72px 0; }
  .menu-toggle { display: flex; }
  .main-nav { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.98); border: 1px solid var(--line); box-shadow: 0 24px 55px rgba(20,50,58,.15); display: grid; gap: 6px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 12px 10px; border-radius: 12px; font-size: .95rem; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .hero { min-height: auto; padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-actions, .mode-pills { justify-content: center; }
  .logo-halo { width: min(500px, 88vw); }
  .split-layout, .psychology-grid { grid-template-columns: 1fr; gap: 38px; }
  .feature-intro { position: static; }
  .psychology-panel { min-height: 360px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .credential { min-height: 210px; }
  .credential h3 { margin-top: 40px; }
  .contact-card { grid-template-columns: auto 1fr; }
  .contact-card .btn { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 22px, 560px); }
  .nav-wrap { min-height: 74px; }
  .brand-logo { width: 50px; height: 50px; }
  .brand-copy { display: none; }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: clamp(3.1rem, 17vw, 5.2rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .condition-grid, .service-grid, .psychology-list { grid-template-columns: 1fr; }
  .condition-wide { grid-column: auto; }
  .condition-card { min-height: 150px; }
  .service-card { min-height: 180px; }
  .service-card p { margin-top: 28px; }
  .psychology-panel { min-height: 320px; padding: 30px; }
  .pill-card { min-height: 94px; }
  .skills-inner { display: grid; }
  .audience-inline { justify-content: flex-start; }
  .contact-card { grid-template-columns: 1fr; text-align: center; }
  .contact-logo { margin-inline: auto; width: 112px; height: 112px; }
  .contact-copy .eyebrow { justify-content: center; }
  .contact-phone { font-size: 1.35rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid > div:last-child { grid-column: auto; }
  .back-top { right: 14px; bottom: 14px; }
}
