:root {
    --primary: #0a2540; /* Deep Executive Navy */
    --accent: #00f3ff;  /* Cyber/AI Blue */
    --accent-hover: #00d8e4;
    --text-dark: #1a1a1a;
    --text-mid: #4f566b;
    --bg-light: #ffffff;
    --bg-off: #f6f9fc;
    --shadow: 0 7px 14px 0 rgba(60,66,87, 0.08), 0 3px 6px 0 rgba(0,0,0, 0.12);
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

body { 
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0; 
    padding: 0; 
    color: var(--text-dark); 
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Global Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 8%;
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid #e6ebf1;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e6ebf1;
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
}

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

.nav-links { display: flex; gap: 2.5rem; align-items: center; }

/* Hero */
.hero {
    padding: 10rem 8% 8rem;
    color: white;
    text-align: center;
    background-color: #3d2b1f !important;
    background-image: url('https://blog.moonvalleynurseries.com/hubfs/BLOG_1440x1080%20Joshua%20Trees%20For%20Landscape%20Designs-HiRes_05.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin: 0 0 1.25rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 820px;
    margin: 0 auto 2.5rem;
    opacity: 0.92;
    font-weight: 300;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.cta-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.65rem 1.15rem;
    border-radius: 10px;
}

/* Responsive nav */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items:center; justify-content:center; }
  .nav-links {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.75rem 0.9rem; border-radius: 10px; }
  .nav-links a:hover { background: var(--bg-off); }
}

/* Page Headers */
.page-header {
    padding: 6rem 8% 4rem;
    background: var(--bg-off);
    text-align: center;
}

.page-header p {
    color: var(--text-mid);
    font-size: 1.2rem;
    margin: 1rem auto 0;
    max-width: 900px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin: 0;
    color: var(--primary);
    letter-spacing: -1px;
}

/* Footer */
footer {
    padding: 5rem 8%;
    background: var(--primary);
    color: white;
    margin-top: 5rem;
}

footer h4 { margin: 0 0 1rem; }

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.8rem; opacity: 0.8; }

/* Components */
.section { padding: 5rem 8%; }
.section--alt { background: var(--bg-off); }
.section--dark { background: var(--primary); color: white; }
.container { max-width: 1200px; margin: 0 auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  padding: 2.25rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.card--tight { padding: 1.75rem; }
.card--flat { box-shadow: none; }
.card--flush { padding: 0; }

.text-muted { color: var(--text-mid); }
.text-left { text-align: left; }

.stack { display: grid; gap: 1.25rem; }

.stack--lg { gap: 2rem; }

.card h3 { margin: 0 0 0.5rem; }

.card p { margin: 0; }

.btn--block { width: 100%; text-align: center; }

.page-header p { padding: 0 0.25rem; }

.pill-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pill-link:hover { text-decoration: underline; }

.footer-note {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0.7;
  font-size: 0.85rem;
}

.card--soft {
  background: var(--bg-off);
  border: 1px solid #e6ebf1;
}

.card--placeholder {
  background: #fff;
  height: 300px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7cbd6;
  font-weight: 800;
  font-size: 1.1rem;
  border: 1px dashed #ddd;
}

/* Desert-Tested Speed Meter */
.speedMeter {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 16px;
  padding: 1.25rem;
}

.speedMeter__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.speedMeter__kicker {
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(10,37,64,0.75);
}

.speedMeter__title {
  font-weight: 900;
  color: var(--primary);
  margin-top: 0.25rem;
}

.speedMeter__btn {
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.speedMeter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 900px) {
  .speedMeter__top { flex-direction: column; align-items: stretch; }
  .speedMeter__grid { grid-template-columns: 1fr; }
}

.meterCol {
  background: white;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(10,37,64,0.08);
}

.meterCol[data-col="basin"] {
  border-color: rgba(0,243,255,0.35);
}

.meterCol__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.meterCol__name {
  font-weight: 900;
  color: var(--primary);
}

.meterCol__score {
  font-weight: 900;
  color: var(--primary);
}

.meterCol__score .scoreNum { font-size: 1.6rem; }
.meterCol__score .scoreDen { opacity: 0.55; margin-left: 0.1rem; }

.bar {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: rgba(10,37,64,0.08);
  overflow: hidden;
}

.bar__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,243,255,0.25), rgba(0,243,255,0.95));
  transition: width 350ms ease;
}

.meterCol[data-col="generic"] .bar__fill {
  background: linear-gradient(90deg, rgba(79,86,107,0.25), rgba(79,86,107,0.85));
}

.bar__cap {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meterCol__note {
  margin-top: 0.8rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.speedMeter__result {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(10,37,64,0.8);
  font-weight: 700;
}

.resultDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(10,37,64,0.25);
}

.speedMeter[data-state="running"] .resultDot { background: rgba(0,243,255,0.85); }
.speedMeter[data-state="done"] .resultDot { background: #1ecb63; }

.meterCol[data-col="basin"][data-done="true"] .meterCol__name::after {
  content: " ✓";
  color: #1ecb63;
  font-weight: 900;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  margin: 0;
  font-size: 2.2rem;
  color: var(--primary);
}

.section-head p {
  margin: 1rem auto 0;
  max-width: 820px;
  color: var(--text-mid);
  font-size: 1.1rem;
}

.section--dark .section-head h2,
.section--dark .section-head p { color: white; }
.section--dark .section-head p { opacity: 0.85; }

.icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; }
}

.price-card { position: relative; }
.price-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 6px 14px;
  font-weight: 900;
  font-size: 0.7rem;
  border-radius: 999px;
  letter-spacing: 1px;
}

.price-tier {
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin: 0;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin: 1.25rem 0;
}

.price span { font-size: 1rem; opacity: 0.55; font-weight: 700; }

.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  color: var(--text-mid);
  display: grid;
  gap: 0.65rem;
}

.tag {
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.project-media {
  background: var(--primary);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.35rem;
}

.project-body { padding: 2.25rem; }

.placeholder {
  background: var(--bg-off);
  border-radius: 16px;
  border: 2px dashed #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  text-align: center;
}

/* Contact form */
.contact-form label {
    display: block;
    font-weight: 700;
    color: var(--text-mid);
    margin: 1rem 0 0.4rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid #e6ebf1;
    outline: none;
    font: inherit;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(0,243,255,0.55);
    box-shadow: 0 0 0 4px rgba(0,243,255,0.15);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    border-radius: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-xl {
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 0 1.5rem;
  letter-spacing: -1px;
}

.lead-lg {
  font-size: 1.1rem;
  margin: 0 0 2rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0,243,255,0.2);
}
