/* ============================================================
   Premier Bin Cleaning — styles.css
   Plain CSS, no build step. Edit colors via the variables below.
   ============================================================ */

:root {
  --navy: #0b2545;
  --blue: #1f6feb;
  --blue-deep: #134b9e;
  --accent: #18c29c;        /* fresh teal — the Book Today button */
  --accent-deep: #119a7c;
  --ink: #18233a;
  --muted: #5a6b85;
  --line: #e4e9f2;
  --tint: #f1f6fc;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow: 0 18px 40px rgba(11, 37, 69, 0.12);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

a { color: var(--blue-deep); text-decoration: none; }

img { display: block; max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1.08rem; }

.btn-cta {
  background: var(--accent);
  color: #03261e;
  box-shadow: 0 10px 22px rgba(24, 194, 156, 0.35);
}
.btn-cta:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--navy);
}
.brand-mark { font-size: 1.5rem; }
.brand-name { display: flex; flex-direction: column; line-height: 1; font-size: 1.15rem; }
.brand-name span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); font-family: "Inter", sans-serif; }

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { margin-left: 8px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(31, 111, 235, 0.10), transparent 60%),
    linear-gradient(180deg, var(--tint), var(--white));
  padding: 60px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(31, 111, 235, 0.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.hl { color: var(--blue); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 24px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--ink);
  font-size: 0.98rem;
}
.hero-points li { font-weight: 500; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--accent);
  color: #03261e;
  border-radius: 18px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1;
}
.hero-badge .big { display: block; font-family: "Fraunces", serif; font-weight: 700; font-size: 2rem; }
.hero-badge .small { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); color: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px;
}
.trust-grid div { display: flex; flex-direction: column; gap: 2px; }
.trust-grid strong { font-size: 1rem; }
.trust-grid span { font-size: 0.86rem; color: #aebfdb; }

/* ---------- Generic sections ---------- */
.section { padding: 72px 0; }
.section-tint { background: var(--tint); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ba-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.ba-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  color: #fff;
}
.ba-before { background: #c0392b; }
.ba-after { background: var(--accent-deep); }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  font-size: 1.8rem;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--tint);
  border-radius: 14px;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.steps h3 { font-size: 1.25rem; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-feature {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.price-flag {
  position: absolute;
  top: -13px; left: 30px;
  background: var(--accent);
  color: #03261e;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.4rem; }
.price { margin: 6px 0 18px; }
.price .amt { font-family: "Fraunces", serif; font-weight: 700; font-size: 3rem; color: var(--navy); }
.price .per { color: var(--muted); font-weight: 600; margin-left: 6px; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
  font-weight: 800;
}
.price-card .btn { margin-top: auto; }

/* ---------- Payment methods ---------- */
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.payment-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.payment-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.payment-venmo {
  background: #008cff;
  color: #fff;
  border-color: #008cff;
  transition: background 0.15s ease, transform 0.15s ease;
}
.payment-venmo:hover {
  background: #006dd4;
  border-color: #006dd4;
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  color: #fff;
}
.final-cta-inner {
  text-align: center;
  padding: 70px 22px;
}
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.final-cta p { color: #c6d6f3; font-size: 1.12rem; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aebfdb; padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name span { color: var(--accent); }
.footer-area { margin: 0; color: #c6d6f3; }
.footer-copy { margin: 0; font-size: 0.86rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .hero { padding: 44px 0 56px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .lede { font-size: 1.05rem; }
  .hero-actions { gap: 12px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .final-cta-inner { padding: 52px 22px; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 12px; bottom: -14px; }
  .trust-grid { grid-template-columns: 1fr; padding: 18px 22px; gap: 14px; }
  .hero-points { gap: 8px 16px; font-size: 0.92rem; }
  .payment-methods { gap: 10px; }
}
