/* ============================================
   SWIFTMOVE USA — INNER PAGES SHARED STYLES
   ============================================ */

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 50%, #1a56e8 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  z-index: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="1" height="60" x="30" fill="rgba(255,255,255,0.03)"/><rect width="60" height="1" y="30" fill="rgba(255,255,255,0.03)"/></svg>');
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* INNER PAGE BODY */
.page-body { padding: 80px 0; background: #f4f6fb; }
.page-body--white { background: #fff; }

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.info-card {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,86,232,0.12); }
.info-card__icon { font-size: 40px; margin-bottom: 16px; }
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #0d1117; }
.info-card p  { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* PROSE / TEXT BLOCKS */
.prose h2 { font-size: 26px; font-weight: 800; color: #0d1117; margin: 40px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 700; color: #0d1117; margin: 28px 0 12px; }
.prose p  { font-size: 16px; color: #6b7280; line-height: 1.75; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 8px; }
.prose a  { color: #1a56e8; }
.prose a:hover { text-decoration: underline; }

/* ACCORDION (FAQ) */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  overflow: hidden;
}
.accordion-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0d1117;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.accordion-question:hover { background: #f4f6fb; }
.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8efff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a56e8;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: #1a56e8; color: #fff; }
.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.accordion-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}
.accordion-item.open .accordion-answer { max-height: 400px; }

/* TEAM CARDS */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e9f2;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,86,232,0.1); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.team-card h4 { font-size: 16px; font-weight: 700; color: #0d1117; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: #6b7280; }

/* JOB CARDS */
.job-card {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transition: all 0.25s;
}
.job-card:hover { box-shadow: 0 8px 32px rgba(26,86,232,0.1); border-color: #1a56e8; }
.job-card__meta { display: flex; flex-direction: column; gap: 6px; }
.job-card__meta h3 { font-size: 18px; font-weight: 700; color: #0d1117; }
.job-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: #e8efff;
  color: #1a56e8;
}
.job-tag--orange { background: #fff3e8; color: #f97316; }
.jobs-list { display: flex; flex-direction: column; gap: 16px; }

/* BLOG CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e9f2;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,86,232,0.1); }
.blog-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.blog-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; background: #e8efff; color: #1a56e8;
}
.blog-date { font-size: 12px; color: #9ca3af; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: #0d1117; line-height: 1.35; }
.blog-card p  { font-size: 14px; color: #6b7280; line-height: 1.6; flex: 1; }
.blog-read { font-size: 14px; font-weight: 600; color: #1a56e8; }

/* PRESS / MEDIA */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.press-card {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s;
}
.press-card:hover { box-shadow: 0 8px 32px rgba(26,86,232,0.1); border-color: #1a56e8; }
.press-source { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9ca3af; margin-bottom: 10px; }
.press-card h3 { font-size: 16px; font-weight: 700; color: #0d1117; line-height: 1.4; margin-bottom: 10px; }
.press-card p  { font-size: 13px; color: #6b7280; margin-bottom: 16px; }
.press-link { font-size: 13px; font-weight: 600; color: #1a56e8; }

/* PARTNERS */
.partner-logo {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #6b7280;
  height: 80px;
  transition: all 0.25s;
}
.partner-logo:hover { border-color: #1a56e8; color: #1a56e8; box-shadow: 0 4px 20px rgba(26,86,232,0.1); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

/* TRACKING */
.tracking-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(26,86,232,0.1);
  border: 1px solid #e5e9f2;
  max-width: 640px;
  margin: 0 auto;
}
.tracking-input-group {
  display: flex;
  gap: 12px;
}
.tracking-input-group input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e5e9f2;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.25s;
}
.tracking-input-group input:focus { border-color: #1a56e8; }
.tracking-result {
  margin-top: 32px;
  border-top: 1px solid #e5e9f2;
  padding-top: 32px;
  display: none;
}
.tracking-result.visible { display: block; }
.tracking-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: #e5e9f2;
}
.timeline-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #1a56e8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot.done { background: #22c55e; }
.timeline-dot.active { background: #f97316; box-shadow: 0 0 0 4px rgba(249,115,22,0.2); }
.timeline-dot.pending { background: #e5e9f2; }
.timeline-content h4 { font-size: 15px; font-weight: 600; color: #0d1117; margin-bottom: 2px; }
.timeline-content span { font-size: 13px; color: #9ca3af; }

/* CLAIMS FORM */
.claims-form {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 4px 24px rgba(26,86,232,0.07);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .prose-layout { grid-template-columns: 1fr !important; }
  .prose-layout > *:first-child { position: static !important; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .tracking-form-wrap { padding: 28px 20px; }
  .tracking-input-group { flex-direction: column; }
  .claims-form { padding: 24px; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
