/* ==========================================================
   BECKER HOMEPAGE – CSS
   Type scale (Euclid Circular A):
     H2 Bold 34/42 · H3 Bold 28/36 · H4 Semibold 20/28
     Body1 Reg 18/26 · Body2 Reg 16/24 · Button Semibold 16/24
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }

:root {
  --bk-navy:        #122048;
  --bk-gray:        #4a4a4a;
  --bk-gold:        #fdc20d;
  --bk-raspberry:   #b01f5d;
  --bk-trusted-teal:#4896a2;
  --bk-cyan:        #9ac6c7;
  --bk-cpe-teal:    #d7e8e9;
  --bk-pink:        #b01b5c;
  --bk-alt-gray:    #f4f4f4;
  --bk-white:       #ffffff;

  --bk-shadow-card: 0 1px 2px rgba(21,34,50,0.24);
  --bk-shadow-img:  0 1px 4px rgba(21,34,50,0.24);

  --bk-font: 'Euclid Circular A', 'Helvetica Neue', Arial, sans-serif;
  --bk-max:   1440px;
  --bk-pad-h: 72px;
  --bk-sec-v: 72px;
}

.bk-wrap {
  max-width: var(--bk-max);
  margin: 0 auto;
  padding: 0 var(--bk-pad-h);
  width: 100%;
}

.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bk-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background: var(--bk-gold);
  color: var(--bk-navy);
  border: 2px solid var(--bk-gold);
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.bk-btn:hover { opacity: 0.88; }

.bk-btn--wht {
  background: var(--bk-white);
  color: var(--bk-navy);
  border: 2px solid var(--bk-navy);
}


/* 1. THE BECKER DIFFERENCE */
.bk-diff { background: var(--bk-white); padding: var(--bk-sec-v) 0; }

.bk-diff__h2 {
  font-family: var(--bk-font);
  font-size: 34px; font-weight: 700; line-height: 42px;
  color: var(--bk-navy);
  margin-bottom: 48px;
}

.bk-diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bk-diff__card {
  background: var(--bk-white);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--bk-shadow-card);
}

.bk-diff__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  border-radius: 8px 8px 0 0;
}
.bk-diff__card--a::before { background: var(--bk-raspberry); }
.bk-diff__card--b::before { background: var(--bk-trusted-teal); }
.bk-diff__card--c::before { background: var(--bk-gold); }
.bk-diff__card--d::before { background: var(--bk-navy); }

.bk-diff__icon {
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bk-diff__icon img,
.bk-diff__icon svg { width: 90px; height: 90px; object-fit: contain; }

.bk-diff__text { display: flex; flex-direction: column; gap: 8px; }

.bk-diff__title {
  font-family: var(--bk-font);
  font-size: 20px; font-weight: 600; line-height: 28px;
  color: var(--bk-gray);
}
.bk-diff__body {
  font-family: var(--bk-font);
  font-size: 16px; font-weight: 400; line-height: 24px;
  color: var(--bk-gray);
}


/* 2. CPE COMPLIANCE */
.bk-cpe { background: var(--bk-cpe-teal); padding: var(--bk-sec-v) 0; }

.bk-cpe__layout {
  display: flex;
  gap: 72px;
  align-items: center;
}

.bk-cpe__left { width: 391px; flex-shrink: 0; }

.bk-cpe__h2 {
  font-family: var(--bk-font);
  font-size: 34px; font-weight: 700; line-height: 42px;
  color: var(--bk-navy);
  margin-bottom: 16px;
}
.bk-cpe__body {
  font-family: var(--bk-font);
  font-size: 18px; font-weight: 400; line-height: 26px;
  color: var(--bk-gray);
  margin-bottom: 16px;
}

.bk-cpe__cards {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 8px 0;
}

.bk-cpe__track {
  display: flex;
  width: max-content;
  animation: bk-cpe-marquee 40s linear infinite;
}
.bk-cpe__track:hover { animation-play-state: paused; }

@keyframes bk-cpe-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-1179px); }
}
@media (prefers-reduced-motion: reduce) {
  .bk-cpe__track { animation: none; }
}

