:root {
  --navy: #151033;
  --navy-2: #1c1546;
  --purple: #7447ff;
  --purple-2: #6d45f8;
  --mint: #22d6a6;
  --text: #44485f;
  --muted: #8a8da3;
  --soft: #f4f1ff;
  --line: #e8e6f3;
  --white: #fff;
  --shadow: 0 12px 28px rgba(29, 23, 68, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.container {
  width: min(1390px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: none;
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .86);
  white-space: nowrap;
}

.main-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  gap: 10px;
  margin-inline-start: auto;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
  border-radius: 4px;
  font-size: 22px;
}

.green-btn,
.purple-btn,
.white-btn,
.outline-btn,
.outline-light,
.outline-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 32px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 17px;
  border: 0;
  cursor: pointer;
}

.green-btn {
  background: var(--mint);
  color: #fff;
}

.header-actions .green-btn,
.header-actions .outline-btn {
  min-height: 34px;
  min-width: 88px;
  padding-inline: 18px;
  font-size: 14px;
}

.header-actions .outline-btn {
  min-width: 132px;
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.purple-btn {
  background: var(--purple);
  color: #fff;
}

.white-btn {
  background: #fff;
  color: var(--purple);
}

.outline-btn,
.outline-light {
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  background: transparent;
}

.outline-purple {
  min-height: 32px;
  border: 1px solid var(--purple);
  color: var(--purple);
  background: #fff;
}

.small {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 14px;
}

.hero {
  min-height: 680px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  grid-template-areas: "copy photo";
  align-items: end;
  gap: 24px;
}

.hero-photo {
  grid-area: photo;
  align-self: end;
}

.hero-photo img {
  width: min(600px, 100%);
  height: 610px;
  object-fit: cover;
  object-position: center top;
  margin-inline: auto;
  filter: saturate(.98);
}

.hero-copy {
  grid-area: copy;
  align-self: center;
  text-align: right;
  padding-bottom: 30px;
}

.hero-copy p {
  margin: 0 0 20px;
  font-size: 52px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 62px;
  line-height: 1.22;
}

.hero-copy h2 {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .88);
  font-size: 38px;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-buttons .purple-btn,
.hero-buttons .outline-light {
  min-height: 61px;
  min-width: 132px;
  padding-inline: 30px;
  border-radius: 6px;
  font-size: 20px;
}

.hero-buttons .purple-btn {
  min-width: 178px;
}

.tracks {
  padding: 0 0 54px;
  background: #fff;
}

.track-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1020px;
  margin: -70px auto 76px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.track-grid article {
  min-height: 210px;
  padding: 30px 28px;
  text-align: center;
  border-inline-start: 1px solid var(--line);
}

.track-grid article:last-child {
  border-inline-start: 0;
}

.track-icon {
  color: var(--purple);
  font-size: 32px;
}

.track-grid h3 {
  margin: 10px 0;
  color: #4c5068;
  font-size: 21px;
}

.track-grid p {
  min-height: 62px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.section-title {
  max-width: 660px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2,
.newsletter h2 {
  margin: 0 0 10px;
  color: #5b5f73;
  font-size: 42px;
  line-height: 1.25;
}

.section-title p {
  margin: 0;
  color: #918fa3;
  font-size: 17px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
}

.partner-logos span {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 3px solid #222;
  color: #222;
  font-weight: 900;
  font-size: 16px;
  background: #fff;
}

.partner-copy {
  max-width: 1080px;
  margin: 0 auto;
  color: #666b7f;
  text-align: center;
  font-size: 24px;
  line-height: 1.9;
  font-weight: 600;
}

.trainer-band {
  background: var(--purple-2);
  color: #fff;
  min-height: 390px;
  overflow: hidden;
}

.trainer-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.trainer-inner img {
  width: min(430px, 100%);
  height: 390px;
  object-fit: cover;
  object-position: center top;
  margin-inline: auto;
}

.trainer-inner h2 {
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1.55;
}

.trainer-inner p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
}

.courses {
  padding: 70px 0 82px;
  background: #fff;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(49, 45, 83, .08);
}

.course-image {
  min-height: 182px;
  display: flex;
  align-items: flex-start;
  padding: 22px;
  color: #fff;
  background-size: cover;
  background-position: center;
  font-size: 27px;
  font-weight: 900;
  text-align: left;
  direction: ltr;
}

.course-image span {
  max-width: 190px;
  line-height: 1.2;
}

.image-office { background-image: linear-gradient(130deg, rgba(11, 45, 77, .88), rgba(23, 103, 168, .50)), url("https://images.unsplash.com/photo-1551847677-dc82d764e1eb?auto=format&fit=crop&w=620&q=80"); }
.image-web { background-image: linear-gradient(130deg, rgba(11, 45, 77, .88), rgba(85, 119, 170, .50)), url("https://images.unsplash.com/photo-1544027993-37dbfe43562a?auto=format&fit=crop&w=620&q=80"); }
.image-it { background-image: linear-gradient(130deg, rgba(11, 45, 77, .88), rgba(217, 59, 69, .45)), url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=620&q=80"); }
.image-robot { background-image: linear-gradient(130deg, rgba(11, 45, 77, .88), rgba(23, 103, 168, .45)), url("https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&w=620&q=80"); }
.image-network { background-image: linear-gradient(130deg, rgba(11, 45, 77, .88), rgba(30, 94, 140, .52)), url("https://images.unsplash.com/photo-1494172961521-33799ddd43a5?auto=format&fit=crop&w=620&q=80"); }
.image-computing { background-image: linear-gradient(130deg, rgba(11, 45, 77, .88), rgba(55, 125, 125, .48)), url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=620&q=80"); }

.course-body {
  padding: 22px 22px 24px;
  text-align: center;
}

.course-body h3 {
  min-height: 72px;
  margin: 0 0 16px;
  color: #555a70;
  font-size: 18px;
  line-height: 1.55;
}

.course-body p {
  margin: 0 0 16px;
  color: #9a9aae;
  font-size: 13px;
  text-transform: uppercase;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.course-footer strong {
  color: #4c5068;
  font-size: 23px;
}

.why {
  padding: 34px 0 64px;
  background: #fff;
}

.why-panel {
  padding: 58px 60px 48px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(50, 45, 81, .11);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.feature-grid article {
  padding: 36px 30px 32px;
  border-radius: 5px;
  background: #fafafa;
  border-top: 4px solid var(--purple);
  text-align: center;
}

.feature-grid span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-size: 29px;
}

.feature-grid h3 {
  margin: 0 0 9px;
  color: #555a70;
  font-size: 22px;
}

.feature-grid p {
  margin: 0;
  color: #9092a2;
  font-size: 16px;
}

.center-btn {
  width: fit-content;
  margin: 0 auto;
  display: flex;
}

.accreditations {
  padding: 54px 0 64px;
  background: #fff;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.accreditation-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(49, 45, 83, .08);
}

.accreditation-top {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px;
  color: #fff;
  background: var(--purple);
}

.accreditation-top h3 {
  margin: 0;
  font-size: 25px;
}

.accreditation-top span {
  font-size: 42px;
}

.accreditation-grid strong,
.accreditation-grid p,
.accreditation-grid a {
  margin-inline: 26px;
}

.accreditation-grid strong {
  display: inline-flex;
  margin-top: 22px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #ffe269;
  color: #7a6500;
  font-size: 14px;
}

.accreditation-grid p {
  min-height: 112px;
  color: #777b8f;
  font-size: 16px;
}

.accreditation-grid a {
  margin-bottom: 24px;
}

.articles {
  padding: 72px 0 82px;
  background: #f0ecff;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.article-grid article {
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(65, 58, 118, .08);
}

.article-grid img {
  height: 175px;
  object-fit: cover;
}

.article-grid span {
  display: inline-flex;
  margin: 14px 16px 8px;
  padding: 3px 10px;
  border-radius: 14px;
  background: var(--mint);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.article-grid h3 {
  min-height: 72px;
  margin: 0 16px 8px;
  color: #555a70;
  font-size: 18px;
  line-height: 1.45;
}

.article-grid p {
  margin: 0 16px 18px;
  color: #888b9d;
  font-size: 15px;
}

.newsletter {
  padding: 68px 0;
  background: var(--purple);
  color: #fff;
  text-align: center;
}

.newsletter h2 {
  color: #fff;
}

.newsletter p {
  max-width: 580px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, .82);
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 430px;
  margin: 0 auto;
}

input {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 22px;
  padding: 0 18px;
  font: inherit;
}

.newsletter .green-btn {
  border-radius: 22px;
  min-width: 130px;
}

.booking {
  padding: 72px 0;
  background: #fff;
}

.booking-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
  padding: 44px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(50, 45, 81, .12);
  border: 1px solid var(--line);
}

.booking-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--purple);
  font-weight: 900;
}

.booking-copy h2 {
  margin: 0 0 12px;
  color: #555a70;
  font-size: 36px;
  line-height: 1.28;
}

.booking-copy p {
  margin: 0 0 22px;
  color: #818498;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #555a70;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--text);
  background: #fbfaff;
  font: inherit;
}

.field textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.booking-submit,
.booking-message {
  grid-column: 1 / -1;
}

.booking-submit {
  width: 100%;
  min-height: 50px;
}

.booking-message {
  min-height: 24px;
  margin: 0;
  color: var(--mint);
  font-weight: 800;
  text-align: center;
}

.booking-message.error {
  color: #dc2626;
}

.faq {
  padding: 66px 0 70px;
  background: #f7f5ff;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid #e1ddf1;
}

.faq-item {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid #e1ddf1;
  background: transparent;
  color: #6b5fe7;
  font: inherit;
  font-size: 17px;
  cursor: pointer;
}

.faq-item b {
  color: #6b5fe7;
  font-size: 18px;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: #777b8f;
  font-size: 16px;
}

.faq-answer.open {
  display: block;
}

.help-line {
  margin: 22px auto 0;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 4px;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
}

.footer {
  padding: 76px 0 28px;
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr 1fr;
  gap: 58px;
}

.footer h2,
.footer h3 {
  margin: 0 0 15px;
  color: #fff;
}

.footer p,
.footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  font-size: 11px;
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.admin-page {
  background: #f7f5ff;
}

.admin-main {
  padding: 54px 0 80px;
}

.admin-panel {
  padding: 34px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(50, 45, 81, .1);
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.admin-head span {
  color: var(--purple);
  font-weight: 900;
}

.admin-head h1 {
  margin: 4px 0;
  color: #555a70;
  font-size: 38px;
}

.admin-head p {
  margin: 0;
  color: #83869a;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stats-4 {
  grid-template-columns: repeat(4, 1fr);
}

.admin-stats article {
  padding: 20px;
  border-radius: 8px;
  background: #fbfaff;
  border: 1px solid var(--line);
}

.admin-stats strong,
.admin-stats span {
  display: block;
}

.admin-stats strong {
  color: var(--purple);
  font-size: 32px;
  line-height: 1;
}

.admin-stats span {
  margin-top: 8px;
  color: #777b8f;
  font-weight: 800;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: top;
}

.admin-table th {
  color: #555a70;
  background: #fbfaff;
  font-size: 14px;
}

.admin-table td {
  color: #696d80;
  font-size: 14px;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small {
  margin-top: 4px;
  color: #9a9aae;
}

.status-pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(34, 214, 166, .13);
  color: #0e9f7b;
  font-weight: 900;
}

.status-pending {
  background: rgba(245, 158, 11, .14);
  color: #b45309;
}

.status-confirmed {
  background: rgba(22, 163, 74, .14);
  color: #15803d;
}

.status-cancelled {
  background: rgba(217, 59, 69, .14);
  color: #b9212d;
}

.admin-actions-cell {
  display: flex;
  gap: 8px;
}

.admin-actions-cell button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--purple);
  font-weight: 800;
  cursor: pointer;
}

.empty-bookings {
  display: none;
  padding: 26px;
  margin: 0;
  color: #83869a;
  text-align: center;
}

.empty-bookings.visible {
  display: block;
}

.login-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--navy);
}

