﻿:root {
      --orange: #f5b150;
      --orange-dark: #eba23b;
      --ink: #242832;
      --muted: #68707d;
      --light: #f5f7fa;
      --dark: #151922;
      --line: #e2e6ec;
      --white: #fff;
      --grad: linear-gradient(90deg, #f5b150 0%, #f07a23 100%);
      --hero-image: url("assets/images/banner-03.jpg");
      font-family: "Poppins", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
    .topbar {
      background: #f7f8fb;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
    }
    .topbar .container,
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .topbar .container { min-height: 44px; }
    .top-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-left: auto;
    }
    .top-actions i { color: var(--orange); margin-right: 6px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: 10px 18px;
      border: 0;
      border-radius: 4px;
      font-weight: 700;
      letter-spacing: 0;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .btn:hover { transform: none; }
    .btn-grad {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: linear-gradient(90deg, #f5b150 0%, #f07a23 50%, #f5b150 100%);
      background-size: 260% 100%;
      background-position: right bottom;
      box-shadow: 0 8px 22px rgba(242, 92, 31, .28);
    }
    .btn-grad::after {
      content: "";
      position: absolute;
      top: -70%;
      bottom: -70%;
      left: -55%;
      width: 45%;
      background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.18) 45%, rgba(255,255,255,.58) 50%, rgba(255,255,255,.18) 55%, transparent 100%);
      transform: translateX(-120%) skewX(-18deg);
      pointer-events: none;
    }
    .btn-grad:hover,
    .btn-grad:focus {
      color: var(--white);
      background-position: left bottom;
    }
    .btn-grad:hover::after,
    .btn-grad:focus::after {
      animation: btn-sheen .85s ease-out;
    }
    @keyframes btn-sheen {
      from { transform: translateX(-120%) skewX(-18deg); }
      to { transform: translateX(520%) skewX(-18deg); }
    }
    .btn-dark { color: var(--white); background: var(--dark); }
    .btn-white { color: var(--orange-dark); background: var(--white); }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(255,255,255,.97);
      border-bottom: 1px solid rgba(226,230,236,.85);
      box-shadow: 0 8px 24px rgba(20, 25, 34, .06);
    }
    .navbar .container { min-height: 86px; }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--orange-dark);
      font-size: 27px;
      font-weight: 800;
      white-space: nowrap;
    }
    .brand-logo {
      width: 190px;
      height: auto;
    }
    .brand-mark {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      color: var(--white);
      background: var(--grad);
      border-radius: 50%;
      font-weight: 800;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 22px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 13px;
      font-weight: 700;
    }
    .nav-links a { color: #242832; }
    .nav-links a:hover { color: var(--orange-dark); }

    .ribbon {
      background: var(--grad);
      color: var(--white);
      padding: 12px 0;
      text-align: center;
      font-size: 15px;
    }
    .ribbon strong { font-weight: 800; }

    .hero {
      min-height: 620px;
      display: grid;
      align-items: center;
      position: relative;
      color: var(--white);
      background:
        linear-gradient(rgba(12,15,22,.52), rgba(12,15,22,.55)),
        var(--hero-image) center/cover no-repeat;
      transition: background-image .45s ease;
    }
    .hero-content {
      width: min(860px, 100%);
      margin: 0 auto;
      text-align: center;
      padding: 80px 0;
    }
    .eyebrow {
      margin: 0 0 14px;
      font-family: "Playfair Display", serif;
      font-size: clamp(22px, 3vw, 34px);
      font-style: italic;
      font-weight: 400;
    }
    h1 {
      margin: 0 0 26px;
      font-size: clamp(38px, 6vw, 70px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    section { padding: 76px 0; }
    h2 {
      margin: 0 0 16px;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.16;
      letter-spacing: 0;
    }
    h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.25; }
    p { margin: 0 0 18px; color: var(--muted); }
    .lead { font-size: 19px; color: #4e5664; }

    .split {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 52px;
      align-items: center;
    }
    .finder {
      padding: 30px;
      color: var(--white);
      background: var(--grad);
      border-radius: 6px;
      box-shadow: 0 18px 42px rgba(242, 92, 31, .22);
    }
    .finder h3 { color: var(--white); }
    .finder hr {
      border: 0;
      border-top: 1px solid rgba(255,255,255,.35);
      margin: 18px 0;
    }
    .field {
      width: 100%;
      height: 48px;
      margin-bottom: 14px;
      padding: 0 14px;
      border: 1px solid rgba(255,255,255,.55);
      border-radius: 3px;
      color: var(--ink);
      background: var(--white);
      font: inherit;
    }

    .why {
      padding: 0;
      background: var(--light);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 440px;
    }
    .why-photo {
      background: url("assets/images/05-we-can-do-that.jpg") center/cover no-repeat;
    }
    .why-copy {
      padding: 58px;
      color: var(--white);
      background: var(--grad);
    }
    .why-copy p,
    .why-copy a { color: var(--white); }
    .check-list {
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }
    .check-list li {
      margin: 12px 0;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    .check-list i { margin-top: 5px; }

    .section-title { text-align: center; max-width: 760px; margin: 0 auto 38px; }
    .pre-title {
      display: block;
      color: var(--orange-dark);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: .04em;
    }
    .courses {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }
    .course-card {
      min-height: 100%;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--white);
      box-shadow: 0 10px 30px rgba(20,25,34,.06);
    }
    .course-card.wide { grid-column: span 2; }
    .course-card.accent {
      grid-column: 1 / -1;
      color: var(--white);
      background: var(--grad);
      border-color: transparent;
    }
    .course-card.accent p,
    .course-card.accent a { color: var(--white); }
    .icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      color: var(--orange-dark);
      background: #fff3eb;
      border-radius: 50%;
      font-size: 23px;
    }
    .accent .icon {
      color: var(--orange-dark);
      background: var(--white);
    }
    .course-card a {
      color: var(--orange-dark);
      font-weight: 700;
    }

    .quote-box {
      padding: 42px;
      color: var(--white);
      background: var(--dark);
      border-radius: 6px;
      text-align: center;
    }
    .quote-box h3 {
      font-family: "Playfair Display", serif;
      font-style: italic;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 400;
    }
    .quote-box p { color: #d7dce6; }
    .client-strip {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 20px;
      align-items: center;
      margin-top: 34px;
    }
    .client-logo {
      min-height: 74px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--white);
      color: #9aa2ad;
      font-size: 13px;
      font-weight: 700;
      text-align: center;
      padding: 10px;
    }
    .client-logo img {
      max-width: 100%;
      max-height: 48px;
      object-fit: contain;
    }

    .cert {
      background: var(--light);
    }
    .cert-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 52px;
      align-items: center;
    }
    .cert-photo {
      min-height: 430px;
      border-radius: 50% 40% 48% 35%;
      background:
        linear-gradient(rgba(244,111,29,.14), rgba(244,111,29,.14)),
        url("assets/images/09.jpg") center/cover no-repeat;
      box-shadow: 0 20px 42px rgba(20,25,34,.12);
    }
    .two-col-list {
      columns: 2;
      margin-top: 20px;
    }
    .two-col-list li { break-inside: avoid; color: var(--ink); }

    .cta-band {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding: 36px;
      color: var(--white);
      background: var(--grad);
      border-radius: 6px;
    }
    .cta-band h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); }

    footer {
      color: #d8dde7;
      background: var(--dark);
      padding-top: 70px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr .9fr;
      gap: 48px;
      padding-bottom: 40px;
    }
    footer h3 { color: var(--white); font-size: 18px; }
    footer p,
    footer a { color: #d8dde7; }
    footer ul { margin: 0; padding: 0; list-style: none; }
    footer li { margin-bottom: 10px; }
    .footer-contact {
      background: transparent;
    }
    .newsletter {
      padding: 26px;
      background: var(--grad);
      border-radius: 6px;
    }
    .newsletter .field { border-color: transparent; }
    .copyright {
      border-top: 1px solid rgba(255,255,255,.13);
      padding: 22px 0;
      font-size: 14px;
    }
    .copyright .container {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .back-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 44px;
      min-height: 44px;
      padding: 0;
      border-radius: 4px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
    }
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.site-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 24, .72);
}

