/* =============================================
   SUNDEK AUTHORIZED CONTRACTOR PAGE
   contractor-page.css
============================================= */

/* ---- BEFORE / AFTER SLIDER ---- */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 1260px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-after  { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 100%;
  background: transparent;
  z-index: 50;
  pointer-events: auto;
  cursor: ew-resize;
  box-shadow: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
}
.ba-handle::after { display: none; }
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
}
.ba-handle-btn svg {
  width: 18px;
  height: 18px;
  color: #2d4a2d;
}
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 45;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 0.75rem;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.ba-label-before { left: 14px; }
.ba-label-after  { right: 14px; }
.cc-banner { display: none; }

/* ---- MAP DOTS LAYER ---- */
.map-dots-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.map-dot.is-covered {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

/* ---- MAP DOTS ---- */
.map-dot {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
}


.map-dot__btn {
  position: relative;
  width: 16px;
  height: 16px;
  background: #f47920;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s;
  pointer-events: auto;
  cursor: pointer;
}
.map-dot:hover .map-dot__btn {
  transform: scale(1.3);
}
.map-dot__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #f47920;
  opacity: 0;
  animation: map-pulse 2s ease-out infinite;
}
.map-dot__pulse:nth-child(2) {
  animation-delay: 0.6s;
}
@keyframes map-pulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2);   opacity: 0; }
}

