/* =========================
   CONTACT / SUPPORT / ABOUT / TRACKING
   ========================= */

.pageLead{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
  max-width:72ch;
  margin-top:8px;
}

@media (max-width: 1020px){
  .contentGrid{ grid-template-columns:1fr; }
}

.infoCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .infoCards{ grid-template-columns:1fr; }
}
.infoCard{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  background:#fff;
  box-shadow:var(--shadow);
}
.infoCard h4{
  margin:0 0 6px;
  font-size:15px;
}
.infoCard p,
.infoCard small{
  margin:0;
  color:var(--muted);
  line-height:1.4;
}
.infoCard a{
  color:var(--brand);
  font-weight:900;
}
.infoCard a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

.sideStack{
  display:grid;
  gap:14px;
}

.miniList{
  display:grid;
  gap:10px;
}
.miniListItem{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.miniListItem b{
  display:block;
  margin-bottom:4px;
}
.miniListItem small{
  color:var(--muted);
  line-height:1.4;
}

.faqList{
  display:grid;
  gap:10px;
}
.faqItem{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.faqItem summary{
  cursor:pointer;
  list-style:none;
  padding:14px 16px;
  font-weight:900;
  position:relative;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqItem summary::after{
  content:"+";
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  color:var(--muted);
  font-size:20px;
  line-height:1;
}
.faqItem[open] summary::after{
  content:"−";
}
.faqAnswer{
  border-top:1px solid var(--line);
  padding:14px 16px;
  color:var(--muted);
  line-height:1.55;
}

.heroSplit{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
  padding:14px 0 18px;
}
@media (max-width: 1020px){
  .heroSplit{ grid-template-columns:1fr; }
}
.heroTextCard{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:
    radial-gradient(900px 280px at 20% 15%, rgba(255,255,255,.24), transparent 55%),
    linear-gradient(135deg, #0ea5e9, #06b6d4, #22c55e);
  color:#fff;
  box-shadow:var(--shadow);
  padding:22px;
  min-height:260px;
}
.heroTextCard h2{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-.4px;
}
.heroTextCard p{
  margin:0 0 14px;
  max-width:58ch;
  line-height:1.5;
  opacity:.96;
}

.photoPanel{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:260px;
}
.photoPanel img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.storyGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .storyGrid{ grid-template-columns:1fr; }
}
.storyCard{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  padding:16px;
}
.storyCard h4{
  margin:0 0 6px;
  font-size:15px;
}
.storyCard p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

.teamGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 1020px){
  .teamGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .teamGrid{ grid-template-columns:1fr; }
}
.teamCard{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.teamPhoto{
  height:180px;
  background:linear-gradient(135deg, rgba(14,165,233,.14), rgba(6,182,212,.12));
}
.teamPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.teamBody{
  padding:14px;
}
.teamBody b{
  display:block;
  margin-bottom:4px;
}
.teamBody small{
  color:var(--muted);
  display:block;
  line-height:1.4;
}

.statsGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .statsGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .statsGrid{ grid-template-columns:1fr; }
}
.statCard{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  padding:16px;
  text-align:center;
}
.statCard .num{
  font-size:28px;
  font-weight:950;
  letter-spacing:-.5px;
}
.statCard small{
  color:var(--muted);
  display:block;
  margin-top:4px;
}

.trackWrap{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:18px;
  padding:12px 0 18px;
}
@media (max-width: 1020px){
  .trackWrap{ grid-template-columns:1fr; }
}
.trackResult{
  display:grid;
  gap:12px;
}
.timeline{
  display:grid;
  gap:10px;
}
.timelineItem{
  display:grid;
  grid-template-columns: 24px 1fr;
  gap:12px;
  align-items:flex-start;
}
.timelineDot{
  width:24px;height:24px;
  border-radius:999px;
  border:2px solid rgba(14,165,233,.35);
  background:#fff;
  margin-top:2px;
  position:relative;
}
.timelineDot::after{
  content:"";
  position:absolute;
  left:50%;
  top:24px;
  width:2px;
  height:28px;
  background:var(--line);
  transform:translateX(-50%);
}
.timelineItem:last-child .timelineDot::after{ display:none; }
.timelineContent{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.timelineContent b{
  display:block;
  margin-bottom:4px;
}
.timelineContent small{
  color:var(--muted);
  display:block;
  line-height:1.4;
}

.searchLike{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.searchLike input{
  flex:1;
  min-width:220px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px 14px;
  outline:none;
  background:#fff;
}
.helperText{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  margin-top:10px;
}

.mapPlaceholder{
  min-height:260px;
  border:1px solid var(--line);
  border-radius:18px;
  background:
    linear-gradient(135deg, rgba(14,165,233,.08), rgba(6,182,212,.06)),
    repeating-linear-gradient(45deg, rgba(17,24,39,.03) 0 8px, transparent 8px 16px);
  display:grid;
  place-items:center;
  text-align:center;
  padding:16px;
  color:var(--muted);
}