.site-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 42px 44px 38px;
  border-top: 5px solid #f07a23;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 18, 24, .34);
  text-align: center;
}

.site-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  color: #68707d;
  background: transparent;
  cursor: pointer;
}

.site-modal-close:hover {
  color: #f07a23;
}

.site-modal-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: #fff;
  background: var(--grad);
  border-radius: 50%;
  font-size: 26px;
}

.site-modal h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 34px);
}

.site-modal p {
  color: #4e5664;
  font-size: 16px;
  line-height: 1.65;
}

.site-modal a {
  color: #f07a23;
  font-weight: 700;
}

.site-modal .btn {
  margin-top: 8px;
  margin-bottom: 0;
}

    @media (max-width: 980px) {
      .topbar { display: none; }
      .navbar .container { min-height: auto; padding: 16px 0; align-items: flex-start; }
      .nav-links { flex-wrap: wrap; gap: 10px 16px; font-size: 12px; }
      .split,
      .why-grid,
      .cert-grid,
      .footer-grid { grid-template-columns: 1fr; }
      .why-photo { min-height: 310px; }
      .courses { grid-template-columns: repeat(2, 1fr); }
      .course-card.wide { grid-column: span 1; }
      .client-strip { grid-template-columns: repeat(4, 1fr); }
    }

    @media (max-width: 680px) {
      .navbar .container { display: block; }
      .brand { margin-bottom: 14px; }
      .nav-links { justify-content: flex-start; }
      .hero { min-height: 530px; }
      section { padding: 56px 0; }
      .courses,
      .client-strip { grid-template-columns: 1fr; }
      .why-copy,
      .quote-box,
      .cta-band { padding: 28px; }
      .cta-band { display: block; text-align: center; }
      .cta-band .btn { margin-top: 22px; }
      .two-col-list { columns: 1; }
    }