/* ---- MAP POPUP ---- */
.map-popup {
  position: absolute;
  bottom: 35px;
  left: 0;
  z-index: 30;
  background: #1a2535;
  color: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  width: 220px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.map-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 100;
}
.map-popup.flip-h {
  left: auto;
  right: 0;
}
.map-popup__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #f47920;
  margin-bottom: 8px;
  padding-right: 20px;
  line-height: 1.3;
}
.map-popup__counties {
  list-style: none;
  margin: 0;
  padding: 0;
}
.map-popup__counties li {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.4;
}
.map-popup__counties li:last-child { border-bottom: none; }
.map-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 5px;
  transition: color 0.15s;
}
.map-popup::after { display: none; }
.map-popup__close:hover { color: #fff; }

.map-popup.flip-h::after {
  left: auto;
  right: 20px;
}

/* Popup opens downward for top-edge pins */
.map-popup.flip-v {
  bottom: auto !important;
  top: 28px !important;
}
.map-popup.flip-v::after {
  bottom: auto;
  top: -7px;
  border-top: none;
  border-bottom: 7px solid #1a2535;
}

/* Active popup always on top of all dots */
.map-popup.is-visible {
  z-index: 100;
}

/* ---- BENEFITS SECTION WRAPPER ---- */
.sdk-benefits {
  background: #f5f5f5;
  padding: 70px 20px;
  width: 100%;
}
.sdk-benefits__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- SHARED SECTION HEADERS ---- */
.sdk-benefits__eyebrow,
.sdk-videos__eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f47920;
  margin-bottom: 10px;
}
.sdk-benefits__heading {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a2535;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.sdk-videos__heading {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.sdk-benefits__rule,
.sdk-videos__rule {
  display: block;
  width: 50px;
  height: 3px;
  background: #f47920;
  margin: 0 auto 50px;
}

/* ---- DESKTOP TABS ---- */
.sdk-tabs {
  display: flex;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 0 #f47920;
}
.sdk-tab-btn {
  flex: 1;
  background: #fff;
  border: none;
  border-right: 1px solid #e5e5e5;
  padding: 22px 16px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align: center;
}
.sdk-tab-btn:last-child { border-right: none; }
.sdk-tab-btn:hover { background: #fdf0e6; color: #f47920; }
.sdk-tab-btn.is-active { background: #1a2535; color: #fff; }
.sdk-tab-btn.is-active .sdk-tab-icon svg { fill: #f47920; }
.sdk-tab-btn:hover .sdk-tab-icon svg { fill: #f47920; }
.sdk-tab-icon svg {
  width: 32px;
  height: 32px;
  fill: #aaa;
  transition: fill 0.25s;
}

/* ---- TAB PANELS ---- */
.sdk-panels {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sdk-panel { display: none; padding: 50px 55px; }
.sdk-panel.is-active { display: flex; gap: 50px; align-items: flex-start; }

/* ---- PANEL ICON COLUMN ---- */
.sdk-panel__icon-col {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.sdk-panel__big-icon svg { width: 72px; height: 72px; fill: #1a2535; }
.sdk-panel__icon-bar {
  width: 3px;
  background: #f47920;
  flex: 1;
  min-height: 40px;
  margin-top: 16px;
  border-radius: 2px;
}

/* ---- PANEL CONTENT ---- */
.sdk-panel__content { flex: 1; }
.sdk-panel__title {
  font-size: 28px;
  font-weight: 900;
  color: #1a2535;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.sdk-panel__title span { color: #f47920; }
.sdk-panel__intro {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.sdk-panel__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
}
.sdk-panel__list li {
  flex-basis: 45%;
  flex-grow: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sdk-panel__list-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #f47920;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.sdk-panel__list-check svg { width: 10px; height: 10px; fill: #fff; }
.sdk-panel__list-text { font-size: 14px; color: #333; line-height: 1.6; }
.sdk-panel__list-text strong {
  display: block;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 2px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ---- MOBILE ACCORDION (hidden on desktop) ---- */
.sdk-accordion { display: none; }

/* ---- VIDEO SECTION ---- */
.sdk-videos {
  background: #1a2535;
  padding: 70px 20px;
  width: 100%;
}
.sdk-videos__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- VIDEO GRID ---- */
.sdk-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ---- VIDEO CARD ---- */
.sdk-video-card {
  flex-basis: 21%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.sdk-video-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  background: #0d1520;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.sdk-video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,21,32,0.2) 0%, rgba(13,21,32,0.7) 100%);
  z-index: 1;
}
.sdk-video-thumb__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 14px;
}
.sdk-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(244,121,32,0.15);
  border: 2px solid #f47920;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.sdk-video-thumb:hover .sdk-play-btn {
  background: #f47920;
  transform: scale(1.08);
}
.sdk-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #f47920;
  margin-left: 3px;
  transition: fill 0.2s;
}
.sdk-video-thumb:hover .sdk-play-btn svg { fill: #fff; }
.sdk-video-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.sdk-video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 3;
  letter-spacing: 0.5px;
}
.sdk-video-caption { padding: 14px 4px 0; }
.sdk-video-caption__title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.sdk-video-caption__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* --- CONTRACTOR KEY TOGGLE --- */
.contractor-key-wrap {
  margin: 2rem auto;
  max-width: 1260px;
  padding: 0 1rem;
}

.contractor-key-toggle {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: #1a1a1a;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
  margin-bottom: 2em;
}

.contractor-key-toggle:hover {
  background: #333;
}

.contractor-key-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.contractor-key-panel.is-open {
  max-height: 4000px;
}

.contractor-key-grid {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  border-top: none;
}

.ck-col {
  flex: 1 1 220px;
  padding: 0 0 1.5rem;
  border-right: 1px solid #ddd;
}
.ck-col:last-child {
  border-right: none;
}

.ck-header {
  padding: 0.6rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}
.ck-header--west      { background: #00b5bd; }
.ck-header--south     { background: #6b2d8b; }
.ck-header--north     { background: #f7941d; }
.ck-header--southeast { background: #c9a800; }
.ck-header--intl      { background: #5aaa35; }

.ck-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem;
}
.ck-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.78rem;
  line-height: 1.4;
}
.ck-list li:last-child {
  border-bottom: none;
}
.ck-list li strong {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
}
.ck-list li span {
  display: inline;
  color: #555;
}
.ck-list li span + span::before {
  content: ' · ';
  color: #bbb;
}

/* --- TESTIMONIAL SECTION --- */
.sdk-testimonials {
  background: #1a2535;
  padding: 70px 20px;
  width: 100%;
}
.sdk-testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.sdk-testimonial-card {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
}
.sdk-testimonial-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  background: #0d1520;
}
.sdk-testimonial-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sdk-testimonial-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #0d1520;
}
.sdk-testimonial-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sdk-testimonial-thumb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.sdk-testimonial-thumb:hover .sdk-testimonial-thumb__overlay {
  background: rgba(0,0,0,0.15);
}
.sdk-testimonial-thumb:hover .sdk-play-btn {
  background: #f47920;
  transform: scale(1.08);
}
.sdk-testimonial-thumb:hover .sdk-play-btn svg {
  fill: #fff;
}
.sdk-testimonial-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sdk-testimonial-thumb .sdk-play-btn {
  background: rgba(26,37,53,0.6);
}
.sdk-testimonial-thumb:hover .sdk-play-btn {
  background: #f47920;
}

/* --- RECRUITMENT SECTION --- */
.sdk-recruit {
  background: #f5f5f5;
  padding: 70px 20px;
  width: 100%;
}
.sdk-recruit__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sdk-recruit__heading {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a2535;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.sdk-recruit__rule {
  display: block;
  width: 50px;
  height: 3px;
  background: #f47920;
  margin: 0 auto 50px;
}
.sdk-recruit__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}
.sdk-recruit__left {
  flex: 1 1 300px;
}
.sdk-recruit__right {
  flex: 1 1 380px;
}
.sdk-recruit__photo {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.sdk-recruit__copy {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.sdk-recruit__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #f47920;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}
.sdk-recruit__phone:hover {
  color: #1a2535;
}
.sdk-recruit__phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sdk-recruit__form {
  background: #fff;
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sdk-recruit__field {
  margin-bottom: 20px;
  flex: 1;
}
.sdk-recruit__field--sm {
  flex: 0 0 80px;
}
.sdk-recruit__row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.sdk-recruit__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a2535;
  margin-bottom: 6px;
}
.sdk-recruit__input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  color: #333;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-family: inherit;
}
.sdk-recruit__input:focus {
  outline: none;
  border-color: #f47920;
  background: #fff;
}
.sdk-recruit__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.sdk-recruit__submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: #f47920;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  margin-top: 8px;
}
.sdk-recruit__submit:hover {
  background: #1a2535;
}

.sdk-recruit__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.sdk-recruit__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.sdk-recruit__thanks {
  text-align: center;
  padding: 40px 20px;
}
.sdk-recruit__thanks p {
  font-size: 18px;
  font-weight: 600;
  color: #1a2535;
  line-height: 1.6;
  margin-bottom: 16px;
}
.sdk-recruit__thanks-sig {
  font-size: 22px;
  font-weight: 800;
  color: #f47920;
}

.sdk-recruit__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
}

/* --- RECRUIT MODAL --- */
.recruit-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.recruit-modal.is-open {
  display: flex;
}
.recruit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.recruit-modal__box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  z-index: 1;
}
.recruit-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 2;
}
.recruit-modal__close:hover {
  background: rgba(255,255,255,0.35);
}
.recruit-modal__photo-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.recruit-modal__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.recruit-modal__photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
}
.recruit-modal__content {
  padding: 24px 36px 36px;
  text-align: center;
}
.recruit-modal__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f47920;
  margin-bottom: 10px;
}
.recruit-modal__message {
  font-size: 20px;
  font-weight: 600;
  color: #1a2535;
  line-height: 1.5;
  margin-bottom: 6px;
}
.recruit-modal__sig {
  font-size: 28px;
  font-weight: 800;
  color: #f47920;
  margin-bottom: 20px;
}
.recruit-modal__rule {
  width: 40px;
  height: 3px;
  background: #f47920;
  margin: 0 auto 16px;
}
.recruit-modal__tagline {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* =============================================
   MOBILE - 600px and below
============================================= */
@media (max-width: 600px) {

  .ba-label-after {
    top: auto;
    bottom: 14px;
  }

  .map-dot { pointer-events: none; }

  .sdk-benefits { padding: 50px 16px; }
  .sdk-benefits__heading { font-size: 26px; }

  .sdk-tabs,
  .sdk-panels { display: none; }
  .sdk-accordion {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .sdk-accordion-item { border-bottom: 1px solid #e5e5e5; }
  .sdk-accordion-item:last-child { border-bottom: none; }
  .sdk-accordion-trigger {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
  }
  .sdk-accordion-trigger.is-open { background: #1a2535; color: #fff; }
  .sdk-accordion-trigger svg.sdk-acc-icon {
    width: 28px;
    height: 28px;
    fill: #aaa;
    flex-shrink: 0;
    transition: fill 0.2s;
  }
  .sdk-accordion-trigger.is-open svg.sdk-acc-icon { fill: #f47920; }
  .sdk-accordion-label {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    transition: color 0.2s;
  }
  .sdk-accordion-trigger.is-open .sdk-accordion-label { color: #fff; }
  .sdk-accordion-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: #aaa;
    transition: transform 0.3s, fill 0.2s;
  }
  .sdk-accordion-trigger.is-open .sdk-accordion-arrow {
    transform: rotate(180deg);
    fill: #f47920;
  }
  .sdk-accordion-body { display: none; background: #fff; padding: 28px 20px 32px; }
  .sdk-accordion-body.is-open { display: block; }
  .sdk-acc-title {
    font-size: 22px;
    font-weight: 900;
    color: #1a2535;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .sdk-acc-title span { color: #f47920; }
  .sdk-acc-intro {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .sdk-acc-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .sdk-acc-list li { display: flex; gap: 12px; align-items: flex-start; }
  .sdk-acc-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #f47920;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .sdk-acc-check svg { width: 10px; height: 10px; fill: #fff; }
  .sdk-acc-text { font-size: 14px; color: #333; line-height: 1.6; }
  .sdk-acc-text strong {
    display: block;
    font-weight: 700;
    color: #1a2535;
    margin-bottom: 2px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .sdk-videos { padding: 50px 16px; }
  .sdk-videos__heading { font-size: 26px; }
  .sdk-video-grid { gap: 12px; }
  .sdk-video-card {
    flex-basis: 45%;
    flex-grow: 1;
  }

  .ck-col {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .ck-col:last-child {
    border-bottom: none;
  }

    .sdk-testimonials { padding: 50px 16px; }
  .sdk-testimonial-card { flex-basis: 100%; }

  .sdk-recruit { padding: 50px 16px; }
  .sdk-recruit__heading { font-size: 26px; }
  .sdk-recruit__form { padding: 24px 20px; }
  .sdk-recruit__row { flex-wrap: wrap; }
  .sdk-recruit__field--sm { flex: 1 1 60px; }
  .sdk-recruit__video { padding-bottom: 56.25%; }

}