/* ============================================================
   採用LP スタイルシート
   新潟市 建設会社 正社員募集
   カラー：ネイビー #1a2f4e／ブルー #2563eb／ホワイト #fff
           アクセント：オレンジ #f97316
   モバイルファースト設計
   ============================================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #1a2f4e;
  --navy-dark:  #111e32;
  --blue:       #2563eb;
  --blue-light: #3b82f6;
  --orange:     #f97316;
  --orange-dark:#ea6c09;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --text-base:  #1e293b;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.06);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.06);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.06);
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--text-base);
  background: var(--white);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 20px;
}

.text-orange { color: var(--orange); }

.sp-only { display: inline; }

@media (min-width: 768px) {
  .sp-only { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,.4);
}
.btn--orange:hover,
.btn--orange:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,115,22,.45);
}
.btn--orange:active {
  transform: translateY(0);
}

.btn--navy {
  background: #1a2f4e;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,47,78,.35);
}
.btn--navy:hover,
.btn--navy:focus-visible {
  background: #142540;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,47,78,.45);
}
.btn--navy:active {
  transform: translateY(0);
}

.btn--sm  { font-size: .85rem; padding: 8px 20px; }
.btn--lg  { font-size: 1.1rem; padding: 16px 36px; }
.btn--xl  { font-size: 1.15rem; padding: 18px 40px; width: 100%; max-width: 420px; }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  line-height: 1.4;
}
.badge--orange       { background: var(--orange); color: var(--white); }
.badge--white        { background: rgba(255,255,255,.2); color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.badge--white-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }

/* ===== SECTION COMMON ===== */
.section {
  padding-block: 64px 72px;
}

.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 40px;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__text {
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== FIRST VIEW ===== */
.fv {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.fv__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,30,50,.35) 0%,
    rgba(17,30,50,.65) 50%,
    rgba(17,30,50,.85) 100%
  );
}

.fv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-top: 120px;
}

.fv__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.fv__headline {
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.fv__headline em {
  color: var(--orange);
  font-style: normal;
}

.fv__sub {
  font-size: clamp(.95rem, 3vw, 1.1rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  line-height: 1.8;
}

.fv__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.fv__note {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* ===== FEATURES ===== */
.features {
  background: var(--gray-50);
}

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

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== JOBS ===== */
.jobs {
  background: var(--white);
}

.jobs__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .jobs__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.job-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.job-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.job-card__icon-wrap {
  margin-bottom: 16px;
}

.job-card__illust {
  width: 100%;
  max-width: 200px;
  height: 80px;
  border-radius: var(--radius);
}

.job-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-card__number {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: 2px 8px;
  border-radius: 50px;
  font-style: normal;
}

.job-card__text {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.job-card__tags li {
  font-size: .75rem;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ===== SCHEDULE ===== */
.schedule {
  background: var(--gray-50);
}

.schedule__timeline {
  position: relative;
  padding-left: 80px;
}
.schedule__timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--gray-200);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__time {
  position: absolute;
  left: -72px;
  top: 4px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.timeline-item__dot {
  position: absolute;
  left: -48px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateX(-50%);
}
.timeline-item__dot--end {
  border-color: var(--orange);
  background: var(--orange);
}

.timeline-item__content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.timeline-item__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.timeline-item__icon--orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: var(--orange);
}

.timeline-item__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-item__text {
  font-size: .83rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.schedule__note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: .8rem;
  color: var(--gray-400);
  padding-left: 80px;
}

/* ===== SALARY ===== */
.salary {
  background: var(--navy);
  color: var(--white);
}

.salary .section-label {
  color: rgba(255,255,255,.6);
}
.salary .section-label::before { background: var(--orange); }

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

.salary__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .salary__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.salary-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  transition: transform var(--transition);
}

.salary-card--2 {
  background: rgba(249,115,22,.15);
  border-color: var(--orange);
  transform: scale(1.03);
}
@media (max-width: 639px) {
  .salary-card--2 { transform: scale(1); }
}

.salary-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.salary-card__year {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}

.salary-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.salary-card__yen {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.salary-card__num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.salary-card__unit {
  font-size: 1.2rem;
  font-weight: 700;
}

.salary-card__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.salary__note {
  margin-top: 24px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ===== REQUIREMENTS ===== */
.requirements {
  background: var(--gray-50);
}

.req-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.req-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .9rem;
}

.req-table th,
.req-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  line-height: 1.65;
}

.req-table tr:last-child th,
.req-table tr:last-child td {
  border-bottom: none;
}

.req-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
  width: 120px;
  min-width: 100px;
}

.req-table td small {
  display: block;
  color: var(--gray-400);
  font-size: .78rem;
  margin-top: 4px;
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--white);
}

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

@media (min-width: 480px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  text-align: center;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition);
}
.benefit-item:hover {
  background: #eff6ff;
  border-color: var(--blue-light);
}