.login-card {
  width: min(430px, 100%);
  display: grid;
  gap: 12px;
  padding: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.login-kicker {
  color: var(--purple);
  font-weight: 900;
}

.login-card h1 {
  margin: 0 0 8px;
  color: #555a70;
}

.login-card label {
  color: #555a70;
  font-weight: 800;
}

.login-card input {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfaff;
}

.login-card button {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
}

.login-card a {
  color: var(--purple);
  text-align: center;
  font-weight: 800;
}

.login-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 7px;
  background: #fee2e2;
  color: #b91c1c;
}

.install-panel {
  max-width: 620px;
  text-align: center;
}

.auth-muted {
  margin: -6px 0 8px;
  color: var(--muted);
}

.patient-card .login-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.patient-main {
  padding: 56px 0 86px;
}

.patient-hero {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 45, 77, .96), rgba(23, 103, 168, .90)),
    url("https://images.unsplash.com/photo-1551076805-e1869033e561?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: 0 28px 70px rgba(15, 65, 105, .18);
}

.patient-hero .login-kicker {
  color: #ffcad0;
}

.patient-hero h1 {
  margin: 10px 0;
  font-weight: 900;
}

.patient-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.patient-hero-card {
  display: grid;
  place-items: center;
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 24px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.patient-hero-card strong {
  font-size: 52px;
  line-height: 1;
}

.patient-hero-card span {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

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

.dashboard-alert {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 800;
}

.dashboard-alert.success {
  background: rgba(22, 163, 74, .12);
  color: #15803d;
}

.dashboard-alert.error {
  background: rgba(217, 59, 69, .12);
  color: #b9212d;
}

.dashboard-card {
  padding: 28px;
  border: 1px solid rgba(23, 103, 168, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 55px rgba(15, 65, 105, .11);
}

.appointments-card {
  grid-column: 1 / -1;
}

.dashboard-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.dashboard-card-head i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 14px 28px rgba(23, 103, 168, .18);
}

.dashboard-card-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.profile-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.profile-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  color: var(--muted);
  font-weight: 800;
}

.profile-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.dashboard-form {
  display: grid;
  gap: 12px;
}

.dashboard-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dashboard-form label {
  color: var(--navy);
  font-weight: 800;
}

.dashboard-form input,
.dashboard-form select,
.dashboard-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7e7f4;
  border-radius: 14px;
  padding: 0 14px;
  background: #fff;
  font: inherit;
}

