
:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --secondary: #0f172a;
  --accent: #e0f2fe;
  --text: #334155;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #cbd5e1;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
  text-decoration: none;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}
nav a:hover {
  color: var(--primary);
}
.phone-cta-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.phone-cta-btn:hover {
  background: var(--primary-dark);
}
.hero {
  background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.8)), url('../images/sump-pump.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.btn-large {
  background: var(--primary);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}
.btn-large:hover {
  background: var(--primary-dark);
}
main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}
section {
  background: var(--white);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
h2 {
  color: var(--secondary);
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}
p {
  margin-bottom: 1rem;
}
ul.bullet-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
ul.bullet-list li {
  margin-bottom: 0.5rem;
}
footer {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 3rem;
}
footer p {
  opacity: 0.8;
  font-size: 0.9rem;
}
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  padding: 0.75rem;
  text-align: center;
  z-index: 1000;
  border-top: 1px solid var(--border);
}
.sticky-mobile-cta a {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 60px; }
}
