/* RemoteConet — Shared Styles v1.0 */
:root {
  --navy:     #0A1628;
  --navy-m:   #162240;
  --blue:     #1A2EC7;
  --blue-l:   #2D4EF5;
  --blue-g:   #E8EDFF;
  --blue-mid: rgba(26,46,199,0.08);
  --white:    #FFFFFF;
  --off:      #F8FAFF;
  --gray:     #6B7280;
  --gray-l:   #9CA3AF;
  --ink:      #1A1F2E;
  --border:   rgba(26,46,199,0.12);
  --shadow:   0 4px 24px rgba(10,22,40,0.08);
  --shadow-l: 0 8px 48px rgba(10,22,40,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  padding-top: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p { line-height: 1.7; color: var(--gray); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}

.site-nav.scrolled { box-shadow: var(--shadow); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-size: 20px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--blue); }

.nav-center {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-center a {
  font-size: 14px; font-weight: 500; color: var(--gray);
  text-decoration: none; padding: 6px 12px; border-radius: 6px;
  transition: all 0.2s;
}
.nav-center a:hover { color: var(--navy); background: var(--blue-mid); }
.nav-center a.active { color: var(--blue); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.btn-find-work {
  font-size: 13px; font-weight: 600; padding: 9px 18px;
  border: 1.5px solid var(--blue); border-radius: 8px;
  color: var(--blue); text-decoration: none; transition: all 0.2s;
}
.btn-find-work:hover { background: var(--blue-g); }

.btn-start-hiring {
  font-size: 13px; font-weight: 600; padding: 9px 18px;
  background: var(--blue); border-radius: 8px;
  color: var(--white); text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--blue);
}
.btn-start-hiring:hover { background: var(--blue-l); border-color: var(--blue-l); }

.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--navy); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 14px 28px;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 10px; text-decoration: none;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary:hover { background: var(--blue-l); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,46,199,0.25); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 14px 28px;
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue); border-radius: 10px;
  text-decoration: none; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-secondary:hover { background: var(--blue-g); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 14px 28px;
  background: var(--white); color: var(--blue);
  border: none; border-radius: 10px; text-decoration: none;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-white:hover { background: var(--blue-g); transform: translateY(-1px); }

.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 14px 28px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 10px;
  text-decoration: none; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── EYEBROW ── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px; display: block;
}
.eyebrow-white { color: rgba(255,255,255,0.7); }

/* ── SECTION SPACING ── */
.section { padding: 100px 48px; }
.section-sm { padding: 64px 48px; }
.container { max-width: 1160px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--navy); padding: 48px;
  display: flex; justify-content: center; gap: 80px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: 48px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.stat-num span { color: var(--blue-l); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ── CARD ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow-l); border-color: rgba(26,46,199,0.25); transform: translateY(-2px); }
.card-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 14px; line-height: 1.65; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }

/* ── DUAL CTA SECTION ── */
.dual-cta {
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
}
.dual-cta-panel {
  padding: 80px 64px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.dual-cta-panel.employer { background: var(--blue); }
.dual-cta-panel.talent { background: var(--navy); }
.dual-cta-panel h2 { font-size: clamp(24px, 3vw, 40px); color: var(--white); margin-bottom: 12px; }
.dual-cta-panel p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 15px; }

/* ── TRUST LOGOS ── */
.trust-strip {
  background: var(--off); padding: 32px 48px;
  text-align: center;
}
.trust-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-l); margin-bottom: 20px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-logo { font-size: 16px; font-weight: 700; color: var(--gray-l); letter-spacing: -0.02em; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-size: 56px; font-weight: 800; color: var(--blue-g);
  line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.step-content h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: 14px; line-height: 1.7; }

/* ── SALARY TABLE ── */
.salary-table { width: 100%; border-collapse: collapse; }
.salary-table th {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray);
  padding: 12px 20px; text-align: left;
  border-bottom: 2px solid var(--border);
}
.salary-table td { padding: 16px 20px; font-size: 14px; border-bottom: 1px solid var(--border); }
.salary-table tr:last-child td { border-bottom: none; }
.salary-table tr:hover td { background: var(--off); }
.salary-table .role { font-weight: 600; color: var(--navy); }
.salary-table .us { color: var(--gray); }
.salary-table .global { color: var(--blue); font-weight: 700; }
.saving { display: inline-block; font-size: 11px; font-weight: 700; background: #DCFCE7; color: #166534; padding: 2px 8px; border-radius: 100px; }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
}
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--navy); font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--blue); }
.testimonial-role { font-size: 12px; color: var(--gray); }
.stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }

/* ── MARKET TAGS ── */
.market-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.market-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  background: var(--blue-g); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
}

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 72px 48px 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-linkedin-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.footer-linkedin-icon:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: white;
}
.footer-email-link {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email-link:hover { color: white; }
.footer-social a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }
.footer-press {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.press-badge {
  font-size: 11px; font-weight: 700; background: var(--blue);
  color: white; padding: 3px 10px; border-radius: 4px;
}

/* ── IBARE SECTION ── */
.ibare-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0F1E5A 100%);
  padding: 100px 48px; text-align: center; position: relative; overflow: hidden;
}
.ibare-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,78,245,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ibare-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #00D2FF;
  border: 1px solid rgba(0,210,255,0.3);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.ibare-dot { width: 6px; height: 6px; background: #00D2FF; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.ibare-section h2 { color: var(--white); margin-bottom: 16px; }
.ibare-section p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 40px; font-size: 16px; }
.ibare-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 900px; margin: 0 auto 40px; }
.ibare-feature {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 24px; text-align: left;
}
.ibare-feature-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.ibare-feature h4 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.ibare-feature p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── FORM ── */
.ibare-form-wrap {
  background: var(--white); border-radius: 16px; padding: 40px;
  max-width: 640px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group.full { grid-column: span 2; }
.field-group label { font-size: 12px; font-weight: 600; color: var(--gray); }
.field-group input, .field-group select, .field-group textarea {
  padding: 12px 16px; background: var(--off);
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--ink);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  border-color: var(--blue); background: var(--white);
}
.field-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer;
}
.field-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--blue);
  color: var(--white); border: none; border-radius: 8px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: inherit; margin-top: 4px;
}
.btn-submit:hover { background: var(--blue-l); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.success-msg { display: none; text-align: center; padding: 32px 0; }
.success-msg.visible { display: block; }
.success-msg h3 { font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.success-msg p { font-size: 14px; color: var(--gray); }

/* ── PAGE HERO (inner pages) ── */
.page-hero-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  padding: 200px 48px 80px; text-align: center;
}
.page-hero-inner h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-inner p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-size: 17px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-nav { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 64px 24px; }
  .section-sm { padding: 40px 24px; }
  .stat-strip { gap: 40px; padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dual-cta { grid-template-columns: 1fr; }
  .dual-cta-panel { padding: 60px 32px; }
  .ibare-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-social { display: flex !important; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-linkedin-icon { display: flex !important; width: 36px; height: 36px; }
  .trust-logos { gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-group.full { grid-column: span 1; }
  .ibare-form-wrap { padding: 24px; }
  .page-hero-inner { padding: 120px 24px 60px; }
  .dual-cta-panel { padding: 48px 24px; }
}
