/* SoakPro Landing Page — Dark, industrial, pressure-washer energy */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #0D0D0D;
  --bg-2: #161616;
  --bg-3: #1E1E1E;
  --lime: #C8FF00;
  --lime-dim: #9BBF00;
  --white: #F5F0E8;
  --muted: #8A8A8A;
  --border: #2A2A2A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── Typography ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--lime);
  text-decoration: none;
}

.nav-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.nav-spacer { flex: 1; }

.nav-phone {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone svg { width: 14px; height: 14px; stroke: var(--muted); }

@media (max-width: 640px) {
  .nav-phone { display: none; }
  .nav-inner { padding: 14px 20px; }
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--lime);
  color: #0D0D0D;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 255, 0, 0.25);
}

.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--lime);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 100px 20px 60px; }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--lime);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-price-callout {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.price-callout-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.price-cards-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.price-pill-name {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-pill-amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ─── Sections ─── */
.section {
  padding: 100px 40px;
}

.section-dark {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 20px; }
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--lime);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg { width: 26px; height: 26px; stroke: var(--lime); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Pricing Section ─── */
.pricing-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-4px);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  opacity: 0;
  transition: opacity 0.2s;
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card-popular {
  border-color: var(--lime);
}

.pricing-card-popular::before { opacity: 1; }

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lime);
  color: #0D0D0D;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.service-icon-lg {
  width: 48px;
  height: 48px;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-lg svg { width: 24px; height: 24px; stroke: var(--lime); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.pricing-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.pricing-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--lime);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.pricing-card-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.pricing-card-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li svg { width: 14px; height: 14px; stroke: var(--lime); flex-shrink: 0; }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg { width: 16px; height: 16px; fill: var(--lime); }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--lime);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.author-location {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-2); }

.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question svg { transform: rotate(45deg); stroke: var(--lime); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 200px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--lime);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: #0D0D0D;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner-sub {
  font-size: 1rem;
  color: rgba(13, 13, 13, 0.65);
  margin-bottom: 36px;
  position: relative;
}

.cta-banner .btn-primary {
  background: #0D0D0D;
  color: var(--lime);
  font-size: 1rem;
  padding: 14px 36px;
  position: relative;
}

.cta-banner .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .cta-banner { padding: 48px 24px; }
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 40px 20px 24px; }
}

.footer-brand .nav-logo { font-size: 22px; }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.15s;
}

.footer-links-col a:hover { color: var(--lime); }

.footer-links-col .col-head {
  font-size: 0.72px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}