body {
  background-color: #f4f6f8; /* soft grey, not white */
  color: #222;
}

/* Make sections look like cards */
section {
  background-color: #f9fafb;
  margin: 40px auto;
  padding: 80px 0;
  border-radius: 16px;
}

/* =========================
   HEADER HEIGHT FIX
   ========================= */

.header-area {
  background: #f4f6f8;
  padding: 6px 0;              /* reduce vertical padding */
  min-height: unset;
}

.main-nav {
  min-height: unset;
  padding: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav .logo {
  display: flex;
  align-items: center;
}

/* Navigation alignment */
.main-nav ul.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}/* HERO SECTION */
.main-banner {
  background: #f1f3f5;
  padding: 160px 0 120px;
}

.main-banner h1 {
  color: #111;
}

.main-banner p {
  color: #444;
  font-size: 18px;
}
.main-banner {
  padding-top: 80px;  /* was too large earlier */
}

/* SERVICES / FEATURES */
.service-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* CTA SECTION */
.simple-cta {
  background: #e9ecef;
}

.simple-cta h4 {
  color: #111;
}

/* FINAL CTA (Book Demo) */
#contact.calculator {
  background: #212529;
  padding: 100px 0;
}

#contact h3,
#contact p {
  color: #ffffff;
}

#contact p {
  opacity: 0.85;
  font-size: 18px;
}

/* TESTIMONIALS */
.testimonials {
  background: #f1f3f5;
}

.testimonials .item {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.testimonials {
  background: #f1f3f5;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-card span {
  font-size: 14px;
  color: #666;
}

/* FOOTER */
footer {
  background: #ffffff;
  padding: 30px 0;
}

.main-nav ul.nav li a {
  color: #111;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.main-nav ul.nav li a:hover {
  background-color: #e9ecef;
  color: #000;
}

/* Active link */
.main-nav ul.nav li a.active {
  background-color: #212529;
  color: #fff;
}

/* Remove default link blue everywhere */
a {
  color: inherit;
  text-decoration: none;
}
.site-logo {
  height: auto;
  width: 220px;        /* MAIN CONTROL */
  max-width: 100%;
}
/* =========================
   CTA BUTTON FIX
   ========================= */

.orange-button {
  background: #ff7a00;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
}

.orange-button {
  padding: 12px 22px; /* was too large before */
  font-size: 15px;
}
/* =========================
   DEMO DASHBOARD (GHL STYLE)
   ========================= */

.demo-dashboard {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.demo-dashboard h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.demo-dashboard .stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.demo-dashboard .stat:last-child {
  border-bottom: none;
}

.demo-dashboard span {
  color: #111;          /* black, like rest of site */
  font-size: 14px;
}
.demo-dashboard strong {
  font-size: 18px;
  color: #ff7a00; /* brand orange */
}

.demo-dashboard small {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: #888;
}
/* =========================
   DEMO DASHBOARD ENHANCEMENTS
   ========================= */

.demo-dashboard {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-dashboard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.demo-dashboard .stat {
  gap: 12px;
}

.stat-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-left i {
  color: #ff7a00;
  font-size: 16px;
}

/* Subtle number emphasis */
.demo-dashboard strong {
  transition: transform 0.2s ease;
}

.demo-dashboard .stat:hover strong {
  transform: scale(1.05);
}
/* =========================
   REMOVE HEADER → HERO GAP
   ========================= */

/* Make header tight */
.header-area {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  margin-bottom: 0 !important;
}

/* Kill any accidental spacing after header */
.header-area + * {
  margin-top: 0 !important;
}

/* Pull hero UP */
.main-banner {
  padding-top: 48px !important;   /* this is the key number */
  margin-top: 0 !important;
}

/* Ensure no phantom spacing from Bootstrap */
.main-banner .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-proof {
  list-style: none;
  padding-left: 0;
  margin: 24px 0 32px;
}

.hero-proof li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}