
/* =============================
   Topbar phone (clickable)
============================= */
.topbar{
  position: relative;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-family: Montserrat, system-ui, sans-serif;
}
.topbar-phone{
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(173,147,108,.35);
  background: rgba(173,147,108,.10);
}
.topbar-phone:hover{
  border-color: rgba(173,147,108,.55);
  background: rgba(173,147,108,.14);
}
.topbar-note{
  color: rgba(255,255,255,.70);
  font-weight: 700;
}
@media (max-width: 820px){
  .topbar-note{ display:none; }
  .topbar-inner{ justify-content:center; }
}

/* =============================
   About section (standout)
============================= */
.about{ position: relative; overflow: hidden; }
.about-bg{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.85)),
    url('assets/racepoint-dusk-1920.webp') center/cover no-repeat;
  opacity: .45;
  transform: scale(1.05);
}
.about .container{ position: relative; }
.about-head p{ color: rgba(255,255,255,.70); }

.about-grid{
  display:grid;
  gap: 18px;
  margin-top: 18px;
}

@media (min-width: 980px){
  .about-grid{ grid-template-columns: 1.4fr .9fr; align-items: start; }
}

.about-card,
.about-aside{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.about-card{ padding: 22px; }
.about-card h3{
  margin: 0 0 10px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.about-card p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.about-aside{ padding: 18px; }
.about-stat{
  display:flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(173,147,108,.35);
  background: rgba(173,147,108,.10);
}
.about-stat-num{
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.about-stat-label{
  color: rgba(255,255,255,.75);
  font-weight: 800;
}

.about-points{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.about-points li{ margin: 0 0 10px; }
.about-points strong{ color: rgba(255,255,255,.92); }

.about-cta{ margin-top: 14px; }
.about-more{
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 22px;
}
.about-more p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
