/* SiteJobs — Construction Jobs Platform */
:root {
  --bg: #faf8f4;
  --bg-card: #ffffff;
  --bg-hover: #f5f3ee;
  --text: #2c2c2c;
  --text-muted: #8a8a82;
  --accent: #e87520;
  --accent-hover: #d06818;
  --accent-light: #fff4eb;
  --blue: #1a3a5c;
  --blue-hover: #142d48;
  --border: #e8e6e0;
  --radius: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-hover); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ---- NAV ---- */
nav {
  background: var(--bg);
  padding: 14px 0;
  position: relative;
  z-index: 300;
  overflow: visible;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
nav .logo img { height: 140px; display: block; }
nav ul { list-style: none; display: flex; gap: 32px; align-items: center; }
nav ul li a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
nav ul li a:hover { color: var(--text); }
nav ul li a.nav-cta {
  color: #fff;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.78rem;
}
nav ul li a.nav-cta:hover { background: var(--accent-hover); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero .container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
}
.hero h1 {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero h1 .orange { color: var(--accent); }
.hero h1 .blue { color: #fff; }
.hero p {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto 12px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .cta-primary {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 6px;
  border-bottom: none;
  transition: background 0.3s;
}
.hero .cta-primary:hover { background: var(--accent-hover); color: #fff; }
.hero .cta-secondary {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 32px;
  border-radius: 6px;
  transition: all 0.3s;
}
.hero .cta-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ---- BADGE BAR ---- */
.badge-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.badge-bar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.badge-bar span {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.82rem;
  margin: 0 4px;
}

/* ---- SECTION ---- */
section { padding: 80px 0; }
section h2 {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}
section h2 .orange { color: var(--accent); }
section .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1rem;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- FOR WHO ---- */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.for-who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.for-who-card h3 {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.for-who-card h3 .orange { color: var(--accent); }
.for-who-card .tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.for-who-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.for-who-card ul li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.for-who-card ul li:last-child { border-bottom: none; }
.for-who-card ul li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}
.for-who-card .price {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.for-who-card .price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}
.for-who-card .price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.for-who-card .cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.for-who-card .cta-primary {
  background: var(--accent);
  color: #fff;
}
.for-who-card .cta-primary:hover { background: var(--accent-hover); color: #fff; }
.for-who-card .cta-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--border);
}
.for-who-card .cta-outline:hover { border-color: var(--blue); }

/* ---- TRADES ---- */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.trade-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text);
  text-align: center;
  transition: border-color 0.3s;
}
.trade-tag:hover {
  border-color: var(--accent);
}

/* ---- TRUST ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.trust-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.trust-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-card .tier {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-family: var(--font);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pricing-card .price small {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card .price-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card ul li {
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}
.pricing-card .cta {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.pricing-card .cta-primary {
  background: var(--accent);
  color: #fff;
}
.pricing-card .cta-primary:hover { background: var(--accent-hover); }

/* ---- FAQ ---- */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-card {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.faq-card h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--blue);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 {
  color: #fff;
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-section .subtitle {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}
.cta-section .cta-primary {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 6px;
  transition: background 0.3s;
}
.cta-section .cta-primary:hover { background: var(--accent-hover); color: #fff; }

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.footer-links {
  margin-bottom: 24px;
  text-align: center;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
  display: inline-block;
  padding: 0 8px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  text-align: left;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--accent); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  /* Nav: show hamburger, hide desktop menu */
  .menu-toggle { display: flex; }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 200;
  }
  nav ul.show { display: flex; }
  nav .logo img { height: 90px; }
  nav { padding: 10px 0; }

  /* Hero: image auto-sizes, just adjust text */
  .hero .container { padding: 40px 0; }
  .hero h1 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 6px; margin-top: 0; }
  .hero p { font-size: 0.85rem; margin-bottom: 12px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 8px; }

  /* Badge bar: wrap nicely */
  .badge-bar { padding: 12px 0; }
  .badge-bar p { font-size: 0.75rem; line-height: 2; }

  /* Sections: tighter spacing */
  section { padding: 48px 0; }
  section h2 { font-size: 1.6rem; }
  section .subtitle { font-size: 0.92rem; margin-bottom: 32px; }

  /* Steps: stack vertically */
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-card { padding: 24px 16px; }
  .step-card p { font-size: 0.92rem; }

  /* For Who: stack cards */
  .for-who-grid { grid-template-columns: 1fr; }
  .for-who-card { padding: 28px 20px; }
  .for-who-card ul li { font-size: 0.92rem; }
  .for-who-card .price { font-size: 1.8rem; }

  /* Trades: 2 columns */
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-tag { font-size: 0.82rem; padding: 10px 12px; }

  /* Trust: single column */
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card p { font-size: 0.92rem; }

  /* Pricing: single column */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card ul li { font-size: 0.92rem; }

  /* FAQ */
  .faq-card { padding: 20px; }
  .faq-card p { font-size: 0.92rem; }

  /* CTA section */
  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: 1.6rem; }

  /* Footer */
  .footer-columns { grid-template-columns: 1fr; text-align: center; }
  .footer-col { margin-bottom: 16px; }
}

@media (max-width: 480px) {
  nav .logo img { height: 70px; }
  nav { padding: 8px 0; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.9rem; margin-bottom: 20px; }
  .hero .cta-primary, .hero .cta-secondary { padding: 7px 18px; font-size: 0.78rem; }
  .container { padding: 0 20px; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .badge-bar p { font-size: 0.72rem; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background: var(--accent-hover);
  color: #fff;
}