/* ==========================================================================
   HelpJunk.com — shared stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;0,800;1,600;1,700;1,800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --charcoal: #1E2222;
  --charcoal-2: #282D2C;
  --charcoal-3: #333938;
  --lime: #9FC81B;
  --lime-dark: #7FA015;
  --lime-light: #C3E86B;
  --white: #FDFDFB;
  --offwhite: #F3F4EF;
  --ink: #20241F;
  --ink-soft: #4A5049;

  --font-display: 'Poppins', Arial, sans-serif;
  --font-body: 'Inter', 'Liberation Sans', Arial, sans-serif;

  --skew: -6deg;
  --radius: 10px;
  --max-width: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); }
p{ margin: 0; }

.wrap{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-lime{
  background: var(--lime);
  color: var(--charcoal);
  box-shadow: 0 4px 0 var(--lime-dark);
}
.btn-lime:hover{ box-shadow: 0 6px 0 var(--lime-dark); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(253,253,251,0.5);
}
.btn-outline:hover{ border-color: var(--lime); color: var(--lime); }
.btn-outline-dark{
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover{ border-color: var(--lime-dark); color: var(--lime-dark); }

/* ---------- Header / nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  border-bottom: 3px solid var(--lime);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.site-logo{ width: 190px; flex-shrink: 0; }
.site-logo img{ width: 100%; height: auto; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a{
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active{ color: var(--lime); }

.nav-cta{ display: flex; align-items: center; gap: 1rem; }
.nav-phone{
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  color: var(--lime);
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

@media (max-width: 860px){
  .nav-links{
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 3px solid var(--lime);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open{ max-height: 320px; }
  .nav-links a{
    width: 100%;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--charcoal-3);
  }
  .nav-cta .btn-outline{ display: none; }
  .nav-toggle{ display: block; }
  .site-header{ position: sticky; }
}

@media (max-width: 480px){
  .site-logo{ width: 140px; }
  .nav-phone{ display: none; }
  .nav-cta{ gap: 0.6rem; }
}

/* ---------- Hero (skewed band signature) ---------- */
.hero{
  position: relative;
  background: var(--charcoal);
  padding: 5.5rem 0 7rem 0;
  overflow: hidden;
}
.hero::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 60px;
  background: var(--offwhite);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}
