/* ============================================================
   CONNEXUS RECRUITING — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Custom Properties ── */
:root {
  --black:     #111111;
  --green:     #1A8A35;
  --green-dark:#146829;
  --white:     #ffffff;
  --gray:      #F5F5F5;
  --text-gray: #666666;
  --border:    #E0E0E0;
  --shadow:    0 4px 24px rgba(0,0,0,0.09);
  --max-w:     1200px;
  --radius:    8px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad  { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

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

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--black);
}

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

.section-sub {
  font-size: 1.08rem;
  color: var(--text-gray);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.section-sub--white { color: rgba(255,255,255,0.78); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,138,53,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,138,53,0.30);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo svg { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__links a.active { color: var(--white); }

.nav__links .btn-nav-cta {
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  padding: 9px 20px;
  margin-left: 8px;
}
.nav__links .btn-nav-cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--black);
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--green); }
.nav__mobile .btn-nav-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--green);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 12px 20px;
  border-bottom: none !important;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(26,138,53,0.11) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; max-width: 860px; }

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title span { color: var(--green); }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__sports {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}

/* Inner page hero (shorter) */
.hero--inner {
  min-height: 42vh;
  padding: 60px 32px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.card--green-border { border-color: var(--green); }

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(26,138,53,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.card__title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.card__body {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ── Grid Layouts ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

/* ── Steps ── */
.step-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.step-body {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ── Package Cards ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.pkg-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.pkg-card--featured {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(26,138,53,0.18);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pkg-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}

.pkg-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 4px;
}

.pkg-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
}

.pkg-tagline {
  font-size: 0.84rem;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pkg-features {
  list-style: none;
  margin-bottom: 32px;
}

.pkg-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.5;
}

.pkg-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── Check List ── */
.check-list {
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 0.95rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── Why Section ── */
.why-col { padding: 12px; }
.why-col .check-list li { color: rgba(255,255,255,0.88); }
.why-col .check-list li::before { color: var(--green); }
.why-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

/* ── How it Works Detail Steps ── */
.detail-step {
  padding: 80px 0;
}

.detail-step__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 56px;
  align-items: start;
}

.detail-step__num {
  font-size: 7rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  opacity: 0.85;
}

.detail-step__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.detail-step__body p {
  font-size: 0.97rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.detail-step__bullets {
  margin-top: 20px;
}
.detail-step__bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.55;
}
.detail-step__bullets li::before {
  content: '→';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Sports Banner ── */
.sports-banner {
  background: var(--green);
  padding: 64px 32px;
  text-align: center;
}
.sports-banner__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.sports-banner__main {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.sports-banner__divs {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.72);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.75;
  max-width: 780px;
}

/* ── Apply Form ── */
.apply-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,138,53,0.14);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,138,53,0.3);
}

/* Apply right column */
.apply-sidebar {}

.apply-next-steps {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 28px;
}
.apply-next-steps h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}
.next-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.next-step:last-child { margin-bottom: 0; }
.next-step__num {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.next-step__text {
  font-size: 0.88rem;
  color: var(--black);
  line-height: 1.5;
  padding-top: 5px;
}

.apply-contact-box {
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 28px;
}
.apply-contact-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}
.apply-contact-box p {
  font-size: 0.87rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.apply-contact-box .contact-email {
  font-weight: 700;
  color: var(--green);
  font-size: 0.92rem;
}

/* ── Division Grid ── */
.division-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.division-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
}

.division-card__name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 8px;
}

.division-card__body {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── Sport Sections ── */
.sport-section { padding: 80px 0; }

.sport-intro {
  max-width: 820px;
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 40px;
}

.sport-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 36px; }

.sport-col-box {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.sport-col-box h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.sport-col-box p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.positions-row {
  margin-top: 8px;
}
.positions-row h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 12px;
}
.position-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.position-tag {
  background: rgba(26,138,53,0.1);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(26,138,53,0.25);
}

/* ── CTA Section ── */
.cta-section {
  padding: 96px 32px;
  text-align: center;
}
.cta-section--black { background: var(--black); }
.cta-section--green { background: var(--green); }
.cta-section--white { background: var(--white); }

.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-section .cta-note {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.72;
}
.cta-section .cta-note a {
  font-weight: 700;
  text-decoration: underline;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo { margin-bottom: 16px; }
.footer__logo svg { height: 40px; width: auto; }

.footer__tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 240px;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .division-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 75vh; padding: 60px 20px; }
  .hero--inner { min-height: 36vh; }

  .grid-3 { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .apply-sidebar { order: -1; }
  .sport-cols { grid-template-columns: 1fr; }
  .division-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .detail-step__inner { grid-template-columns: 80px 1fr; gap: 28px; }
  .detail-step__num { font-size: 4.5rem; }
}

@media (max-width: 480px) {
  .nav__inner { padding: 0 20px; }
  .hero__btns { flex-direction: column; align-items: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .division-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .detail-step__inner { grid-template-columns: 1fr; gap: 12px; }
  .detail-step__num { font-size: 3rem; }
  .cta-section { padding: 64px 20px; }
}
