/* ============================
   MechanicsWanted.co.uk
   ============================ */

:root {
  --c-green: #C2E605;
  --c-black: #000000;
  --c-dark: #161616;
  --c-dark2: #1e1e1e;
  --c-white: #FFFFFF;
  --c-grey: #b3b3b3;

  --f-display: 'Anton', sans-serif;
  --f-heading: 'Barlow Condensed', sans-serif;
  --f-body: 'Inter', sans-serif;

  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

html, body {
  overflow-x: hidden;
}

body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.green { color: var(--c-green); }
.white { color: var(--c-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 6px;
  border: 2px solid var(--c-green);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: var(--c-green);
  color: var(--c-black);
}
.btn-solid:hover { background: #d4fc1f; }

.btn-outline {
  background: transparent;
  color: var(--c-green);
}
.btn-outline:hover { background: var(--c-green); color: var(--c-black); }

.btn-outline-white {
  border-color: var(--c-white);
  color: var(--c-white);
}
.btn-outline-white:hover { background: var(--c-white); color: var(--c-black); }

.eyebrow {
  font-family: var(--f-heading);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green);
  font-size: 0.95rem;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #262626;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--f-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover {
  color: var(--c-green);
  border-color: var(--c-green);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--c-green);
  color: var(--c-green);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 9px 18px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.header-call:hover { background: var(--c-green); color: var(--c-black); }
.header-call svg { width: 18px; height: 18px; }

.nav-toggle { display: none; }
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--c-white);
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--c-black);
  padding: 64px 0 56px;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(135deg, rgba(194,230,5,0.035) 0 2px, transparent 2px 34px);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.85) saturate(1.05);
  z-index: 0;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--c-black) 0%,
    rgba(0,0,0,0.92) 12%,
    rgba(0,0,0,0.55) 32%,
    rgba(0,0,0,0.15) 55%,
    transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 6.5vw, 3.6rem);
  line-height: 1.02;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.hero-tagline {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  color: var(--c-white);
  margin-bottom: 28px;
  max-width: 46ch;
}

.hero-salary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.hero-salary .up-to {
  font-family: var(--f-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  line-height: 1.05;
  color: var(--c-white);
  border-left: 4px solid var(--c-green);
  padding-left: 12px;
}
.hero-salary .amount {
  font-family: var(--f-display);
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  color: var(--c-green);
  line-height: 1;
}

.hero-salary .amount .k-suffix {
  font-size: 0.8em;
}

.bonus-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bonus-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--c-green);
  border-radius: 8px;
  padding: 7px 12px;
  background: rgba(194, 230, 5, 0.06);
  white-space: nowrap;
}

.bonus-badge .amount {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--c-green);
  line-height: 1;
}

.bonus-badge .label {
  font-family: var(--f-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--c-white);
}

.bonus-badge .label small {
  display: block;
  font-weight: 500;
  text-transform: none;
  color: var(--c-grey);
  font-size: 0.75rem;
  letter-spacing: 0;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.hero-phone .phone-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-phone .phone-icon svg { width: 24px; height: 24px; color: var(--c-green); }
.hero-phone a {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--c-white);
  letter-spacing: 0.01em;
}
.hero-phone a:hover { color: var(--c-green); }

.hero-tags {
  font-family: var(--f-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-green);
  font-size: 1rem;
  margin-bottom: 30px;
}

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  min-height: 320px;
}

/* ============ GARAGE / TRUST ============ */
.garage {
  background: var(--c-dark);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

.garage h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 10px 0 16px;
}

.garage p {
  color: var(--c-grey);
  max-width: 62ch;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  padding: 24px 12px;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  background: var(--c-black);
}

.stat-card .num {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--c-green);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .label {
  font-family: var(--f-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--c-white);
}

/* ============ REWARDS (BONUS + REFERRAL) ============ */
.rewards {
  background: var(--c-black);
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid #262626;
}

.rewards-heading {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 10px 0 36px;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.reward-card {
  background: var(--c-dark);
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 28px;
}

.reward-card h3 {
  font-family: var(--f-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-green);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.reward-card p {
  color: var(--c-white);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.reward-card p a {
  color: var(--c-green);
  text-decoration: underline;
}

.reward-card .small-print {
  font-size: 0.8rem;
  color: var(--c-grey);
  font-style: italic;
  margin-bottom: 0;
}

/* ============ BENEFITS STRIP ============ */
.benefits {
  background: var(--c-green);
  padding: 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit .icon svg { width: 26px; height: 26px; color: var(--c-green); }
.benefit .icon span { color: var(--c-green); font-size: 1.5rem; font-weight: 800; font-family: var(--f-heading); }

.benefit h3 {
  font-family: var(--f-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--c-black);
  margin-bottom: 4px;
  line-height: 1.15;
}

.benefit p {
  font-size: 0.92rem;
  color: #1a1a1a;
}

/* ============ INFO SECTION ============ */
.info {
  background: var(--c-black);
  padding: 72px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 48px;
}

.info-col h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-bottom: 20px;
}

.info-col p {
  color: var(--c-grey);
  margin-bottom: 16px;
  font-size: 1rem;
}

.info-col.about {
  border-right: 1px solid #262626;
  padding-right: 48px;
}

.info-col.offer {
  border-right: 1px solid #262626;
  padding-right: 48px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--c-white);
}
.checklist svg {
  width: 20px;
  height: 20px;
  color: var(--c-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.interested-box {
  background: var(--c-dark2);
  border-radius: 10px;
  padding: 32px;
}

.interested-box h2 {
  font-family: var(--f-display);
  color: var(--c-green);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.interested-box h3 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.interested-box p {
  color: var(--c-grey);
  margin-bottom: 22px;
}

.interested-box .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.interested-box .btn:last-child { margin-bottom: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--c-black);
  border-top: 1px solid #262626;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--c-grey);
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-item svg { width: 18px; height: 18px; color: var(--c-green); flex-shrink: 0; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 2px solid var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.footer-socials a:hover { background: var(--c-green); }
.footer-socials svg { width: 18px; height: 18px; color: var(--c-green); }
.footer-socials a:hover svg { color: var(--c-black); }

.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 24px 0;
  text-align: center;
  color: #666;
  font-size: 0.78rem;
  line-height: 1.5;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 0.82rem;
  padding: 16px 0 100px;
}

/* ============ STICKY MOBILE CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--c-black);
  border-top: 2px solid var(--c-green);
}
.mobile-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-family: var(--f-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.mobile-cta a svg { width: 20px; height: 20px; }
.mobile-cta .call { background: var(--c-green); color: var(--c-black); }
.mobile-cta .whatsapp { background: var(--c-dark2); color: var(--c-white); border-left: 1px solid #333; }

/* ============ RESPONSIVE ============ */
@media (max-width: 700px) {
  .reward-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-col.about, .info-col.offer {
    border-right: none;
    border-bottom: 1px solid #262626;
    padding-right: 0;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .hero-photo { display: none; }
}

@media (max-width: 420px) {
  .logo { font-size: 1.05rem; }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--c-black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid #262626;
  }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid #1f1f1f; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .hamburger { display: flex; }
  .header-call { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 64px; }
}

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
