/**
 * Pump Finder - red theme. Simple hero like Diesel / Your Easy Transport.
 */
:root {
  --pump-bg: #991b1b;
  --pump-accent: #fca5a5;
  --pump-light: #fef2f2;
  --pump-wave: #991b1b;
}

@keyframes pump-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pump-fade-in-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pump-fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pump-hero, .pump-hero-content, .pump-light-section { animation: none; }
}

body.page-pump {
  margin: 0;
  min-height: 100vh;
  background-color: var(--pump-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111;
}

.pump-wrap { position: relative; overflow: hidden; }

/* Hero - simple, no image */
.pump-hero {
  background-color: var(--pump-bg);
  padding-bottom: 1rem;
  animation: pump-fade-in-down 0.55s ease-out;
}
@media (min-width: 640px) { .pump-hero { padding-bottom: 2rem; } }
@media (min-width: 1024px) { .pump-hero { padding-bottom: 3.5rem; } }

.pump-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 0.875rem;
  padding-left: max(0.875rem, env(safe-area-inset-left));
  padding-right: max(0.875rem, env(safe-area-inset-right));
}
@media (min-width: 375px) { .pump-hero-inner { padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); } }
@media (min-width: 768px) { .pump-hero-inner { padding-left: max(1.5rem, env(safe-area-inset-left)); padding-right: max(1.5rem, env(safe-area-inset-right)); } }
@media (min-width: 1024px) { .pump-hero-inner { padding-left: max(2rem, env(safe-area-inset-left)); padding-right: max(2rem, env(safe-area-inset-right)); } }

.pump-hero-content {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 0.5rem;
  text-align: center;
  animation: pump-fade-in 0.5s ease-out 0.15s both;
}
@media (min-width: 375px) { .pump-hero-content { padding: 0 1rem; } }
@media (min-width: 640px) { .pump-hero-content { padding: 0 1.5rem; animation-delay: 0.2s; } }

.pump-hero-text { display: flex; flex-direction: column; padding-bottom: 2rem; align-items: center; }
@media (min-width: 640px) { .pump-hero-text { padding-bottom: 2.5rem; } }

.pump-hero h1 {
  margin: 0;
  margin-top: 1.25rem;
  font-size: clamp(1.625rem, 5.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 375px) { .pump-hero h1 { margin-top: 1.5rem; font-size: 2rem; } }
@media (min-width: 640px) { .pump-hero h1 { margin-top: 2rem; font-size: 3rem; } }
@media (min-width: 768px) { .pump-hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .pump-hero h1 { margin-top: 2.5rem; font-size: 3.75rem; } }

.pump-hero h1 .block { display: block; }
.pump-hero h1 .accent {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  color: var(--pump-accent);
}
@media (min-width: 640px) { .pump-hero h1 .accent { padding-bottom: 1.25rem; } }

.pump-hero-tagline {
  font-family: ui-monospace, monospace;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-weight: 300;
  color: var(--pump-accent);
  margin-top: 0.25rem;
}

.pump-hero-desc {
  font-size: clamp(0.9375rem, 2.2vw, 1rem);
  color: rgba(255,255,255,0.9);
  margin-top: 0.875rem;
  line-height: 1.6;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) { .pump-hero-desc { margin-top: 1.25rem; font-size: 1.125rem; } }

.pump-hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 24rem;
}
@media (min-width: 640px) {
  .pump-hero-cta { flex-direction: row; justify-content: center; flex-wrap: wrap; max-width: 32rem; margin-top: 2rem; }
}

.pump-hero-cta input[type="number"] {
  width: 100%;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}
.pump-hero-cta input[type="number"]::placeholder { color: rgba(255,255,255,0.6); }
.pump-hero-cta input[type="number"]:focus {
  outline: none;
  border-color: var(--pump-accent);
  box-shadow: 0 0 0 2px rgba(252, 165, 165, 0.3);
}

.pump-btn-primary {
  display: inline-block;
  text-align: center;
  background-color: var(--pump-accent);
  color: #1c1917;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.pump-btn-primary:hover {
  background-color: #fecaca;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(252, 165, 165, 0.4);
}

/* Light section */
.pump-light-section {
  position: relative;
  background-color: var(--pump-light);
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pump-fade-in-up 0.5s ease-out 0.5s both;
}

.pump-wave-top, .pump-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  background: transparent;
  pointer-events: none;
}
.pump-wave-top { top: 0; }
.pump-wave-bottom { bottom: 0; }

/* Search / Pump Finder block */
.pump-search-section {
  width: 100%;
  max-width: 42rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  scroll-margin-top: 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) { .pump-search-section { padding-top: 5rem; padding-bottom: 5rem; } }