.dashboard-form textarea {
  min-height: 108px;
  padding-top: 12px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .logo {
    margin-inline-start: auto;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.open .main-nav,
  .site-header.open .header-actions {
    display: flex;
    width: 100%;
  }

  .site-header.open .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .site-header.open .main-nav {
    order: 5;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.open .header-actions {
    order: 6;
  }

  .hero-inner,
  .trainer-inner,
  .booking-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
    order: 1;
    padding-top: 44px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-photo {
    order: 2;
  }

  .hero-buttons {
    justify-content: center;
  }

  .track-grid,
  .course-grid,
  .article-grid,
  .feature-grid,
  .accreditation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 30px;
  }

  .hero-copy h2 {
    font-size: 24px;
  }
}

@media (max-width: 1240px) {
  .container {
    width: min(1120px, calc(100% - 38px));
  }

  .main-nav {
    gap: 22px;
    font-size: 15px;
  }

  .header-actions .green-btn,
  .header-actions .outline-btn {
    min-width: auto;
    padding-inline: 20px;
  }

  .hero-copy p {
    font-size: 42px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-copy h2 {
    font-size: 30px;
  }

  .hero-photo img {
    width: min(520px, 100%);
    height: 560px;
  }
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 30px;
  }

  .hero-copy h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1040px);
  }

  .hero-copy h1 {
    font-size: 33px;
  }

  .hero-copy p {
    font-size: 24px;
  }

  .hero-copy h2 {
    font-size: 19px;
  }

  .hero-photo img,
  .trainer-inner img {
    height: 310px;
  }

  .track-grid,
  .course-grid,
  .article-grid,
  .feature-grid,
  .accreditation-grid {
    grid-template-columns: 1fr;
  }

  .track-grid {
    margin-top: -28px;
  }

  .track-grid article {
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .newsletter form,
  .booking-form,
  .header-actions {
    flex-direction: column;
  }

  .booking-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-panel {
    padding: 28px 18px;
  }

  .admin-head,
  .admin-actions-cell {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-stats-4,
  .patient-hero,
  .patient-grid,
  .dashboard-form-row {
    grid-template-columns: 1fr;
  }

  .why-panel {
    padding: 34px 18px;
  }

  .section-title h2,
  .newsletter h2 {
    font-size: 30px;
  }

  .course-body h3,
  .article-grid h3 {
    min-height: auto;
  }

  .accreditation-grid p {
    min-height: auto;
  }

  .course-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .course-footer .purple-btn {
    width: 100%;
  }
}

/* Premium medical/psychology refresh */
:root {
  --navy: #0b2d4d;
  --navy-2: #123f68;
  --purple: #1f6fb8;
  --purple-2: #0f5e9c;
  --mint: #d93b45;
  --text: #1d2b3a;
  --muted: #6d7b8a;
  --soft: #f3f8fd;
  --line: #dbe8f4;
  --white: #fff;
  --red: #d93b45;
  --blue: #1767a8;
  --sky: #eaf5ff;
  --shadow: 0 22px 55px rgba(15, 65, 105, .13);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 59, 69, .07), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #fff 36%, #f7fbff 100%);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  border-bottom: 1px solid rgba(23, 103, 168, .12);
  box-shadow: 0 10px 30px rgba(12, 46, 78, .07);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), #0b2d4d);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(23, 103, 168, .23);
}

