/* ---------------------------------------------
   Apex Bin Cleans — stylesheet
--------------------------------------------- */

:root {
  --bg: #0b0d0a;
  --bg-alt: #14170f;
  --surface: #1a1e15;
  --surface-2: #21261a;
  --line: #2a2f22;

  --yellow: #ffd400;
  --yellow-dim: #c9a900;
  --green: #57c26a;
  --green-deep: #2f6b34;

  --text: #f5f4ef;
  --text-dim: #b7bcae;
  --text-faint: #7c8172;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.45);
  --shadow-yellow: 0 8px 24px rgba(255, 212, 0, 0.25);

  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 var(--space-4);
  color: var(--text-dim);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: var(--space-12);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: #171907;
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ffdd33;
  box-shadow: 0 12px 28px rgba(255, 212, 0, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 10, 0.85);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--yellow);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}

.header-phone svg {
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: var(--space-2);
}

/* ---------- Hero ---------- */

.hero {
  padding-block: var(--space-12) var(--space-16);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(87, 194, 106, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 45%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.12), transparent 65%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  margin-bottom: var(--space-5);
}

.hero-copy h1 .highlight {
  color: var(--yellow);
}

.hero-copy .lede {
  font-size: 1.15rem;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
}

.hero-badges {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}

.hero-badge svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual .price-tag {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: var(--yellow);
  color: #171907;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-lg);
  transform: rotate(8deg);
  z-index: 2;
}

.hero-visual .price-tag small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual .price-tag strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  padding-block: var(--space-8);
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}

.trust-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.trust-item h4 {
  font-size: 0.95rem;
  margin: 0;
}

.trust-item p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--text-faint);
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: #171907;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.step h3 {
  font-size: 1.15rem;
}

.step p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.steps-footnote {
  text-align: center;
  margin-top: var(--space-8);
}

.steps-footnote .pill {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* ---------- Gallery ---------- */

.gallery-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-6);
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}

.gallery-pair figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gallery-pair img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-pair figcaption {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.gallery-pair .before-tag {
  background: rgba(0, 0, 0, 0.65);
  color: #ffb4b4;
}

.gallery-pair .after-tag {
  background: var(--green);
  color: #0b1c0d;
}

.gallery-card-label {
  padding: var(--space-4) var(--space-5);
  font-size: 0.85rem;
  color: var(--text-faint);
  font-weight: 500;
}

.gallery-more {
  text-align: center;
  margin-top: var(--space-8);
}

/* ---------- Testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  margin: 0;
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  position: relative;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: var(--space-3);
  left: var(--space-5);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  opacity: 0.35;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: var(--space-5);
}

.testimonial-card cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.price-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.price-card-featured {
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
  transform: scale(1.03);
}

.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #171907;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3rem);
  color: var(--yellow);
  line-height: 1;
  margin: var(--space-4) 0 var(--space-2);
}

.price-card .amount sup {
  font-size: 0.35em;
  top: -1.6em;
}

.price-card .amount span {
  font-size: 1.2rem;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.price-card .freq {
  color: var(--green);
  font-weight: 600;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.price-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  max-width: 640px;
}

.price-list-grid {
  max-width: 900px;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4) var(--space-8);
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--text-dim);
}

.price-list svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

.price-list strong {
  color: var(--text);
}

/* ---------- About / van ---------- */

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4);
}

.about-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-photos .tall {
  grid-row: span 2;
  aspect-ratio: unset;
  height: 100%;
}

.about-copy .stat-row {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.about-copy .stat {
  font-family: var(--font-display);
}

.about-copy .stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--yellow);
}

.about-copy .stat span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ---------- Area ---------- */

.area-band {
  background: linear-gradient(135deg, var(--green-deep), #1c3b1f);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.area-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: var(--space-2);
}

.area-band p {
  color: rgba(245, 244, 239, 0.8);
  margin-bottom: 0;
  max-width: 46ch;
}

/* ---------- CTA / Contact ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-8);
}

.contact-methods {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}

.contact-method:hover {
  border-color: var(--yellow);
  transform: translateX(4px);
}

.contact-method .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.contact-method span {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.social-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.2s;
}

.social-row a:hover {
  background: var(--yellow);
  color: #171907;
  transform: translateY(-3px);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: var(--space-8);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-note {
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 7, 5, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: var(--space-6);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 640px);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: var(--space-4) var(--space-5);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .hero .container,
  .about-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .price-card-featured {
    transform: none;
    order: -1;
  }

  .price-list-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .about-photos {
    grid-template-columns: 1fr 1fr;
  }

  .about-photos .tall {
    grid-row: auto;
    height: auto;
    aspect-ratio: 3/4;
  }

  section {
    padding-block: var(--space-10);
  }

  .area-band {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-badges {
    gap: var(--space-4);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
