/* myWash Plus — plain, simple, no frills */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Promo bar */
.promo-bar {
  background: #ffc128;
  color: #1f3a5f;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  font-size: 1.05rem;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 2px solid #e6f0f7;
  padding: 14px 0;
  position: sticky;
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1b6ca8;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-phone {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.btn-primary {
  background: #1b6ca8;
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: #1b6ca8;
  border: 2px solid #1b6ca8;
}

.btn-large {
  font-size: 1.05rem;
  padding: 14px 28px;
}

/* Hero */
.hero {
  background: #eaf3fa;
  padding: 56px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero .subhead {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #333333;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 520px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Sections */
section {
  padding: 44px 0;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* Plans */
.plans {
  background: #ffffff;
}

.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 520px) {
  .plan-cards {
    flex-direction: row;
  }
  .plan-card {
    flex: 1;
  }
}

.plan-card {
  border: 2px solid #e6f0f7;
  border-radius: 8px;
  padding: 24px;
}

.plan-card h3 {
  font-size: 1.25rem;
  color: #1b6ca8;
  margin-bottom: 8px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
}

.plan-card ul {
  list-style: disc;
  padding-left: 20px;
}

.plan-card li {
  margin-bottom: 6px;
}

.plan-note {
  font-weight: 600;
  color: #1b6ca8;
}

/* One-time pickup */
.one-time .one-time-price {
  margin-top: 12px;
  color: #333333;
}

.one-time .one-time-cta {
  margin-top: 20px;
  text-align: center;
}

/* How it works */
.how-it-works {
  background: #f7fafc;
}

.steps {
  list-style: none;
}

.steps li {
  margin-bottom: 12px;
  padding-left: 4px;
}

.steps strong {
  color: #1b6ca8;
}

/* Service area */
.service-area {
  text-align: center;
}

/* Fine print */
.fine-print {
  background: #f7fafc;
}

.fine-print p {
  font-size: 0.9rem;
  color: #555555;
}

/* Contact */
.contact {
  text-align: center;
}

.contact-lines {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.contact-lines a {
  color: #1b6ca8;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

@media (min-width: 520px) {
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Footer */
.site-footer {
  background: #1b6ca8;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.site-footer p {
  font-size: 0.9rem;
}