#laal-pump { padding-bottom: 0; }
@media (min-width: 640px) { #laal-pump { padding-bottom: 0; } }

.pump-section-label {
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 300;
  color: #991b1b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pump-section-title { margin: 0.5rem 0 0; font-size: 1.75rem; font-weight: 700; letter-spacing: -0.025em; color: #111; }
@media (min-width: 640px) { .pump-section-title { font-size: 2.25rem; } }
.pump-section-desc { font-size: 0.9375rem; color: #6b7280; margin-top: 0.75rem; max-width: 32rem; margin-left: auto; margin-right: auto; line-height: 1.5; }

.pump-search-box {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .pump-search-box { flex-direction: row; max-width: 32rem; }
}
.pump-search-box input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 1rem;
  color: #111;
  box-sizing: border-box;
}
.pump-search-box input:focus {
  outline: none;
  border-color: #991b1b;
  box-shadow: 0 0 0 2px rgba(153, 27, 27, 0.2);
}
.pump-search-box .pump-btn-primary {
  flex-shrink: 0;
}

.pump-coins-display {
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 300;
  color: #991b1b;
  margin-top: 0.5rem;
}

#search-results.pump-results { margin-top: 1.5rem; width: 100%; max-width: 28rem; margin-left: auto; margin-right: auto; }
.pump-results > p { text-align: center; color: #6b7280; font-size: 0.9375rem; margin-top: 1rem; }
.pump-results > p.text-red-500 { color: #b91c1c; }
.pump-results .pump-result-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(153, 27, 27, 0.08);
  border: 1px solid rgba(254, 202, 202, 0.5);
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}
.pump-results .pump-result-card h3 { margin: 0 0 1rem; font-size: 1.125rem; font-weight: 700; color: #111; }
.pump-results .pump-result-card .pump-result-row {
  background: #fef2f2;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.pump-results .pump-result-row .label { color: #6b7280; font-weight: 500; }
.pump-results .pump-result-row .value { color: #111; }
.pump-results .pump-result-row a { color: #991b1b; font-weight: 600; text-decoration: none; }
.pump-results .pump-result-row a:hover { text-decoration: underline; }
.pump-results .pump-btn-primary { margin-top: 1rem; width: 100%; display: block; text-align: center; box-sizing: border-box; }

/* Generic section */
.pump-section {
  width: 100%;
  max-width: 64rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media (min-width: 640px) { .pump-section { padding-top: 4rem; padding-bottom: 4rem; } }

.pump-section h2.pump-heading { margin: 0 0 0.5rem; font-size: 0.875rem; font-weight: 300; color: #991b1b; text-transform: uppercase; letter-spacing: 0.05em; font-family: ui-monospace, monospace; }
.pump-section h3.pump-heading-lg { margin: 0.5rem 0 0; font-size: 1.75rem; font-weight: 700; color: #111; }
@media (min-width: 640px) { .pump-section h3.pump-heading-lg { font-size: 2.5rem; } }
.pump-section .pump-prose { margin: 1rem auto 0; max-width: 42rem; font-size: 1rem; color: #6b7280; line-height: 1.6; }

/* Testimonial */
.pump-testimonial {
  width: 100%;
  max-width: 64rem;
  margin: 3rem auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(153, 27, 27, 0.08);
  border: 1px solid rgba(254, 202, 202, 0.4);
}
@media (min-width: 640px) { .pump-testimonial { flex-direction: row; padding: 2.5rem; gap: 2.5rem; } }
.pump-testimonial .pump-testimonial-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.pump-testimonial blockquote { margin: 0; text-align: left; }
.pump-testimonial blockquote p { font-size: 1.125rem; font-weight: 500; color: #111; line-height: 1.6; }
.pump-testimonial footer { margin-top: 1rem; font-family: ui-monospace, monospace; }
.pump-testimonial footer .name { font-weight: 600; color: #111; }
.pump-testimonial footer .role { color: #991b1b; font-weight: 500; }

/* How it works steps */
.pump-steps {
  width: 100%;
  max-width: 64rem;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .pump-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
}
.pump-step {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(153, 27, 27, 0.08);
  border: 1px solid rgba(254, 202, 202, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pump-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(153, 27, 27, 0.12);
}
.pump-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #991b1b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pump-step h4 { margin: 0 0 0.5rem; font-size: 1.125rem; font-weight: 700; color: #111; }
.pump-step p { margin: 0; font-size: 0.875rem; color: #6b7280; line-height: 1.5; }

/* Feature / app cards */
.pump-cards {
  width: 100%;
  max-width: 64rem;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .pump-cards { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; } }
.pump-cards-three {
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .pump-cards-three { grid-template-columns: repeat(3, 1fr); margin-top: 3rem; } }
.pump-cards-two {
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .pump-cards-two { margin-top: 3rem; } }

.pump-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(153, 27, 27, 0.08);
  border: 1px solid rgba(254, 202, 202, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pump-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(153, 27, 27, 0.12);
}
.pump-card-icon {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.pump-card h3 { margin: 0; font-size: 1.25rem; font-weight: 700; color: #111; }
.pump-card p.desc { margin: 0.75rem 0 0; font-size: 0.875rem; color: #6b7280; line-height: 1.5; }
.pump-card a.pump-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.pump-card a.pump-link:hover { background: #fef2f2; border-color: #fca5a5; }
.pump-card ul { margin: 1rem 0 0; padding-left: 1.25rem; text-align: left; font-size: 0.875rem; color: #6b7280; line-height: 1.6; }
.pump-card ul li { margin-top: 0.25rem; }
.pump-card ul .pump-check { color: #991b1b; margin-right: 0.5rem; }

.pump-card-cta { text-align: center; }
.pump-card-cta .pump-btn-primary {
  margin-top: 1.25rem;
  display: inline-block;
  text-decoration: none;
  width: auto;
}
.pump-card-cta .pump-btn-primary:hover { color: #1c1917; }

/* Footer */
.pump-footer {
  background-color: var(--pump-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pump-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 640px) { .pump-footer-inner { padding: 2.5rem 1.5rem; } }
.pump-footer-flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .pump-footer-flex { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
}
.pump-footer p { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.pump-footer nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0 0.5rem;
}
.pump-footer nav a:hover { color: #fff; }

.pump-hero-bottom { background-color: var(--pump-bg); padding-top: 2rem; }