.hero .wrap{ position: relative; z-index: 2; }
.hero-eyebrow{
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.hero h1{
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.02;
  color: var(--white);
  max-width: 14ch;
}
.hero h1 span{ color: var(--lime); display: block; }
.hero-sub{
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: #D7DBD1;
  max-width: 42ch;
  line-height: 1.6;
}
.hero-ctas{
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* speed-line motif, echoes the logo's motion marks */
.speed-lines{
  position: absolute;
  top: 18%;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.5;
}
.speed-lines span{
  display: block;
  height: 6px;
  background: var(--lime);
  border-radius: 4px;
}
.speed-lines span:nth-child(1){ width: 140px; }
.speed-lines span:nth-child(2){ width: 90px; margin-left: 30px; }
.speed-lines span:nth-child(3){ width: 55px; margin-left: 55px; }

@media (max-width: 700px){
  .speed-lines{ display: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip{
  background: var(--offwhite);
  padding: 0 0 3.5rem 0;
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -3.2rem;
  position: relative;
  z-index: 3;
}
.trust-card{
  background: var(--white);
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 24px rgba(30,34,34,0.08);
}
.trust-card h3{
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.trust-card p{ font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 760px){
  .trust-grid{ grid-template-columns: 1fr; margin-top: -2rem; }
}

/* ---------- Section shell ---------- */
.section{ padding: 4.5rem 0; }
.section-dark{ background: var(--charcoal); color: var(--white); }
.section-label{
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.6rem;
}
.section-title{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  font-style: italic;
  color: var(--charcoal);
  max-width: 26ch;
}
.section-dark .section-title{ color: var(--white); }
.section-title span{ color: var(--lime); }
.section-intro{
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.65;
}
.section-dark .section-intro{ color: #D7DBD1; }

/* ---------- Service cards ---------- */
.service-grid{
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.service-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 5px solid var(--lime);
  box-shadow: 0 8px 22px rgba(30,34,34,0.06);
}
.service-card .icon{ width: 46px; height: 46px; margin-bottom: 1rem; }
.service-card h3{
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.9rem;
}
.service-card li{
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.9;
}
.service-card li::before{
  content: "";
  position: absolute;
  left: 0; top: 0.72rem;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--lime);
}
.service-card a{
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--lime-dark);
  border-bottom: 2px solid var(--lime);
}

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

/* ---------- Load n Save band ---------- */
.lns{
  position: relative;
  background: var(--lime);
  padding: 3.4rem 0;
  overflow: hidden;
}
.lns::before, .lns::after{
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 40px;
  background: var(--offwhite);
}
.lns::before{ top: -1px; transform: skewY(-2deg); transform-origin: top right; }
.lns::after{ bottom: -1px; transform: skewY(-2deg); transform-origin: bottom left; }
.lns .wrap{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.lns-copy h2{
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  font-style: italic;
  color: var(--charcoal);
}
.lns-copy p{
  margin-top: 0.5rem;
  color: #2A2E1B;
  max-width: 46ch;
  font-size: 1rem;
}
.lns .truck-icon{ width: 90px; height: 68px; flex-shrink: 0; }
.lns-left{ display: flex; align-items: center; gap: 1.4rem; }

@media (max-width: 700px){
  .lns .wrap{ flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--charcoal);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2{
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
}
.cta-band h2 span{ color: var(--lime); }
.cta-band .phone-big{
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--lime);
}
.cta-band-ctas{
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- About page specifics ---------- */
.about-grid{
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.about-copy p{
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.about-values{
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--lime);
  padding: 1.8rem;
}
.about-values h3{
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.about-values ul li{
  padding: 0.6rem 0;
  border-top: 1px solid #E3E5DC;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.about-values ul li:first-child{ border-top: none; }
.about-values ul li strong{ color: var(--charcoal); }

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

/* ---------- Contact page ---------- */
.contact-grid{
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card{
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.contact-info-card .phone{
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--lime);
  margin: 0.6rem 0 1.4rem 0;
}
.contact-info-card .row{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--charcoal-3);
  font-size: 0.98rem;
}
.contact-info-card .row:first-of-type{ border-top: none; }

.contact-form{
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--lime);
  padding: 2.2rem;
}
.contact-form label{
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  margin-top: 1.1rem;
}
.contact-form label:first-child{ margin-top: 0; }
.contact-form input, .contact-form textarea{
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1.5px solid #D6D9CF;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--offwhite);
}
.contact-form input:focus, .contact-form textarea:focus{
  border-color: var(--lime);
  outline: none;
  background: var(--white);
}
.contact-form textarea{ resize: vertical; min-height: 120px; }
.contact-form button{ margin-top: 1.5rem; width: 100%; justify-content: center; }
.form-note{ font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.9rem; }
.honeypot{ position: absolute; left: -9999px; top: -9999px; }

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

/* ---------- Footer ---------- */
.site-footer{
  background: var(--charcoal-2);
  color: #C9CFC4;
  padding: 3rem 0 1.5rem 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo{ width: 170px; margin-bottom: 1rem; }
.footer-tagline{ font-size: 0.92rem; font-style: italic; color: #A9AFA1; max-width: 32ch; }
.footer-col h4{
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.footer-col ul li{ padding: 0.35rem 0; }
.footer-col a:hover{ color: var(--lime); }
.footer-bottom{
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--charcoal-3);
  font-size: 0.8rem;
  color: #8A9084;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 760px){
  .footer-grid{ grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Premium hero (split: copy + embedded quick-quote form) ---------- */
.hero-premium{
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 15% 20%, rgba(159,200,27,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 80%, rgba(159,200,27,0.10), transparent 60%),
    var(--charcoal);
  padding: 4.2rem 0 7.5rem 0;
  overflow: hidden;
}
.hero-premium::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 70px;
  background: var(--offwhite);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}
.hero-premium .wrap{ position: relative; z-index: 2; }
.hero-split{
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: start;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(159,200,27,0.12);
  border: 1px solid rgba(159,200,27,0.35);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero-premium h1{
  font-size: clamp(2.5rem, 4.6vw, 3.7rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  color: var(--white);
  max-width: 15ch;
}
.hero-premium h1 span{ color: var(--lime); display: block; }
.hero-premium .hero-sub{
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: #D7DBD1;
  max-width: 44ch;
  line-height: 1.65;
}
.hero-bullets{
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hero-bullets li{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #E4E7DF;
  font-size: 0.98rem;
}
.hero-bullets svg{ flex-shrink: 0; width: 20px; height: 20px; }
.hero-callrow{
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero-callrow .phone-link{
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  font-size: 1.25rem;
}
.hero-callrow .phone-link span{ color: var(--lime); }

/* Quick-quote form card */
.quote-card{
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.9rem 1.8rem 1.9rem;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.45), 0 0 0 1px rgba(159,200,27,0.15);
}
.quote-card h2{
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  color: var(--charcoal);
}
.quote-card .quote-sub{
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.quote-card form{ margin-top: 1.3rem; }
.quote-card label{
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}
.quote-card label:first-child{ margin-top: 0; }
.quote-card input, .quote-card textarea{
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1.5px solid #D6D9CF;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--offwhite);
}
.quote-card input:focus, .quote-card textarea:focus{
  border-color: var(--lime);
  outline: none;
  background: var(--white);
}
.quote-card textarea{ resize: vertical; min-height: 80px; }
.quote-card button{ margin-top: 1.3rem; width: 100%; justify-content: center; }
.quote-trust{
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.quote-trust svg{ width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 940px){
  .hero-split{ grid-template-columns: 1fr; gap: 2.4rem; }
  .quote-card{ max-width: 460px; }
}

/* ---------- How It Works (process) ---------- */
.process-grid{
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.process-step{ position: relative; padding-left: 0.1rem; }
.process-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 2.6rem;
  color: rgba(159,200,27,0.35);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.process-step h3{
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.process-step p{ font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 760px){
  .process-grid{ grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- FAQ ---------- */
.faq-list{ margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; max-width: 800px; }
.faq-item{
  background: var(--white);
  border: 1.5px solid #E3E5DC;
  border-radius: 10px;
  overflow: hidden;
}
.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-size: 1.4rem;
  color: var(--lime-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item .faq-answer{
  padding: 0 1.4rem 1.2rem 1.4rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar{
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--charcoal);
  border-top: 3px solid var(--lime);
  padding: 0.7rem 1rem;
  gap: 0.7rem;
}
.mobile-callbar a{
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
}
@media (max-width: 760px){
  .mobile-callbar{ display: flex; }
  body{ padding-bottom: 4.6rem; }
}
.page-hero{
  background: var(--charcoal);
  padding: 3.4rem 0 5rem 0;
  position: relative;
}
.page-hero::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 40px;
  background: var(--offwhite);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}
.page-hero .wrap{ position: relative; z-index: 2; }
.page-hero h1{
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
}
.page-hero h1 span{ color: var(--lime); }
.page-hero p{
  margin-top: 0.9rem;
  color: #D7DBD1;
  max-width: 50ch;
  font-size: 1.05rem;
}