/* Original-site alignment pass */
body {
  font-size: 14px;
}

.topbar {
  font-size: 12px;
}

.topbar .container {
  min-height: 30px;
}

.top-actions {
  gap: 14px;
  align-items: center;
}

.top-actions .btn,
.navbar .btn {
  min-height: 28px;
  padding: 6px 12px;
  font-size: 12px;
  margin-bottom: 0;
}

.navbar {
  box-shadow: none;
}

.navbar .container {
  min-height: 72px;
}

.brand-logo {
  width: 170px;
}

.nav-links {
  gap: 28px;
  font-size: 12px;
  text-transform: capitalize;
}

.ribbon {
  background: #151922;
  padding: 8px 0;
  font-size: 12px;
}

.hero {
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  background: #151922;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px 24px 42px;
  background: rgba(15, 18, 24, .58);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 24, .34);
}

.hero-slide.is-active {
  opacity: 1;
}

.slider-arrow,
.client-arrow {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: rgba(0, 0, 0, .34);
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}

.slider-arrow i,
.client-arrow i {
  font-size: 18px;
  line-height: 1;
}

.hero .slider-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero:hover .slider-arrow,
.client-carousel:hover .client-arrow,
.slider-arrow:focus-visible,
.client-arrow:focus-visible {
  opacity: 1;
}

.slider-arrow:hover,
.client-arrow:hover {
  background: rgba(0, 0, 0, .62);
}

.hero .eyebrow {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  color: #fff !important;
  font-size: clamp(26px, 2.65vw, 38px);
  line-height: 1.12;
}

.hero .btn {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 12px;
}

section {
  padding: 54px 0;
}

#class-finder {
  padding-top: 46px;
  padding-bottom: 44px;
}

.split {
  grid-template-columns: 380px 1fr;
  gap: 52px;
}

.finder {
  padding: 24px;
  border-radius: 0;
  box-shadow: none;
}

.finder h3 {
  margin-bottom: 18px;
  font-size: 17px;
}

.finder hr {
  display: none;
}

.field {
  height: 34px;
  margin-bottom: 12px;
  padding: 0 10px;
  font-size: 12px;
}

.finder .btn {
  min-height: 34px;
  padding: 7px 13px;
  font-size: 12px;
}

#class-finder h2 {
  max-width: 620px;
  font-size: clamp(31px, 3vw, 40px);
}

#class-finder .lead {
  display: block;
  max-width: 533px;
  margin-top: 0;
  margin-bottom: 20.8px;
  color: rgb(143, 147, 151);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
}

.why {
  background: #fff;
}

.why-grid {
  min-height: 400px;
  grid-template-columns: 1fr 1fr;
}

.why-copy {
  padding: 58px;
}

.why-copy h2 {
  display: none;
}

