:root {
  --navy:#06263d;
  --navy-dark:#041c2c;
  --cyan:#22d3ee;
  --cyan-light:#67e8f9;
  --bg:#eef9ff;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --amber:#f59e0b;
  --shadow:0 20px 50px rgba(2,32,71,.08);
  --shadow-lg:0 24px 60px rgba(2,32,71,.14);
  --radius:32px;
}

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  font-family:Inter, system-ui, Arial, sans-serif;
  background:linear-gradient(180deg,#eef9ff,#f8fcff 35%,#eef7fb 100%);
  color:var(--text);
  line-height:1.75;
}

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

a {
  transition:.3s ease;
}

/* HEADER */
header {
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(6,38,61,.92);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.header-wrap {
  width:min(1320px,92%);
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo {
  display:flex;
  align-items:center;
  gap:14px;
  color:white;
  text-decoration:none;
  font-size:30px;
  font-weight:800;
  letter-spacing:.22em;
}

.logo img {
  height:56px;
}

nav {
  display:flex;
  gap:28px;
}

nav a {
  color:white;
  text-decoration:none;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:600;
}

nav a:hover {
  color:var(--cyan-light);
}

/* BUTTONS */
.header-btn,
.cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:20px;
  text-decoration:none;
  font-weight:800;
  background:linear-gradient(135deg,var(--cyan),var(--cyan-light));
  color:var(--navy);
  box-shadow:var(--shadow);
}

.header-btn:hover,
.cta:hover {
  transform:translateY(-3px);
}

/* PAGE LAYOUT */
.therapist-page {
  width:min(1320px,92%);
  margin:auto;
  padding:50px 0 100px;
}

.back-link {
  display:inline-block;
  margin-bottom:36px;
  color:#0369a1;
  text-decoration:none;
  font-weight:800;
}

.back-link:hover {
  color:var(--navy);
}

/* HERO */
.hero {
  display:grid;
  grid-template-columns:420px 1fr;
  gap:60px;
  align-items:center;
  background:white;
  padding:52px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero img {
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:28px;
}

.hero h1 {
  font-size:clamp(56px,7vw,88px);
  line-height:.95;
  margin-bottom:14px;
}

.role {
  font-size:22px;
  font-weight:700;
  color:#0369a1;
  margin-bottom:16px;
}

.rating {
  display:inline-block;
  padding:10px 16px;
  border-radius:18px;
  background:#fef3c7;
  color:#b45309;
  font-weight:800;
  margin-bottom:24px;
}

.lead {
  font-size:20px;
  line-height:1.9;
  color:var(--muted);
  margin-bottom:22px;
}

.email {
  font-size:18px;
  color:#0369a1;
  font-weight:800;
  margin-bottom:28px;
}

/* COURSES */
.courses-box {
  margin-top:48px;
  background:white;
  padding:44px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.courses-box h3 {
  font-size:38px;
  margin-bottom:28px;
}

.courses-box ul {
  columns:2;
  column-gap:48px;
  padding-left:20px;
}

.courses-box li {
  margin-bottom:14px;
  color:var(--muted);
  break-inside:avoid;
}

/* EXPERT BOXES */
.extra {
  margin-top:54px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card {
  background:white;
  padding:34px;
  border-radius:28px;
  box-shadow:var(--shadow);
  transition:.35s ease;
}

.card:hover {
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}

.card h4 {
  font-size:26px;
  margin-bottom:14px;
  color:var(--navy);
}

.card p {
  color:var(--muted);
  font-size:18px;
  line-height:1.85;
}

/* CTA SECTION */
.contact-cta {
  padding:0 0 100px;
}

.contact-cta-box {
  width:min(1320px,92%);
  margin:auto;
  background:linear-gradient(135deg,var(--navy-dark),#082f49);
  color:white;
  text-align:center;
  padding:70px 40px;
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
}

.contact-cta-box h2 {
  font-size:clamp(42px,5vw,64px);
  margin-bottom:20px;
}

.contact-cta-box p {
  font-size:20px;
  max-width:900px;
  margin:0 auto 28px;
  color:#dbeafe;
}

/* FOOTER */
footer {
  background:var(--navy-dark);
  color:white;
  text-align:center;
  padding:54px 20px;
}

.footer-links {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:24px;
  margin-top:18px;
}

.footer-links a {
  color:#bae6fd;
  text-decoration:none;
}

.footer-links a:hover {
  color:white;
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .hero {
    grid-template-columns:1fr;
  }

  .hero img {
    height:auto;
    max-height:620px;
  }

  .courses-box ul {
    columns:1;
  }

  .extra {
    grid-template-columns:1fr;
  }
}

@media(max-width:900px) {
  nav,
  .header-btn {
    display:none;
  }

  .header-wrap {
    justify-content:center;
  }

  .hero {
    padding:34px;
  }

  .hero h1 {
    font-size:52px;
  }

  .lead {
    font-size:18px;
  }

  .courses-box,
  .contact-cta-box {
    padding:32px;
  }

  .courses-box h3 {
    font-size:30px;
  }

  .contact-cta-box h2 {
    font-size:40px;
  }
}