.bk-cpe__card {
  background: var(--bk-white);
  border-radius: 16px;
  padding: 32px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  margin-right: 24px;
  box-shadow: var(--bk-shadow-card);
}

.bk-cpe__card-img {
  width: 305px; height: 255px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--bk-shadow-img);
  background: #dde3e8;
}
.bk-cpe__card-img img { width: 100%; height: 100%; object-fit: cover; }

.bk-cpe__card-label {
  font-family: var(--bk-font);
  font-size: 20px; font-weight: 600; line-height: 28px;
  color: var(--bk-navy);
  text-align: center;
  width: 100%;
}


/* 3. AI SECTION */
.bk-ai {
  background: linear-gradient(180deg, #0a4b77 0%, #ffffff 100%);
  padding: var(--bk-sec-v) 0;
}
.bk-ai .bk-wrap {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.bk-newt {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.bk-newt__logo { flex-shrink: 0; display: flex; align-items: center; }
.bk-newt__logo img { height: 80px; width: auto; object-fit: contain; }

.bk-newt__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bk-newt__text { display: flex; flex-direction: column; gap: 16px; }
.bk-newt__h2 {
  font-family: var(--bk-font);
  font-size: 34px; font-weight: 700; line-height: 42px;
  color: var(--bk-white);
}
.bk-newt__body {
  font-family: var(--bk-font);
  font-size: 18px; font-weight: 400; line-height: 26px;
  color: var(--bk-white);
}
.bk-newt .bk-btn { align-self: flex-start; }

.bk-ailearn {
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 56px;
}
.bk-ailearn__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bk-ailearn__text { display: flex; flex-direction: column; gap: 16px; }
.bk-ailearn__h2 {
  font-family: var(--bk-font);
  font-size: 34px; font-weight: 700; line-height: 42px;
  color: var(--bk-navy);
}
.bk-ailearn__body {
  font-family: var(--bk-font);
  font-size: 18px; font-weight: 400; line-height: 26px;
  color: var(--bk-navy);
}
.bk-ailearn .bk-btn { align-self: flex-start; }

.bk-ailearn__img,
.bk-ailearn__img-ph {
  flex: 1;
  min-width: 0;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--bk-shadow-img);
}
.bk-ailearn__img img { width: 100%; height: 100%; object-fit: cover; }
.bk-ailearn__img-ph {
  background: #dfe5ea;
  display: flex; align-items: center; justify-content: center;
}
.bk-ailearn__img-ph svg { opacity: 0.35; }


/* 4. TRUSTPILOT */
.bk-trustpilot { background: var(--bk-white); padding: 88px 0; }
.bk-trustpilot .trustpilot-widget { width: 100%; }


/* 5. B2B 2-UP */
.bk-b2b { background: var(--bk-white); padding: var(--bk-sec-v) 0; }

.bk-b2b__inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.bk-b2b__col {
  width: 604px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bk-b2b__text { display: flex; flex-direction: column; gap: 16px; }
.bk-b2b__h2 {
  font-family: var(--bk-font);
  font-size: 34px; font-weight: 700; line-height: 42px;
  color: var(--bk-navy);
}
.bk-b2b__body {
  font-family: var(--bk-font);
  font-size: 18px; font-weight: 400; line-height: 26px;
  color: var(--bk-gray);
}
.bk-b2b__col .bk-btn { align-self: flex-start; }

.bk-b2b__img,
.bk-b2b__img-ph {
  flex: 1;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bk-shadow-img);
}
.bk-b2b__img img { width: 100%; height: auto; display: block; }
.bk-b2b__img-ph {
  aspect-ratio: 3 / 2;
  background: #dfe5ea;
  display: flex; align-items: center; justify-content: center;
}
.bk-b2b__img-ph svg { opacity: 0.35; }


/* 6. PODCAST */
.bk-podcast { background: var(--bk-white); padding: 32px 0; }

.bk-podcast__card {
  background: rgba(255,255,255,0.30);
  border-radius: 8px;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  box-shadow: 0 0 4px rgba(21,34,50,0.24);
}

.bk-podcast__icon {
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bk-podcast__icon img,
.bk-podcast__icon svg { width: 160px; height: 160px; object-fit: contain; }

.bk-podcast__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bk-podcast__text { display: flex; flex-direction: column; gap: 8px; }
.bk-podcast__h2 {
  font-family: var(--bk-font);
  font-size: 28px; font-weight: 700; line-height: 36px;
  color: var(--bk-navy);
}
.bk-podcast__body {
  font-family: var(--bk-font);
  font-size: 18px; font-weight: 400; line-height: 26px;
  color: var(--bk-gray);
}
.bk-podcast .bk-btn { align-self: flex-start; }


/* 7. CONTACT US */
.bk-contact {
  background: var(--bk-pink);
  padding: var(--bk-sec-v) 0;
  margin-top: var(--bk-sec-v);
  position: relative;
  overflow: hidden;
}

.bk-contact__deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bk-contact__deco-plus {
  position: absolute;
  font-size: 24px; font-weight: 700; line-height: 1;
}
.bk-contact__deco-plus--gold { color: var(--bk-gold); opacity: 0.8; }
.bk-contact__deco-plus--navy { color: var(--bk-navy); opacity: 0.6; }

.bk-contact__inner {
  display: flex;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bk-contact__col { flex: 1; min-width: 0; }

.bk-contact__h2 {
  font-family: var(--bk-font);
  font-size: 34px; font-weight: 700; line-height: 42px;
  color: var(--bk-white);
  margin-bottom: 16px;
}
.bk-contact__body {
  font-family: var(--bk-font);
  font-size: 18px; font-weight: 400; line-height: 26px;
  color: var(--bk-white);
}

.bk-contact__btn-wrap { flex: 1; min-width: 0; display: flex; align-items: center; }
.bk-contact__btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  font-family: var(--bk-font);
  font-size: 16px; font-weight: 600; line-height: 24px;
  background: var(--bk-gold);
  color: var(--bk-navy);
  border: 2px solid var(--bk-gold);
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.bk-contact__btn:hover { opacity: 0.88; }


/* RESPONSIVE — Tablet ≤ 1100px */
@media (max-width: 1100px) {
  :root { --bk-pad-h: 40px; --bk-sec-v: 60px; }

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

  .bk-cpe__layout { flex-direction: column; align-items: stretch; gap: 40px; }
  .bk-cpe__left { width: 100%; }

  .bk-newt { padding: 32px 40px; gap: 40px; }

  .bk-ailearn { flex-direction: column; align-items: stretch; gap: 40px; }
  .bk-ailearn__img, .bk-ailearn__img-ph { width: 100%; }

  .bk-trustpilot { padding: 60px 0; }

  .bk-b2b__inner { flex-direction: column; align-items: stretch; gap: 48px; }
  .bk-b2b__col { width: 100%; }

  .bk-podcast__card { padding: 32px 40px; gap: 40px; }

  .bk-contact__inner { flex-direction: column; align-items: stretch; gap: 40px; }
}


/* RESPONSIVE — Mobile ≤ 640px */
@media (max-width: 640px) {
  :root { --bk-pad-h: 16px; --bk-sec-v: 56px; }

  .bk-diff__grid { grid-template-columns: 1fr; }

  .bk-newt { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 24px; }

  .bk-ailearn { padding: 0; gap: 32px; }

  .bk-trustpilot { padding: 56px 0; }

  .bk-b2b__inner { gap: 32px; }

  .bk-podcast__card { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 24px; }
  .bk-podcast__icon { width: 120px; height: 120px; }
  .bk-podcast__icon img, .bk-podcast__icon svg { width: 120px; height: 120px; }

  .bk-contact__inner { gap: 32px; }

  .bk-diff__h2, .bk-cpe__h2, .bk-b2b__h2, .bk-contact__h2,
  .bk-newt__h2, .bk-ailearn__h2 { font-size: 28px; line-height: 34px; }
  .bk-podcast__h2 { font-size: 24px; line-height: 30px; }
}