.why-copy p {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.why-copy .check-list {
  margin-top: 18px;
  font-size: 12px;
}

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

.section-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.container > h2[style] {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-transform: none;
}

.pre-title {
  font-family: "Playfair Display", serif;
  color: #8f9397;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.courses {
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.course-card {
  grid-column: span 2;
  min-height: 232px;
  padding: 28px 24px 24px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(30, 38, 52, .08);
  overflow: hidden;
  transition: box-shadow .5s ease-in-out, transform .5s ease-in-out;
}

.course-card.wide {
  grid-column: span 3;
}

.course-card.accent {
  grid-column: 1 / -1;
  min-height: 200px;
  padding-bottom: 30px;
}

.course-card.accent .icon {
  color: rgba(255, 255, 255, .36);
}

.course-card.accent h3 {
  color: #fff;
}

.icon,
.accent .icon {
  width: auto;
  height: auto;
  display: block;
  float: left;
  margin: 8px 24px 12px -34px;
  color: #f07a23;
  background: transparent;
  border-radius: 0;
  font-size: 62px;
  line-height: 1;
  transition: margin .5s ease-in-out, opacity .5s ease-in-out;
}

.course-card h3 {
  margin-top: 18px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.course-card p {
  clear: both;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.62;
}

.course-card a {
  color: #f07a23;
  font-size: 14px;
  font-weight: 400;
}

.lead,
#class-finder .lead,
.why-copy .check-list,
.cert p,
.two-col-list,
footer p,
footer a,
footer li {
  font-size: 15px;
}

#class-finder .lead {
  max-width: 533px;
  margin-top: 0;
  margin-bottom: 20.8px;
  color: rgb(143, 147, 151);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
}

.course-card:hover {
  box-shadow: 0 0 80px rgba(83, 88, 93, .20);
}

.course-card:hover .icon {
  margin-left: 0;
  margin-right: 12px;
}

.quote-box {
  margin-top: 18px;
  padding: 44px 52px;
  border-radius: 0;
  background: #29313a;
}

.why-choose {
  padding-top: 32px;
}

.quote-box h3 {
  color: #fff !important;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.18;
}

.quote-box p {
  color: #fff;
  font-size: 13px;
}

.client-carousel {
  position: relative;
  margin-top: 24px;
  padding: 0 42px;
}

.client-strip {
  display: block;
  overflow: hidden;
}

.client-track {
  display: flex;
  align-items: center;
  gap: 54px;
  width: max-content;
  transition: transform .8s ease;
  will-change: transform;
}

.client-track.is-jumping {
  transition: none;
}

.client-logo {
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.client-logo img {
  max-height: 32px;
  min-width: 95px;
  filter: grayscale(1);
  opacity: .64;
}

.client-arrow {
  top: 50%;
  color: #6f7680;
  background: rgba(240, 241, 243, .96);
  transform: translateY(-50%);
}

.client-prev {
  left: 0;
}

.client-next {
  right: 0;
}

.client-arrow:hover {
  color: #fff;
  background: #29313a;
}

.cert {
  padding: 70px 0;
}

.cert-grid {
  grid-template-columns: 1fr 1fr;
  gap: 58px;
}

.cert-photo {
  min-height: 390px;
  border-radius: 0;
  background: url("assets/images/09.jpg") center/cover no-repeat;
  box-shadow: none;
}

.cert h2 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.cert p {
  font-size: 13px;
}

.two-col-list {
  columns: 1;
  font-size: 13px;
}

.cta-band {
  padding: 44px 46px;
  border-radius: 0;
}

.cta-band h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(22px, 2.3vw, 30px);
}

footer {
  padding-top: 56px;
  background: #29313a;
}

.footer-grid {
  grid-template-columns: .9fr 1.3fr .78fr;
  padding-bottom: 54px;
}

footer h3 {
  font-size: 14px;
}

footer p,
footer a,
footer li,
.copyright {
  font-size: 12px;
}

.newsletter {
  border-radius: 0;
}

.newsletter h3 {
  color: #fff;
}

.newsletter .btn {
  min-height: 32px;
  padding: 7px 13px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .navbar .container {
    min-height: auto;
  }

  .split,
  .why-grid,
  .cert-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .course-card,
  .course-card.wide,
  .course-card.accent {
    grid-column: span 1;
  }

  .client-strip {
    display: block;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 480px;
  }

  .hero-content {
    padding: 28px 18px 34px;
  }

  .courses,
  .client-strip {
    display: block;
  }

  .client-carousel {
    padding: 0 34px;
  }

  .client-track {
    gap: 34px;
  }
}

/* Final typography tuning */
.course-card h3 {
  font-size: 16px;
}

.course-card p {
  font-size: 15px;
  line-height: 1.62;
}

.course-card a {
  font-size: 14px;
}

#class-finder .lead,
.why-copy .check-list,
.cert p,
.two-col-list,
footer p,
footer a,
footer li {
  font-size: 15px;
}
