:root {
  --sitepilot-accent: #00bcd4;
  --sitepilot-accent-dark: #0795a7;
  --sitepilot-dark: #0b0f14;
  --sitepilot-dark-2: #121923;
  --sitepilot-light: #f5f8fb;
  --sitepilot-text: #24313f;
  --sitepilot-muted: #6b7a8c;
  --sitepilot-border: rgba(15, 23, 32, 0.08);
  --sitepilot-shadow: 0 14px 35px rgba(10, 20, 30, 0.08);
  --sitepilot-shadow-lg: 0 18px 45px rgba(10, 20, 30, 0.14);
  --sitepilot-radius: 22px;
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--sitepilot-text);
  line-height: 1.65;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  color: var(--sitepilot-dark);
}

a {
  text-decoration: none;
}

/* HEADER */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(8px);
  padding: 18px 0;
  transition: all 0.3s ease;
}

.navbar-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.navbar-logo span {
  color: var(--sitepilot-accent);
}

/* HERO SECTION */
#hero.mechanic-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(10, 15, 20, 0.68), rgba(10, 15, 20, 0.68)),
    url("https://www.sitepilot.co.za/assets/img/background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 140px 20px 100px;
}

.hero-container {
  max-width: 920px;
  margin: 0 auto;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(0, 188, 212, 0.14);
  border: 1px solid rgba(0, 188, 212, 0.35);
  color: #c7f8ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title span {
  color: var(--sitepilot-accent);
}

.hero-subtitle {
  font-size: 1.08rem;
  max-width: 740px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title,
.hero-subtitle {
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
}

/* HERO POINTS */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 0.92rem;
  backdrop-filter: blur(3px);
}

/* BUTTONS */
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-accent {
  background: linear-gradient(135deg, var(--sitepilot-accent), #1cd4ea);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.25);
  transition: all 0.25s ease;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--sitepilot-accent-dark), #10bfd4);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* GENERIC SECTION STYLES */
.section-soft,
.section-bg,
#contact.contact {
  background: #f7fbfd;
}

.section-divider {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sitepilot-accent), #8cebf7);
  margin: 14px auto 18px;
}

.lead,
.text-muted,
.contact-note {
  color: var(--sitepilot-muted) !important;
}

/* CARDS */
.info-card,
.feature-card,
.price-card,
.process-card,
.case-study-box,
.mini-proof,
.sticky-cta {
  border: 1px solid var(--sitepilot-border);
  border-radius: var(--sitepilot-radius);
  box-shadow: var(--sitepilot-shadow);
  background: #fff;
}

/* INFO / FEATURE / PROCESS */
.info-card,
.feature-card,
.price-card,
.process-card {
  height: 100%;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.feature-card:hover,
.price-card:hover,
.process-card:hover,
.mini-proof:hover {
  transform: translateY(-4px);
  box-shadow: var(--sitepilot-shadow-lg);
}

.feature-icon,
.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: rgba(0, 188, 212, 0.1);
  color: var(--sitepilot-accent-dark);
  font-size: 1.5rem;
}

.info-card .feature-icon {
  margin: 0 0 15px 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.2rem;
}

/* CASE STUDY */
.case-study-box {
  padding: 34px;
  height: 100%;
}

.case-study-box ul {
  padding-left: 1.2rem;
}

.mini-proof {
  padding: 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* CLIENTS */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.client-item {
  background: #fff;
  border: 1px solid var(--sitepilot-border);
  border-radius: 18px;
  padding: 22px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sitepilot-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sitepilot-shadow-lg);
}

.client-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* PRICING */
.pricing-highlight {
  border: 2px solid rgba(0, 188, 212, 0.3);
  position: relative;
  box-shadow: var(--sitepilot-shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--sitepilot-accent), #1cd4ea);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 188, 212, 0.25);
}

.price-card h5.text-success {
  color: var(--sitepilot-accent-dark) !important;
  font-weight: 800;
}

.price-card ul li {
  margin-bottom: 10px;
}

.price-card .btn-outline-primary {
  border-radius: 999px;
  font-weight: 700;
}

.table thead th {
  background: #f3fbfd;
}

/* CTA */
.sticky-cta {
  padding: 38px 26px;
  box-shadow: var(--sitepilot-shadow-lg);
}

/* CONTACT FORM */
.php-email-form .form-control {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 32, 0.12);
  padding: 14px 16px;
  box-shadow: none;
}

.php-email-form .form-control:focus {
  border-color: rgba(0, 188, 212, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.12);
}

.php-email-form button {
  min-width: 180px;
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(11, 15, 20, 0.97);
  list-style: none;
  margin: 0;
  padding: 90px 30px 30px;
  display: none;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav li {
  list-style: none;
}

.mobile-nav a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* FOOTER */
#footer {
  background: var(--sitepilot-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 30px 0;
}

#footer a {
  color: #fff;
}

#footer .copyright {
  text-align: center;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hero.mechanic-hero {
    padding-top: 130px;
    padding-bottom: 90px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group a {
    width: 100%;
    max-width: 300px;
  }

  .client-grid {
    grid-template-columns: 1fr;
  }

  .case-study-box,
  .sticky-cta,
  .info-card,
  .feature-card,
  .price-card,
  .process-card,
  .mini-proof {
    padding: 20px;
  }

  #header {
    padding: 14px 0;
  }

  .navbar-logo {
    font-size: 1.45rem;
  }
}
.mechanic-demo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  object-fit: cover;
}.video-wrapper {
  display: flex;
  justify-content: center;
}

.mechanic-demo-video {
  max-width: 320px;
  border-radius: 30px;
  border: 6px solid #111;
  background: #000;
}
.dashboard-preview {
  max-width: 900px;
  margin: 0 auto;
}

.dashboard-preview img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}#features .row {
  justify-content: center;
}

.feature-card {
  height: 100%;
  min-height: 260px;
}
.price-card {
  height: 100%;
  transition: all 0.25s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sitepilot-shadow-lg);
}

.pricing-highlight {
  transform: scale(1.03);
  border: 2px solid rgba(0,188,212,0.3);
}

.mechanic-demo-video {
  max-width: 380px; /* 🔥 sweet spot for dashboard */
}