:root {
  --bg-dark: #0a0e1a;
  --bg-card: #131826;
  --bg-elevated: #1a2138;
  --accent: #f5a623;
  --accent-hot: #ff6b35;
  --accent-green: #2ed573;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --border: #2d3748;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.top-bar {
  background: linear-gradient(90deg, #0d1424 0%, #1a2138 100%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .sub { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.top-cta {
  background: var(--accent-green);
  color: #062a14;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.top-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,213,115,0.4); }

/* ===== HERO ===== */
.hero {
  padding: 60px 0 40px;
  background:
    radial-gradient(circle at 20% 0%, rgba(245,166,35,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,107,53,0.06) 0%, transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,213,115,0.12);
  color: var(--accent-green);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(46,213,115,0.25);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.85);} }
.hero h1 {
  font-size: 46px; font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .money { color: var(--accent-green); }
.hero-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 28px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: #1a0e00;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700; font-size: 16px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.5); }
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--bg-elevated); border-color: var(--accent); }

/* ===== JOB CARDS ===== */
.jobs-col { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent);
}
.job-card:hover { transform: translateX(-4px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.job-icon {
  width: 50px; height: 50px;
  background: var(--bg-elevated);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.job-info { flex: 1; min-width: 0; }
.job-title { font-weight: 700; font-size: 16px; margin-bottom: 3px; }
.job-city { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.job-advance {
  text-align: right; flex-shrink: 0;
}
.job-advance .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.job-advance .amount { font-size: 22px; font-weight: 800; color: var(--accent-green); }
.job-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.tag {
  font-size: 11px; padding: 3px 9px; border-radius: 100px; font-weight: 600;
}
.tag-warn { background: rgba(255,107,53,0.15); color: var(--accent-hot); }
.tag-ok { background: rgba(46,213,115,0.15); color: var(--accent-green); }
.tag-info { background: rgba(245,166,35,0.15); color: var(--accent); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--accent-hot) 0%, var(--accent) 50%, var(--accent-hot) 100%);
  padding: 12px 0;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-ticker 25s linear infinite;
  font-weight: 600;
  color: #1a0e00;
  font-size: 15px;
}
@keyframes scroll-ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-tag {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--accent);
  padding: 5px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 14px;
}
.section h2 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section h2 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 17px; color: var(--text-secondary); }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.step-number {
  font-size: 44px; font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 18px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 15px; }
.step-time {
  display: inline-block; margin-top: 14px;
  font-size: 12px; color: var(--accent-green);
  background: rgba(46,213,115,0.12); padding: 4px 10px; border-radius: 6px;
  font-weight: 600;
}

/* ===== CONDITIONS ===== */
.cond-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cond-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.cond-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.cond-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15) 0%, rgba(255,107,53,0.15) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.cond-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.cond-card p { color: var(--text-secondary); font-size: 15px; }