.main-nav {
  color: #30465c;
  gap: 26px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color .2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transition: width .2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:hover::after {
  width: 100%;
}

.green-btn,
.purple-btn,
.white-btn,
.outline-btn,
.outline-light,
.outline-purple {
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.green-btn:hover,
.purple-btn:hover,
.white-btn:hover,
.outline-btn:hover,
.outline-light:hover,
.outline-purple:hover {
  transform: translateY(-2px);
}

.green-btn {
  background: linear-gradient(135deg, var(--red), #b9212d);
  box-shadow: 0 14px 28px rgba(217, 59, 69, .22);
}

.purple-btn {
  background: linear-gradient(135deg, var(--blue), #0b4f87);
  box-shadow: 0 14px 28px rgba(23, 103, 168, .23);
}

.header-actions .outline-btn {
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(23, 103, 168, .18);
  box-shadow: 0 10px 24px rgba(15, 65, 105, .08);
}

.hero {
  position: relative;
  min-height: 650px;
  background:
    linear-gradient(120deg, rgba(11, 45, 77, .96), rgba(23, 103, 168, .90)),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1500&q=80") center/cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(90deg, rgba(217, 59, 69, .12), transparent 42%);
}

.hero-inner {
  min-height: 650px;
  align-items: center;
  gap: 56px;
}

.hero-photo {
  position: relative;
}

.hero-photo::before {
  position: absolute;
  inset: 42px 20px 0;
  content: "";
  border-radius: 32px;
  background: rgba(255, 255, 255, .16);
  transform: rotate(-3deg);
}

.hero-photo img {
  position: relative;
  width: min(490px, 100%);
  height: 560px;
  border-radius: 28px 28px 0 0;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.doctor-identity-card {
  position: relative;
  width: min(520px, 100%);
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  margin-inline: auto;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 24% 18%, rgba(217, 59, 69, .22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  text-align: center;
  backdrop-filter: blur(16px);
}

.doctor-avatar {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 42px;
  background: linear-gradient(135deg, #fff, #d9edff);
  color: var(--navy);
  font-size: 48px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
}

.doctor-identity-card strong {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
}

.doctor-identity-card small {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
}

.doctor-identity-card p {
  max-width: 360px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.doctor-portrait-card {
  position: relative;
  width: min(660px, 100%);
  min-height: 650px;
  display: grid;
  align-content: end;
  overflow: hidden;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 34px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.doctor-portrait-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-portrait-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(11, 45, 77, .88));
}

.doctor-portrait-card div {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.doctor-portrait-card strong,
.doctor-portrait-card small {
  display: block;
}

.doctor-portrait-card strong {
  font-size: 32px;
  line-height: 1.2;
}

.doctor-portrait-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  font-weight: 700;
}

.hero-copy {
  padding-bottom: 0;
}

.hero-copy p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  color: #fff;
  font-size: 17px;
}

.hero-copy p::before {
  content: "\F33A";
  font-family: "bootstrap-icons";
  color: #ffb6bd;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.13;
}

.hero-copy h1 span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700;
}

.hero-copy h2 {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(20px, 2.3vw, 34px);
}

.hero-buttons .purple-btn,
.hero-buttons .outline-light {
  border-radius: 14px;
}

.hero-buttons .outline-light {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.tracks {
  padding-bottom: 86px;
  background: #fff;
}

.track-grid {
  max-width: 980px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(15, 65, 105, .16);
}

.track-grid article {
  min-height: 235px;
  border-color: rgba(23, 103, 168, .10);
  background:
    linear-gradient(180deg, #fff, #f7fbff);
  transition: transform .25s ease, box-shadow .25s ease;
}

.track-grid article:hover,
.course-card:hover,
.article-grid article:hover,
.accreditation-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 65, 105, .15);
}

.track-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: var(--sky);
  color: #7fd3ff;
  font-size: 0;
  box-shadow: 0 14px 28px rgba(8, 35, 61, .18);
}

.track-icon i {
  display: block;
  color: currentColor;
  font-size: 28px;
  line-height: 1;
}

.track-grid article:nth-child(1) .track-icon::before,
.track-grid article:nth-child(2) .track-icon::before,
.track-grid article:nth-child(3) .track-icon::before {
  content: none;
}

.section-title {
  margin-bottom: 44px;
}

.section-title h2,
.newsletter h2 {
  color: var(--navy);
  font-weight: 900;
}

.section-title p {
  color: #6f8192;
}

.partner-logos span {
  border: 1px solid rgba(23, 103, 168, .15);
  color: var(--blue);
  box-shadow: 0 14px 32px rgba(15, 65, 105, .10);
}

.trainer-band {
  background: linear-gradient(120deg, var(--blue), #0b2d4d);
}

.courses,
.why,
.accreditations,
.booking {
  padding-top: 90px;
  padding-bottom: 95px;
}

.courses {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.course-card,
.article-grid article,
.accreditation-grid article {
  border: 1px solid rgba(23, 103, 168, .10);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 65, 105, .10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.course-image {
  min-height: 190px;
  border-radius: 20px 20px 0 0;
}

.course-body h3,
.feature-grid h3,
.article-grid h3 {
  color: var(--navy);
  font-weight: 850;
}

.course-footer {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.why-panel,
.booking-panel,
.admin-panel,
.login-card {
  border: 1px solid rgba(23, 103, 168, .10);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 65, 105, .13);
}

.feature-grid article {
  border: 1px solid rgba(23, 103, 168, .10);
  border-top: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 14px 35px rgba(15, 65, 105, .08);
}

.feature-grid span {
  background: linear-gradient(135deg, var(--red), #b9212d);
  box-shadow: 0 14px 28px rgba(217, 59, 69, .18);
}

.accreditation-top {
  background: linear-gradient(135deg, var(--blue), #0b2d4d);
}

.articles {
  background:
    linear-gradient(180deg, #eef7ff, #f9fbff);
}

.article-grid img {
  height: 190px;
}

.article-grid span {
  background: rgba(217, 59, 69, .10);
  color: var(--red);
}

.newsletter {
  background:
    linear-gradient(120deg, rgba(11, 45, 77, .96), rgba(23, 103, 168, .94)),
    url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1300&q=80") center/cover;
}

.newsletter form {
  max-width: 560px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.newsletter input {
  border-radius: 999px;
}

.booking {
  background:
    radial-gradient(circle at 85% 20%, rgba(217, 59, 69, .08), transparent 28%),
    linear-gradient(180deg, #fff, #f4f9ff);
}

.booking-panel {
  grid-template-columns: .9fr 1.1fr;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .96)),
    url("https://images.unsplash.com/photo-1559757175-0eb30cd8c063?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.booking-copy span {
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(217, 59, 69, .10);
  color: var(--red);
}

.booking-copy h2 {
  color: var(--navy);
  font-weight: 900;
}

.booking-form {
  padding: 28px;
  border: 1px solid rgba(23, 103, 168, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 42px rgba(15, 65, 105, .10);
  backdrop-filter: blur(12px);
}

.field label {
  color: var(--navy);
}

.field input,
.field select,
.field textarea,
.login-card input {
  border: 1px solid #d7e7f4;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.login-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 .25rem rgba(23, 103, 168, .14);
  outline: 0;
}

.admin-page {
  background:
    radial-gradient(circle at 15% 15%, rgba(217, 59, 69, .08), transparent 28%),
    linear-gradient(180deg, #eef7ff, #fbfdff);
}

.admin-main {
  padding-top: 72px;
}

.admin-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-head span,
.login-kicker {
  color: var(--red);
}

.admin-head h1 {
  color: var(--navy);
  font-weight: 900;
}

.admin-stats article {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #eef7ff);
  box-shadow: 0 16px 38px rgba(15, 65, 105, .10);
}

.admin-stats article::after {
  position: absolute;
  top: -24px;
  left: -18px;
  width: 86px;
  height: 86px;
  content: "";
  border-radius: 50%;
  background: rgba(217, 59, 69, .10);
}

.admin-stats strong {
  color: var(--blue);
}

.admin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 65, 105, .08);
}

.admin-table {
  margin-bottom: 0;
}

.admin-table th {
  color: var(--navy);
  background: #f3f8fd;
}

.admin-table tr:hover td {
  background: #fbfdff;
}

.status-pill {
  background: rgba(23, 103, 168, .10);
  color: var(--blue);
}

.admin-actions-cell button {
  border-color: rgba(23, 103, 168, .14);
  border-radius: 10px;
  color: var(--blue);
  transition: background .2s ease, color .2s ease;
}

.admin-actions-cell button:hover {
  background: var(--blue);
  color: #fff;
}

.login-main {
  background:
    linear-gradient(135deg, rgba(11, 45, 77, .96), rgba(23, 103, 168, .92)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1300&q=80") center/cover;
}

.login-card {
  border: 1px solid rgba(255, 255, 255, .22);
}

.login-card h1 {
  color: var(--navy);
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-photo,
  .track-grid,
  .course-card,
  .booking-panel,
  .admin-panel,
  .login-card {
    animation: fadeUp .55s ease both;
  }

  .hero-photo {
    animation-delay: .08s;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1240px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .main-nav {
    gap: 17px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .site-header.open .main-nav {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.open .header-actions {
    margin-inline-start: 0;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 0;
  }

  .hero-inner {
    min-height: auto;
    gap: 30px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy h2 {
    margin-inline: auto;
  }

  .hero-photo img {
    height: 420px;
    border-radius: 26px 26px 0 0;
  }

  .doctor-portrait-card {
    min-height: 480px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 16px, 1180px);
  }

  .hero-buttons .purple-btn,
  .hero-buttons .outline-light {
    width: 100%;
  }

  .doctor-portrait-card {
    min-height: 390px;
  }

  .track-grid {
    border-radius: 18px;
  }

  .course-card,
  .article-grid article,
  .booking-panel,
  .booking-form,
  .admin-panel,
  .login-card {
    border-radius: 18px;
  }

  .booking-panel,
  .booking-form,
  .admin-panel,
  .login-card {
    padding: 22px;
  }

  .newsletter form {
    border-radius: 22px;
  }

  .newsletter .green-btn {
    width: 100%;
  }
}

/* Larger, clearer psychology service cards */
.course-grid {
  gap: 34px;
}

@media (min-width: 1320px) {
  .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .track-grid {
    max-width: 1180px;
  }

  .booking-panel,
  .why-panel,
  .admin-panel {
    max-width: 1320px;
  }
}

.course-card {
  border-radius: 24px;
}

.course-image {
  min-height: 250px;
  padding: 30px;
  font-size: 32px;
  background-size: cover;
  background-position: center;
}

.course-image span {
  max-width: 270px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .38);
}

.course-body {
  padding: 30px 28px 32px;
}

.course-body h3 {
  min-height: 86px;
  font-size: 21px;
}

.course-body p {
  font-size: 15px;
}

.course-footer strong {
  font-size: 25px;
}

.image-office { background-image: linear-gradient(130deg, rgba(11, 45, 77, .58), rgba(23, 103, 168, .24)), url("https://images.unsplash.com/photo-1551847677-dc82d764e1eb?auto=format&fit=crop&w=820&q=88"); }
.image-web { background-image: linear-gradient(130deg, rgba(11, 45, 77, .58), rgba(85, 119, 170, .24)), url("https://images.unsplash.com/photo-1544027993-37dbfe43562a?auto=format&fit=crop&w=820&q=88"); }
.image-it { background-image: linear-gradient(130deg, rgba(11, 45, 77, .58), rgba(217, 59, 69, .22)), url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=820&q=88"); }
.image-robot { background-image: linear-gradient(130deg, rgba(11, 45, 77, .58), rgba(23, 103, 168, .22)), url("https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&w=820&q=88"); }
.image-network { background-image: linear-gradient(130deg, rgba(11, 45, 77, .58), rgba(30, 94, 140, .24)), url("https://images.unsplash.com/photo-1494172961521-33799ddd43a5?auto=format&fit=crop&w=820&q=88"); }
.image-computing { background-image: linear-gradient(130deg, rgba(11, 45, 77, .58), rgba(55, 125, 125, .22)), url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=820&q=88"); }

@media (max-width: 640px) {
  .course-image {
    min-height: 220px;
    font-size: 27px;
  }

  .course-body h3 {
    min-height: auto;
  }
}

/* Full-width desktop layout: override Bootstrap container limits */
@media (min-width: 992px) {
  .container {
    width: 96vw;
    max-width: 1720px;
    padding-right: 0;
    padding-left: 0;
  }

  .hero-inner,
  .course-grid,
  .track-grid,
  .why-panel,
  .booking-panel,
  .admin-panel,
  .footer-grid,
  .article-grid,
  .accreditation-grid {
    width: 100%;
  }

  .track-grid {
    max-width: none;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 97vw;
    max-width: 1840px;
  }
}

/* Integrated official portrait in hero */
.hero-wide-portrait {
  width: min(920px, 100%);
  min-height: 720px;
  border: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, .98), rgba(221, 239, 255, .76) 44%, rgba(255, 255, 255, .92)),
    linear-gradient(135deg, rgba(23, 105, 170, .16), rgba(201, 15, 63, .07));
  box-shadow: 0 34px 90px rgba(15, 65, 105, .20);
}

.hero-wide-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wide-portrait::after {
  background:
    linear-gradient(180deg, transparent 62%, rgba(8, 35, 61, .78)),
    linear-gradient(90deg, rgba(201, 15, 63, .10), transparent 40%, rgba(23, 105, 170, .10));
}

.hero-wide-portrait div {
  padding: 24px 28px;
}

@media (max-width: 900px) {
  .hero-wide-portrait {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .hero-wide-portrait {
    min-height: 420px;
  }
}

/* Refined modern decor */
:root {
  --navy: #08233d;
  --navy-2: #123c62;
  --blue: #1769aa;
  --purple: #1769aa;
  --purple-2: #0f578f;
  --red: #c90f3f;
  --mint: #c90f3f;
  --soft: #f4f9fd;
  --line: #dceaf5;
  --text: #17283b;
  --muted: #6f7f8f;
  --shadow: 0 24px 70px rgba(8, 35, 61, .12);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(201, 15, 63, .07), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(23, 105, 170, .10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f4f9fd 100%);
}

.site-header {
  background: rgba(255, 255, 255, .90);
  border-bottom: 1px solid rgba(8, 35, 61, .08);
}

.header-inner {
  min-height: 98px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 84px;
  height: 84px;
  padding: 4px;
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 12px 26px rgba(8, 35, 61, .12);
}

.main-nav {
  gap: 30px;
  font-size: 17px;
  font-weight: 600;
}

.header-actions .green-btn,
.header-actions .outline-btn {
  min-height: 42px;
  min-width: 104px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
}

.header-actions .green-btn {
  background: linear-gradient(135deg, #1769aa, #0b4f87);
  box-shadow: 0 12px 24px rgba(23, 105, 170, .18);
}

body {
  font-size: 15px;
}

.main-nav {
  font-size: 13px;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.hero-copy h1 span {
  font-size: clamp(20px, 2.2vw, 30px);
}

.hero-copy h2 {
  font-size: clamp(16px, 1.8vw, 24px);
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.section-head p,
.course-card p,
.article-grid p,
.track-grid p,
.why p,
.accreditation-grid p,
.booking-intro p,
.booking-form label,
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-size: 15px;
}

.track-grid h3,
.course-card h3,
.article-grid h3,
.accreditation-grid h3 {
  font-size: 18px;
}

.purple-btn,
.green-btn,
.white-btn,
.outline-btn,
.outline-light,
.outline-purple {
  font-size: 13px;
}

.hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(23, 105, 170, .12), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(8, 35, 61, .08), transparent 30%),
    linear-gradient(135deg, #f6fbff 0%, #eaf4fc 48%, #f9fcff 100%);
  color: var(--navy);
}

.hero::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .64), transparent 36%),
    repeating-linear-gradient(135deg, rgba(23, 105, 170, .045) 0 1px, transparent 1px 26px);
  opacity: .82;
}

.hero-copy p {
  border-color: rgba(23, 105, 170, .18);
  background: rgba(255, 255, 255, .76);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(8, 35, 61, .08);
}

.hero-copy h1 {
  color: var(--navy);
}

.hero-copy h1 span,
.hero-copy h2 {
  color: #51667a;
}

.hero-buttons .outline-light {
  border-color: rgba(23, 105, 170, .26);
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(8, 35, 61, .08);
}

.hero-buttons .purple-btn {
  background: linear-gradient(135deg, #1769aa, #0b4f87);
  box-shadow: 0 16px 34px rgba(23, 105, 170, .20);
}

.hero-wide-portrait {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-photo::before {
  display: none;
}

.hero-wide-portrait img {
  inset: auto auto -7% -14%;
  width: 145%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 28px 38px rgba(8, 35, 61, .16));
}

.hero-wide-portrait::after {
  background: none;
}

.hero-wide-portrait div {
  display: none;
}

.tracks,
.courses,
.why,
.accreditations,
.booking {
  position: relative;
}

.tracks::before,
.courses::before,
.booking::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 105, 170, .06), transparent 22%),
    radial-gradient(circle at 92% 55%, rgba(201, 15, 63, .05), transparent 24%);
}

.track-grid,
.course-card,
.why-panel,
.booking-panel,
.article-grid article,
.accreditation-grid article,
.admin-panel,
.dashboard-card {
  border: 1px solid rgba(23, 105, 170, .10);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(8, 35, 61, .10);
  backdrop-filter: blur(10px);
}

.track-grid article,
.feature-grid article {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.section-title h2,
.course-body h3,
.feature-grid h3,
.booking-copy h2,
.dashboard-card-head h2 {
  color: var(--navy);
}

.purple-btn,
.green-btn {
  background: linear-gradient(135deg, var(--red), #a90c34);
  box-shadow: 0 16px 34px rgba(201, 15, 63, .20);
}

.purple-btn:hover,
.green-btn:hover {
  background: linear-gradient(135deg, #df1c4e, var(--red));
}

.dashboard-card-head i {
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.track-icon {
  border: 1px solid rgba(23, 105, 170, .18);
  background: linear-gradient(135deg, #ecf8ff, #c8ecff);
  color: #1590dc;
}

.feature-grid span {
  background: linear-gradient(135deg, var(--red), #a90c34);
}

.accreditation-top,
.newsletter {
  background:
    linear-gradient(135deg, rgba(8, 35, 61, .96), rgba(23, 105, 170, .92)),
    radial-gradient(circle at 10% 20%, rgba(201, 15, 63, .20), transparent 26%);
}

.booking-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .93), rgba(246, 251, 255, .93)),
    radial-gradient(circle at 15% 15%, rgba(201, 15, 63, .07), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(23, 105, 170, .08), transparent 28%);
}

.booking-form,
.login-card {
  background: rgba(255, 255, 255, .92);
}

.footer {
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 15, 63, .14), transparent 26%),
    linear-gradient(135deg, #061b2f, #0b2d4d);
}

.section-title p,
.partner-copy,
.track-grid p,
.course-body p,
.feature-grid p,
.accreditation-grid p,
.article-grid p,
.newsletter p,
.booking-copy p,
.faq-answer,
.footer p,
.footer a {
  font-size: 15px;
  line-height: 1.75;
}

.field label,
.help-line,
.article-grid span,
.accreditation-grid strong,
.course-footer strong,
.footer-bottom {
  font-size: 13px;
}

.header-inner {
  min-height: 58px;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.main-nav {
  gap: 20px;
}

.header-actions .green-btn,
.header-actions .outline-btn {
  min-height: 28px;
  min-width: 66px;
  padding-inline: 12px;
  border-radius: 7px;
  font-size: 11px;
}

.hero,
.hero-inner {
  min-height: 500px;
}

.hero {
  padding-left: 15px;
  padding-right: 15px;
}

.hero .container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 15px;
}

.hero-inner {
  gap: 34px;
}

.hero-copy {
  padding-inline-end: clamp(80px, 8vw, 150px);
}

.hero-wide-portrait {
  width: min(620px, 100%);
  min-height: 500px;
}

.hero-buttons .purple-btn,
.hero-buttons .outline-light {
  min-height: 42px;
  padding-inline: 22px;
  border-radius: 10px;
  font-size: 14px;
}

.booking {
  overflow-x: hidden;
}

.booking .booking-panel {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero .container {
    padding-inline: 10px;
  }

  .hero-copy {
    padding-inline-end: 0;
  }
}

html {
  overflow-x: hidden;
  zoom: .8;
}

body {
  width: 100%;
  overflow-x: hidden;
}
