/* ═══════════════════════════════════════════════════════════
   FairgoTradies — Main Stylesheet
   Edit colours via :root variables below
   ═══════════════════════════════════════════════════════════ */

:root {
  --orange:      #f97316;
  --orange-dark: #c2410c;
  --yellow:      #fbbf24;
  --dark:        #0c0e0f;
  --dark2:       #141719;
  --dark3:       #1c2023;
  --dark4:       #242a2e;
  --steel:       #2e3538;
  --text:        #e8eaeb;
  --muted:       #8a9199;
  --border:      rgba(255,255,255,0.07);
}

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

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12,14,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 43%;
  gap: 48px;
  align-items: center;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 3px;
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}
.hero-h1 .line-orange { color: var(--orange); display: block; }
.hero-h1 .line-white  { color: #ffffff; display: block; }
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}
.hero-sub strong { color: var(--text); }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}
.hero-stat-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 22px 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero-stat-card:nth-child(1) { animation-delay: 0.5s; }
.hero-stat-card:nth-child(2) { animation-delay: 0.65s; }
.hero-stat-card:nth-child(3) { animation-delay: 0.8s; }
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.hero-stat-label strong { color: var(--text); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 40px rgba(249,115,22,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 48px rgba(249,115,22,0.4);
  color: #fff;
}
.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-note {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ─── TICKER ──────────────────────────────────────────────── */
.ticker {
  background: var(--orange);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 32px;
}
.ticker-dot { color: rgba(255,255,255,0.5); padding: 0 4px; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TRADES STRIP ────────────────────────────────────────── */
.trades {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 5%;
}
.trades-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.trade-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.trade-pill:last-child { border-right: none; }
.trade-pill:hover { color: var(--orange); }
.trade-pill span { font-size: 18px; }

/* ─── SHARED SECTION STYLES ───────────────────────────────── */
section { padding: 96px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

/* ─── PAIN ────────────────────────────────────────────────── */
.pain { background: var(--dark2); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.pain-card {
  background: var(--dark2);
  padding: 32px 28px;
  transition: background 0.2s;
}
.pain-card:hover { background: var(--dark3); }
.pain-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.pain-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.pain-body { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── SYSTEM ──────────────────────────────────────────────── */
.system { background: var(--dark); }
.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.system-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.system-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-3px); }
.system-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}
.system-card:hover::before { opacity: 1; }
.system-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(249,115,22,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.system-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.system-card-body { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing { background: var(--dark2); }
.pricing-card {
  background: var(--dark);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 12px;
  padding: 56px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(249,115,22,0.1);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.pricing-amount { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 8px; }
.pricing-dollar {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.4;
}
.pricing-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.pricing-period { font-size: 16px; color: var(--muted); margin-bottom: 6px; }
.pricing-adspend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: 4px;
  padding: 8px 14px;
  margin-bottom: 36px;
  font-size: 13px;
  color: var(--yellow);
  font-weight: 600;
}
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 32px; }
.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.guarantee-box {
  background: var(--dark3);
  border: 1px solid rgba(249,115,22,0.2);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guarantee-icon { font-size: 28px; flex-shrink: 0; }
.guarantee-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.guarantee-text p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how { background: var(--dark); }
.steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; }
.step { display: flex; gap: 24px; position: relative; }
.step:not(:last-child) .step-line {
  position: absolute;
  left: 19px; top: 44px; bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.step-num {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 2;
}
.step-content { padding-bottom: 48px; }
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.step-body { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ─── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  background: var(--dark);
  text-align: center;
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}
.final-cta h2 span { color: var(--orange); }
.final-cta p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 28px 5%;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.footer-logo span { color: var(--orange); }
footer p { font-size: 13px; color: var(--muted); }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .pain-grid  { grid-template-columns: 1fr; }
  .system-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 24px; }
  .pricing-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .trades-inner { flex-wrap: wrap; justify-content: center; }
  .trade-pill { border-right: none; border-bottom: 1px solid var(--border); }
}
