.guide-masthead {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  color: var(--white);
  background: #10100f;
}

.guide-masthead__image,
.guide-masthead__shade {
  position: absolute;
  inset: 0;
}

.guide-masthead__image {
  background: url("../images/player-development.jpg") center 42% / cover no-repeat;
  transform: scale(1.015);
  animation: guide-hero-settle 1.2s ease-out both;
}

.guide-masthead__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.66) 46%, rgba(0, 0, 0, 0.24) 78%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 48%);
}

@keyframes guide-hero-settle {
  from { opacity: 0; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1.015); }
}

.guide-masthead .social-strip,
.guide-masthead .site-nav,
.guide-hero {
  position: relative;
  z-index: 2;
}

.guide-hero {
  max-width: 760px;
  padding-top: 108px;
  animation: guide-copy-in 700ms 160ms ease-out both;
}

@keyframes guide-copy-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.guide-hero h1,
.guide-copy h2,
.guide-section-heading h2,
.guide-cta h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-hero h1 {
  max-width: 690px;
  font-size: 74px;
  line-height: 0.98;
}

.guide-hero h1 span { color: var(--ffa-yellow); }

.guide-hero > p:not(.section-kicker):not(.guide-hero__note) {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.guide-hero__actions,
.guide-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.guide-hero__trial {
  min-height: 56px;
  padding-inline: 24px;
  border: 2px solid var(--ffa-yellow);
  font-size: 12px;
}

.guide-hero__trial .fa-arrow-right { margin-left: 5px; }

.guide-hero__branch {
  min-height: 56px;
  padding-inline: 22px;
  border: 2px solid var(--white);
  font-size: 12px;
}

.guide-hero__note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.guide-hero__note i { color: var(--ffa-yellow); margin-right: 7px; }

.guide-stats {
  color: var(--ink);
  background: var(--ffa-yellow);
}

.guide-stats__inner {
  display: flex;
  align-items: center;
  min-height: 108px;
}

.guide-stats__inner > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(23, 23, 21, 0.22);
}

.guide-stats strong {
  font: 700 42px/1 "Oswald", sans-serif;
}

.guide-stats span,
.guide-stats p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.guide-stats p {
  margin-left: auto;
  color: rgba(23, 23, 21, 0.64);
  letter-spacing: 2px;
}

.guide-first-step {
  color: var(--white);
  background: var(--charcoal);
}

.guide-first-step__inner {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 38px;
  padding-block: 72px;
}

.guide-first-step__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--ink);
  background: var(--ffa-yellow);
  font-size: 28px;
  transform: rotate(-3deg);
}

.guide-copy h2,
.guide-section-heading h2 { font-size: 50px; line-height: 1.04; }

.guide-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.guide-checklist {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.guide-checklist ol {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.guide-checklist li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.guide-checklist li:first-child { border-top: 0; }

.guide-checklist li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--ffa-yellow);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.guide-checklist strong { display: block; font-size: 14px; }

.guide-checklist p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.6;
}

.guide-questions {
  padding-block: 80px 88px;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 66px, rgba(0, 0, 0, 0.016) 66px, rgba(0, 0, 0, 0.016) 67px),
    var(--paper);
}

.guide-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.guide-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.guide-question-card,
.guide-faq__item {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.guide-question-card {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.035);
}

.guide-question-card::after,
.guide-faq__item::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ffa-yellow), #ffb300);
  transition: width 300ms ease;
}

.guide-question-card:hover,
.guide-faq__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.guide-question-card:hover::after,
.guide-faq__item:hover::after { width: 5px; }

.guide-card__number {
  position: absolute;
  z-index: 0;
  top: -8px;
  right: -5px;
  color: rgba(0, 0, 0, 0.03);
  font: 700 64px/1 "Work Sans", sans-serif;
  pointer-events: none;
  user-select: none;
}

.guide-card__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px 20px 10px 22px;
}

.guide-card__pin {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--ffa-yellow);
  background: rgba(255, 199, 34, 0.1);
  border: 1px solid rgba(255, 199, 34, 0.25);
  border-radius: 50%;
  font-size: 12px;
  transition: background 300ms ease;
}

.guide-question-card:hover .guide-card__pin,
.guide-faq__item:hover .guide-card__pin { background: rgba(255, 199, 34, 0.18); }

.guide-question-card h3 {
  margin: 0;
  font: 700 16px/1.2 "Work Sans", sans-serif;
  text-transform: uppercase;
}

.guide-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  padding: 4px 20px 18px 22px;
}

.guide-card__body p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.7;
}

.guide-faq {
  padding-block: 80px 88px;
  color: var(--white);
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 66px, rgba(255, 255, 255, 0.018) 66px, rgba(255, 255, 255, 0.018) 67px),
    var(--ink);
}

.guide-faq .guide-section-heading h2 { color: var(--white); }

.guide-faq .guide-section-heading > p { color: rgba(255, 255, 255, 0.62); }

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

.guide-faq__item summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px 20px 12px 22px;
  cursor: pointer;
  list-style: none;
}

.guide-faq__item { min-height: 0; }