.benefit-item__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

/* ===== FAQ ===== */
.faq {
  background: var(--gray-50);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open {
  border-color: var(--blue);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}
.faq-item__q:hover {
  background: var(--gray-50);
}

.faq-item__q-icon {
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
  font-style: normal;
}

.faq-item__q span:not(.faq-item__q-icon) {
  flex: 1;
}

.faq-item__arrow {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.is-open .faq-item__arrow {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-item__a {
  display: none;
  padding: 0 20px 18px 62px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-item__a.is-open {
  display: block;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  color: var(--white);
  text-align: center;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.final-cta__title {
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.35;
}

.final-cta__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.final-cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.final-cta__note {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* ===== FORM ===== */
.form-section {
  background: var(--gray-50);
}

.form-section__lead {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
}

.apply-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gray-200);
  max-width: 560px;
}

@media (min-width: 640px) {
  .apply-form {
    padding: 40px 48px;
  }
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-required {
  font-size: .72rem;
  font-weight: 700;
  background: #ef4444;
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-base);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.form-input.is-error,
.form-select.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}

.form-input--sm {
  width: 120px;
}

.form-unit {
  margin-left: 8px;
  font-size: .9rem;
  color: var(--gray-600);
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap .form-select {
  padding-right: 44px;
}

.form-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-error {
  display: block;
  font-size: .78rem;
  color: #ef4444;
  margin-top: 5px;
  min-height: 1em;
}

.form-group--optional .form-label::after {
  content: '任意';
  font-size: .7rem;
  font-weight: 500;
  background: var(--gray-200);
  color: var(--gray-600);
  padding: 2px 6px;
  border-radius: 4px;
}

.form-group--privacy {
  margin-bottom: 28px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--gray-600);
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}

.form-checkbox input:checked + .form-checkbox__mark {
  background: var(--blue);
  border-color: var(--blue);
}
.form-checkbox input:checked + .form-checkbox__mark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-network-error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #b91c1c;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.form-submit {
  margin: 0 auto 20px;
  display: flex;
}

.form-section__note {
  font-size: .78rem;
  color: var(--gray-400);
  line-height: 1.8;
  text-align: center;
}

.form-success {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #22c55e;
  max-width: 560px;
  text-align: center;
}
.form-success__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success__inner svg {
  color: #22c55e;
}
.form-success__inner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.form-success__inner p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.5);
  padding-block: 40px;
  text-align: center;
}

.footer__company {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}

.footer__address,
.footer__tel {
  font-size: .82rem;
  margin-bottom: 4px;
}

.footer__copy {
  font-size: .75rem;
  margin-top: 20px;
}

/* ===== PAGE TOP ===== */
.pagetop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 99;
}
.pagetop.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pagetop:hover {
  background: var(--blue);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .section {
    padding-block: 80px 96px;
  }

  .fv__headline {
    max-width: 680px;
  }

  .btn--xl {
    width: auto;
  }

  .apply-form {
    max-width: 620px;
  }

  .faq-item__a {
    padding: 0 24px 20px 70px;
  }

  .schedule__timeline {
    max-width: 600px;
  }
}

@media (min-width: 960px) {
  .fv {
    min-height: 90vh;
    align-items: center;
    padding-bottom: 0;
  }
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fv__badges,
.fv__headline,
.fv__sub,
.fv__cta-group {
  animation: fadeInUp .7s ease both;
}
.fv__badges   { animation-delay: .1s; }
.fv__headline { animation-delay: .25s; }
.fv__sub      { animation-delay: .4s; }
.fv__cta-group { animation-delay: .55s; }