/* ===== FORM / CTA ===== */
.cta-section {
  background:
    radial-gradient(circle at 30% 50%, rgba(245,166,35,0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(46,213,115,0.08) 0%, transparent 60%);
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.cta-left {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
}
.cta-left h3 { font-size: 26px; font-weight: 800; line-height: 1.25; margin-bottom: 24px; }
.cta-left h3 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.trigger-list { list-style: none; }
.trigger-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}
.trigger-list li:last-child { border-bottom: none; }
.trigger-list .check {
  width: 24px; height: 24px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #062a14; font-weight: 800;
  flex-shrink: 0;
}
.cta-right {
  background: linear-gradient(135deg, #131826 0%, #1a2138 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-right h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; text-align: center; }
.cta-right .form-sub { text-align: center; color: var(--text-secondary); margin-bottom: 28px; font-size: 15px; }
.tg-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #229ED9;
  color: white;
  padding: 18px 30px;
  border-radius: 14px;
  font-weight: 700; font-size: 17px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 24px rgba(34,158,217,0.35);
}
.tg-btn:hover { transform: translateY(-2px); background: #1b8cc4; box-shadow: 0 10px 30px rgba(34,158,217,0.5); }
.tg-btn svg { width: 22px; height: 22px; fill: white; }
.form-note {
  margin-top: 22px; text-align: center;
  font-size: 13px; color: var(--text-muted);
}
.countdown-box {
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  margin-top: 24px;
}
.countdown-box .num { font-size: 24px; font-weight: 800; color: var(--accent-hot); }
.countdown-box .txt { font-size: 13px; color: var(--text-secondary); }

/* ===== FOOTER ===== */
.footer {
  background: #060912;
  padding: 40px 0 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer .brand { justify-content: center; margin-bottom: 14px; }
.footer p { color: var(--text-muted); font-size: 13px; margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid, .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid, .cond-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .section h2 { font-size: 28px; }
  .section { padding: 50px 0; }
}
@media (max-width: 560px) {
  .top-cta { display: none; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .job-advance { text-align: left; }
  .cta-left, .cta-right { padding: 28px 22px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

/* ===== VISUAL REFRESH ===== */
.hero {
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 8% 20%, rgba(46, 213, 115, 0.08), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(245, 166, 35, 0.08), transparent 28%),
    var(--bg-dark);
}
.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 64px;
}
.hero h1 {
  max-width: 610px;
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.hero-sub { max-width: 570px; }
.hero-trust {
  display: flex;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-trust span {
  flex: 1;
  padding: 14px 14px 14px 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}
.hero-trust span + span {
  padding-left: 14px;
  border-left: 1px solid var(--border);
}
.hero-trust strong {
  display: block;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 800;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}
.hero-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 15, 0.05) 30%, rgba(4, 8, 15, 0.82) 100%);
}
.hero-photo-label,
.hero-photo-pay,
.hero-photo-note {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 14, 24, 0.76);
  backdrop-filter: blur(10px);
}
.hero-photo-label {
  top: 32px;
  left: 32px;
  padding: 13px 16px;
  border-radius: 12px;
}
.hero-photo-kicker,
.hero-photo-pay span {
  display: block;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-photo-label strong { font-size: 17px; }
.hero-photo-pay {
  right: 32px;
  bottom: 32px;
  padding: 15px 18px;
  border-radius: 12px;
}
.hero-photo-pay strong {
  display: block;
  color: var(--accent-green);
  font-size: 24px;
  line-height: 1.15;
}
.hero-photo-note {
  left: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 100px;
  color: #d7e4da;
  font-size: 12px;
  font-weight: 700;
}
.hero-photo-note svg { width: 15px; color: var(--accent-green); }

.jobs-section {
  padding: 82px 0 86px;
  background: #0d1322;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.jobs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.jobs-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.jobs-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.jobs-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  white-space: nowrap;
}
.jobs-updated .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(46, 213, 115, 0.12);
}
.jobs-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.job-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}
.job-card::before { display: none; }
.job-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 213, 115, 0.42);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}
.job-card-featured { border-color: rgba(46, 213, 115, 0.48); }
.job-image {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--border);
}
.job-card:first-child .job-image { object-position: center 48%; }
.job-card:nth-child(2) .job-image { object-position: center 42%; }
.job-card:last-child .job-image { object-position: center 42%; }
.job-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.job-card-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.job-title { line-height: 1.25; }
.job-city svg { width: 14px; height: 14px; }
.job-advance .amount { font-size: 25px; }
.job-tags { margin-top: auto; padding-top: 16px; }
.job-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 100px;
  background: var(--accent-green);
  color: #062a14;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { max-width: 720px; }
  .hero-visual { min-height: 440px; }
  .hero-visual img { min-height: 440px; }
  .jobs-col { grid-template-columns: 1fr 1fr; }
  .job-card:last-child { grid-column: 1 / -1; }
  .job-card:last-child .job-image { height: 240px; }
}

@media (max-width: 680px) {
  .hero { padding: 48px 0 52px; }
  .hero h1 { font-size: 38px; }
  .hero-trust { flex-wrap: wrap; }
  .hero-trust span { min-width: 33%; }
  .hero-visual,
  .hero-visual img { min-height: 410px; }
  .hero-photo-label { top: 24px; left: 24px; }
  .hero-photo-pay { right: 24px; bottom: 24px; }
  .hero-photo-note { left: 24px; bottom: 100px; }
  .jobs-section { padding: 58px 0; }
  .jobs-head { align-items: flex-start; flex-direction: column; }
  .jobs-col { grid-template-columns: 1fr; }
  .job-card:last-child { grid-column: auto; }
  .job-image,
  .job-card:last-child .job-image { height: 210px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-trust span { min-width: 0; padding-right: 8px; }
  .hero-trust span + span { padding-left: 8px; }
  .hero-trust strong { font-size: 15px; }
  .hero-visual,
  .hero-visual img { min-height: 360px; }
  .hero-photo-label { left: 18px; top: 18px; }
  .hero-photo-pay { right: 18px; bottom: 18px; }
  .hero-photo-note { display: none; }
  .job-card { align-items: stretch; }
  .job-card-row { align-items: flex-start; }
  .job-advance { text-align: right; }
}