.guide-faq__item {
  background: #282826;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.guide-faq__item summary::-webkit-details-marker { display: none; }

.guide-faq__item summary:focus-visible {
  outline: 3px solid rgba(255, 199, 34, 0.68);
  outline-offset: -3px;
}

.guide-faq__item h3 {
  margin: 0;
  color: var(--white);
  font: 700 15px/1.25 "Work Sans", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-faq__item summary i {
  color: var(--ffa-yellow-dark);
  font-size: 12px;
  transition: transform 180ms ease;
}

.guide-faq__item[open] summary { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.guide-faq__item[open] summary i { transform: rotate(45deg); }

.guide-faq__item > div { position: relative; z-index: 2; padding: 0 52px 22px 68px; }

.guide-faq__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.72;
}

.guide-cta {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: #121211;
}

.guide-cta__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.38)),
    url("../images/main-slider-img3.jpg") center 48% / cover no-repeat;
}

.guide-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.guide-cta h2 { font-size: 55px; line-height: 1.04; }

.guide-cta__inner > p:not(.section-kicker) {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.guide-cta__branch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.guide-cta__branch:hover,
.guide-cta__branch:focus-visible { color: var(--ink); background: var(--white); }

.guide-locations { padding-block: 80px 96px; }

.guide-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-location-card {
  position: relative;
  display: flex;
  min-height: 166px;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--ffa-yellow);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.guide-location-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1); }

.guide-location-card__number {
  position: absolute;
  top: -9px;
  right: -4px;
  color: rgba(0, 0, 0, 0.035);
  font: 700 62px/1 "Work Sans", sans-serif;
  pointer-events: none;
}

.guide-location-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px 20px 12px;
}

.guide-location-card__pin {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--ffa-yellow);
  background: rgba(255, 199, 34, 0.1);
  border: 1px solid rgba(255, 199, 34, 0.25);
  border-radius: 50%;
  font-size: 12px;
}

.guide-location-card h3 {
  margin: 0;
  font: 700 16px/1.2 "Work Sans", sans-serif;
  text-transform: uppercase;
}

.guide-location-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.guide-location-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 20px 18px;
}

.guide-location-card__body p {
  margin: 0;
  color: var(--ffa-yellow-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.guide-location-card__body a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.guide-location-card__body a:hover,
.guide-location-card__body a:focus-visible { color: var(--ffa-yellow-dark); }

.guide-location-card__body a i { color: var(--ffa-yellow-dark); }

.guide-location-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.guide-location-card__actions a:first-child {
  color: var(--ffa-yellow-dark);
}

.guide-location-card:focus-within {
  outline: 3px solid rgba(255, 199, 34, 0.68);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .guide-masthead { min-height: 650px; }
  .guide-hero { padding-top: 92px; }
  .guide-hero h1 { font-size: 58px; }
  .guide-stats__inner > div { min-width: 0; flex: 1; }
  .guide-stats p { display: none; }
  .guide-first-step__inner {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 28px;
  }
  .guide-first-step__icon { width: 64px; height: 64px; font-size: 24px; }
  .guide-checklist { grid-column: 2; }
  .guide-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .guide-faq__list { grid-template-columns: 1fr; }
  .guide-location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .guide-masthead { min-height: 760px; }
  .guide-masthead__image { background-position: 62% center; }
  .guide-hero { padding-top: 82px; }
  .guide-hero h1 { font-size: 44px; line-height: 1.02; }
  .guide-hero > p:not(.section-kicker):not(.guide-hero__note) { font-size: 14px; line-height: 1.65; }
  .guide-hero__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .guide-hero__trial,
  .guide-hero__branch { width: 100%; }
  .guide-hero__note { font-size: 9px; line-height: 1.6; }
  .guide-stats__inner { min-height: 88px; }
  .guide-stats__inner > div {
    display: block;
    padding-right: 10px;
    margin-right: 10px;
    text-align: center;
  }
  .guide-stats__inner > div:last-of-type { padding-right: 0; margin-right: 0; border-right: 0; }
  .guide-stats strong,
  .guide-stats span { display: block; }
  .guide-stats strong { margin-bottom: 5px; font-size: 25px; }
  .guide-stats span { font-size: 8px; }
  .guide-first-step__inner { display: block; padding-block: 54px; }
  .guide-first-step__icon { margin-bottom: 24px; }
  .guide-copy h2,
  .guide-section-heading h2 { font-size: 40px; }
  .guide-checklist { padding: 28px 0 0; margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .guide-questions { padding-block: 60px; }
  .guide-question-grid,
  .guide-location-grid { grid-template-columns: 1fr; }
  .guide-question-card { min-height: 175px; }
  .guide-card__header { padding: 18px 18px 9px 20px; }
  .guide-card__body { padding: 4px 18px 18px 20px; }
  .guide-faq { padding-block: 60px; }
  .guide-faq__item summary { min-height: 76px; padding: 17px 18px 12px 20px; }
  .guide-faq__item h3 { font-size: 14px; }
  .guide-faq__item > div { padding: 0 18px 20px 64px; }
  .guide-location-card { min-height: 150px; }
  .guide-cta,
  .guide-cta__inner { min-height: 410px; }
  .guide-cta h2 { font-size: 42px; }
  .guide-cta__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .guide-cta__actions .primary-button,
  .guide-cta__branch { width: 100%; }
}
