/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: #fff; background: #060614; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ===== TOKENS ===== */
:root {
  --blue: #4f8ef7;
  --blue-bright: #60a5fa;
  --purple: #a78bfa;
  --purple-dark: #7c3aed;
  --pink: #f472b6;
  --green: #34d399;
  --yellow: #fbbf24;
  --dark: #060614;
  --dark-2: #0d0d2b;
  --dark-3: #13133a;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-lg: 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 3px; }

/* ===== BACKGROUND MESH ===== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(79,142,247,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(167,139,250,0.1) 0%, transparent 60%),
    #060614;
  pointer-events: none;
}

/* ===== GRID LINES ===== */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.w-full { width: 100%; }

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-2 {
  background: linear-gradient(135deg, #34d399 0%, #60a5fa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== GLOW EFFECTS ===== */
.glow-blue { box-shadow: 0 0 40px rgba(79,142,247,0.25); }
.glow-purple { box-shadow: 0 0 40px rgba(167,139,250,0.25); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 14px;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, #4f8ef7, #7c3aed);
  color: #fff; box-shadow: 0 4px 24px rgba(79,142,247,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,142,247,0.5); }

.btn-outline {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-green { background: linear-gradient(135deg, #059669, #34d399); box-shadow: 0 4px 24px rgba(52,211,153,0.3); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(52,211,153,0.4); }

/* ===== GLASS CARD ===== */
.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
}
.glass:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,6,20,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; height: 68px; display: flex; align-items: center; gap: 40px; }
.logo { font-size: 24px; font-weight: 900; letter-spacing: -0.5px; }
.logo span { background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; list-style: none; gap: 32px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; gap: 10px; }
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #fff; margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 28px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(6,6,20,0.95); }
.mobile-menu a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 28px 80px; position: relative;
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: drift 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(124,58,237,0.15); top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(79,142,247,0.12); top: 100px; right: -80px; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: rgba(244,114,182,0.1); bottom: 100px; left: 30%; animation-delay: -5s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.3); border-radius: 24px;
  font-size: 13px; font-weight: 600; color: var(--blue-bright);
  margin-bottom: 32px; animation: fadeDown 0.8s ease both;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(1.5)} }

.hero h1 {
  font-size: clamp(44px, 7vw, 88px); font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 24px; animation: fadeUp 0.9s ease 0.1s both;
}

.hero-typewriter {
  display: inline-block; min-width: 3ch;
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  border-right: 3px solid #a78bfa; padding-right: 4px; animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100%{border-color:#a78bfa} 50%{border-color:transparent} }

.hero-sub {
  font-size: clamp(16px, 2.2vw, 21px); color: rgba(255,255,255,0.6);
  max-width: 580px; margin: 0 auto 44px; line-height: 1.6;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; animation: fadeUp 0.9s ease 0.3s both; }

/* Floating job cards */
.floating-cards {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.job-card-float {
  position: absolute; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); border-radius: 12px; padding: 12px 16px;
  font-size: 12px; font-weight: 600; white-space: nowrap; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 8px;
  animation: floatCard linear infinite;
}
.job-card-float .co-logo {
  width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 14px; flex-shrink: 0;
}
.job-card-float .applied-tag { color: var(--green); font-size: 10px; font-weight: 700; }

@keyframes floatCard {
  0% { transform: translateY(100vh) rotate(-2deg); opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { transform: translateY(-200px) rotate(2deg); opacity: 0; }
}

/* Stats bar */
.hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 40px; max-width: 780px; margin: 0 auto 40px;
  backdrop-filter: blur(20px); animation: fadeUp 0.9s ease 0.4s both;
}
.stat { text-align: center; padding: 0 32px; }
.stat-num { display: block; font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.08); }

.hero-brands { display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.3); animation: fadeUp 0.9s ease 0.5s both; }
.hero-brands strong { color: rgba(255,255,255,0.5); font-weight: 600; }

/* Scroll indicator */
.scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 12px; animation: bounce 2s infinite; }
.scroll-hint::after { content: '↓'; font-size: 18px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* Scroll-triggered reveal — content is always visible; animation plays as enhancement */
.reveal { animation: revealUp 0.7s ease both; }
.reveal-left { animation: revealLeft 0.7s ease both; }
.reveal-right { animation: revealRight 0.7s ease both; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes revealRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--purple);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--purple); border-radius: 1px; }
.section-title { font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 60px; }

/* ===== HOW IT WORKS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; position: relative; }
.steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps.steps-4 { grid-template-columns: repeat(2, 1fr); } }
.steps::before {
  content: ''; position: absolute; top: 60px; left: 16.6%; right: 16.6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--blue), transparent);
}
.step {
  padding: 40px 32px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); position: relative; transition: all 0.3s;
  cursor: default;
}
.step:hover { background: rgba(255,255,255,0.07); border-color: rgba(167,139,250,0.3); transform: translateY(-4px); }
.step:hover .step-icon { transform: scale(1.1) rotate(-5deg); }
.step-num {
  font-size: 11px; font-weight: 800; color: var(--purple); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.step-num::after { content: ''; flex: 1; height: 1px; background: rgba(167,139,250,0.2); }
.step-icon { font-size: 40px; margin-bottom: 20px; display: block; transition: transform 0.3s; }
.step h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== LIVE DEMO TICKER ===== */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0; background: rgba(255,255,255,0.02); margin: 0; position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, #060614, transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(-90deg, #060614, transparent); }
.ticker { display: flex; gap: 0; white-space: nowrap; animation: ticker 40s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px; padding: 0 32px;
  font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500;
}
.ticker-item .tick-status { color: var(--green); font-weight: 700; }
.ticker-item .tick-co { color: rgba(255,255,255,0.7); font-weight: 600; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  padding: 32px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); transition: all 0.3s; cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
  background: radial-gradient(circle at 50% 0%, rgba(167,139,250,0.08), transparent 70%);
}
.service-card:hover { border-color: rgba(167,139,250,0.25); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon { font-size: 36px; margin-bottom: 20px; display: block; transition: transform 0.3s; }
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.service-tag {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  background: rgba(79,142,247,0.12); color: var(--blue-bright); border: 1px solid rgba(79,142,247,0.2);
}

/* ===== AI TOOLS PROMO ===== */
.tools-promo {
  background: linear-gradient(135deg, rgba(79,142,247,0.08), rgba(167,139,250,0.08));
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.tools-promo::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.tools-promo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tools-promo h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; margin-bottom: 16px; }
.tools-promo p { color: rgba(255,255,255,0.5); margin-bottom: 24px; font-size: 16px; }
.tools-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.tools-list li { font-size: 15px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; }
.tools-list li::before { content: ''; width: 20px; height: 20px; border-radius: 6px; background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Tool preview mock */
.tool-preview {
  background: rgba(13,13,43,0.8); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
.tool-preview-header {
  display: flex; align-items: center; gap: 6px; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ef4444; } .dot.yellow { background: #f59e0b; } .dot.green { background: #22c55e; }
.tool-preview-body { padding: 28px; display: flex; align-items: center; gap: 28px; }
.score-ring { position: relative; flex-shrink: 0; }
.score-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.score-num { font-size: 32px; font-weight: 900; color: var(--blue-bright); }
.score-pct { font-size: 14px; color: rgba(255,255,255,0.4); }
.tool-insights { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.insight { font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 8px; }
.insight.green { background: rgba(52,211,153,0.1); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.insight.yellow { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.insight.red { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }
.tool-preview-btn {
  display: block; text-align: center; padding: 16px; background: linear-gradient(135deg, #4f8ef7, #7c3aed);
  color: #fff; font-weight: 700; font-size: 14px; transition: opacity 0.2s;
}
.tool-preview-btn:hover { opacity: 0.9; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 60px auto 0; }
.pricing-grid.grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 1180px; gap: 16px; }
@media (max-width: 1040px) { .pricing-grid.grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 720px; } }
.pricing-grid.grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 660px; }
/* Compact 5-across so all tiers are visible without scrolling */
.pricing-grid.grid-5 { grid-template-columns: repeat(5, 1fr); max-width: 1260px; gap: 12px; }
@media (max-width: 1120px) { .pricing-grid.grid-5 { grid-template-columns: repeat(3, 1fr); max-width: 800px; } }
@media (max-width: 720px) { .pricing-grid.grid-5 { grid-template-columns: 1fr; max-width: 380px; } }
.pricing-compact .pricing-card { padding: 20px 16px; border-radius: 16px; }
.pricing-compact .plan-name { font-size: 12px; letter-spacing: 1px; margin-bottom: 6px; min-height: 28px; }
.pricing-compact .plan-price { font-size: 32px; letter-spacing: -1px; margin-bottom: 2px; }
.pricing-compact .plan-price span { font-size: 12px; }
.pricing-compact .plan-inr { font-size: 11px; margin-bottom: 4px; }
.pricing-compact .plan-desc { font-size: 11px; margin-bottom: 12px; padding-bottom: 12px; }
.pricing-compact .plan-features { gap: 8px; margin-bottom: 16px; }
.pricing-compact .plan-features li { font-size: 12px; gap: 7px; align-items: flex-start; line-height: 1.35; }
.pricing-compact .plan-features li::before { font-size: 10px; width: 15px; height: 15px; margin-top: 1px; }
.pricing-compact .btn { padding: 10px; font-size: 12.5px; }
.plan-tag { display: inline-block; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 6px; margin-bottom: 10px; }
.plan-tag.ai { background: rgba(96,165,250,0.14); color: #93c5fd; }
.plan-tag.hand { background: rgba(167,139,250,0.14); color: #c4b5fd; }
.pricing-group-label { text-align: center; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #a78bfa; margin: 56px auto 0; }
.pricing-group-sub { text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); margin: 6px auto 0; max-width: 460px; }
.pricing-card {
  border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 36px;
  position: relative; transition: all 0.3s; background: rgba(255,255,255,0.03);
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(167,139,250,0.3); box-shadow: 0 32px 80px rgba(0,0,0,0.4); }
.pricing-card.popular {
  border-color: rgba(79,142,247,0.4); background: rgba(79,142,247,0.06);
  box-shadow: 0 0 0 1px rgba(79,142,247,0.2), 0 20px 60px rgba(79,142,247,0.15);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff;
  font-size: 11px; font-weight: 800; padding: 5px 18px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.5px;
}
.plan-name { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.plan-price { font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 6px; letter-spacing: -2px; }
.plan-price span { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0; }
.plan-inr { font-size: 13px; font-weight: 600; color: rgba(167,139,250,0.75); margin-bottom: 8px; }
.plan-desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 10px; }
.plan-features li::before { content: '✓'; font-weight: 900; color: var(--green); font-size: 12px; width: 18px; height: 18px; background: rgba(52,211,153,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-features li.dim { color: rgba(255,255,255,0.25); }
.plan-features li.dim::before { content: '×'; color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.onetime-box {
  margin-top: 48px; text-align: center; padding: 36px;
  border: 1px dashed rgba(255,255,255,0.12); border-radius: 20px; background: rgba(255,255,255,0.02);
}
.onetime-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.onetime-box p { color: rgba(255,255,255,0.4); margin-bottom: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  padding: 32px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); transition: all 0.3s; position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: -10px; left: 20px; font-size: 120px; font-family: Georgia, serif;
  color: rgba(167,139,250,0.06); line-height: 1; pointer-events: none;
}
.testimonial-card:hover { border-color: rgba(167,139,250,0.25); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== CONTACT ===== */
.cta-section { background: rgba(13,13,43,0.5); border-top: 1px solid rgba(255,255,255,0.06); }
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.cta-inner > p { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.contact-form { text-align: left; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px;
  background: rgba(255,255,255,0.05); color: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); background: rgba(79,142,247,0.06); }
.contact-form select option { background: #0d0d2b; }
.form-success { margin-top: 16px; padding: 20px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #34d399; border-radius: 10px; font-size: 15px; font-weight: 600; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #030310; border-top: 1px solid rgba(255,255,255,0.05); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; padding-bottom: 48px; }
.footer-brand p { font-size: 14px; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 280px; }
.social-links { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.social-links a {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.08); padding: 7px 14px; border-radius: 8px; transition: all 0.2s;
}
.social-links a:hover { color: #fff; border-color: var(--purple); background: rgba(167,139,250,0.08); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-links h4 { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: 12px; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 28px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom p + p { margin-top: 4px; }

/* ===== TOOLS PAGE ===== */
.tools-hero { padding: 64px 28px 48px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.01); }
.tools-hero h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -1px; margin-bottom: 14px; }
.tools-hero p { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 540px; margin: 0 auto; }
.tools-nav {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(6,6,20,0.8);
  backdrop-filter: blur(20px); position: sticky; top: 68px; z-index: 50;
}
.tool-tab {
  padding: 9px 22px; border-radius: 24px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.tool-tab.active, .tool-tab:hover { background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(79,142,247,0.35); }
.tool-section { display: none; padding: 48px 28px; max-width: 900px; margin: 0 auto; }
.tool-section.active { display: block; animation: fadeUp 0.4s ease; }
.tool-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 40px; }
.tool-card h2 { font-size: 26px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.tool-card .tool-desc { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.field-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: block; }
.tool-textarea, .tool-input, .tool-select {
  width: 100%; padding: 14px 16px; border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px;
  background: rgba(255,255,255,0.05); color: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s;
}
.tool-textarea { resize: vertical; line-height: 1.6; }
.tool-textarea::placeholder, .tool-input::placeholder { color: rgba(255,255,255,0.3); }
.tool-textarea:focus, .tool-input:focus, .tool-select:focus { border-color: var(--blue); background: rgba(79,142,247,0.06); }
.tool-select option { background: #0d0d2b; }
.form-group { margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tool-btn {
  padding: 14px 28px; background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 20px rgba(79,142,247,0.35);
}
.tool-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,142,247,0.45); }
.tool-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.tool-btn.loading span::after { content: ''; display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; margin-left: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

.result-box { margin-top: 32px; padding: 28px; background: rgba(52,211,153,0.04); border: 1px solid rgba(52,211,153,0.15); border-radius: 16px; display: none; animation: fadeUp 0.4s ease; }
.result-box.show { display: block; }
.result-box h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; color: var(--green); }
.result-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.85; white-space: pre-wrap; }
.copy-btn {
  margin-top: 16px; padding: 9px 18px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.copy-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.api-note {
  padding: 12px 16px; background: rgba(251,191,36,0.07); border: 1px solid rgba(251,191,36,0.2);
  border-radius: 10px; font-size: 13px; color: rgba(251,191,36,0.9); margin-bottom: 24px;
}
.api-note a { color: #fbbf24; font-weight: 700; text-decoration: underline; }

/* ATS Score */
.ats-score-wrapper { display: flex; gap: 36px; align-items: flex-start; flex-wrap: wrap; }
.ats-gauge { text-align: center; flex-shrink: 0; }
.ats-score-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); margin-top: 8px; }
.ats-details { flex: 1; min-width: 240px; }
.ats-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; color: rgba(255,255,255,0.7); }
.ats-row:last-child { border-bottom: none; }
.ats-pill { padding: 3px 10px; border-radius: 10px; font-size: 11px; font-weight: 800; }
.ats-pill.good { background: rgba(52,211,153,0.12); color: #34d399; }
.ats-pill.warn { background: rgba(251,191,36,0.12); color: #fbbf24; }
.ats-pill.bad { background: rgba(248,113,113,0.12); color: #f87171; }
.keywords-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.keyword-tag { padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.keyword-tag.found { background: rgba(52,211,153,0.1); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.keyword-tag.missing { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }

/* Tracker table */
#tracker-table th, #tracker-table td { color: rgba(255,255,255,0.8); }
#tracker-table thead tr { background: rgba(255,255,255,0.04); }
#tracker-table th { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
#tracker-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
#tracker-table tbody tr:hover { background: rgba(255,255,255,0.02); }
#tracker-table select { background: rgba(255,255,255,0.05); color: #fff; }

/* API modal */
#api-modal > div { background: rgba(13,13,43,0.95); border: 1px solid rgba(255,255,255,0.12); }
#api-modal h3 { color: #fff; }
#api-modal p { color: rgba(255,255,255,0.5); }

/* ===== HERO PRICE CARD ===== */
.hero-price-card {
  position: relative; border-radius: 28px; padding: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(167,139,250,0.3);
  box-shadow: 0 0 0 1px rgba(79,142,247,0.1), 0 40px 100px rgba(79,142,247,0.15);
  overflow: hidden; margin-top: 48px;
}
.hpc-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,142,247,0.12), transparent 70%);
  pointer-events: none;
}
.hpc-top { text-align: center; margin-bottom: 40px; }
.hpc-badge {
  display: inline-block; padding: 6px 18px;
  background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.3);
  border-radius: 20px; font-size: 12px; font-weight: 700; color: var(--purple);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}
.hpc-price-row { display: flex; align-items: flex-start; justify-content: center; gap: 10px; margin-bottom: 14px; }
.hpc-price {
  font-size: 96px; font-weight: 900; line-height: 1; letter-spacing: -4px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hpc-per { display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 12px; }
.hpc-per span:first-child { font-size: 22px; font-weight: 800; color: rgba(255,255,255,0.5); }
.hpc-per span:last-child { font-size: 15px; color: rgba(255,255,255,0.3); font-weight: 500; }
.hpc-tagline { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.7); }

.hpc-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.hpc-col { display: flex; flex-direction: column; gap: 12px; }
.hpc-feat {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
  transition: all 0.2s;
}
.hpc-feat:hover { background: rgba(255,255,255,0.06); border-color: rgba(167,139,250,0.2); }
.hfc-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.hpc-feat strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.hpc-feat span { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

.hpc-cta { text-align: center; }
.hpc-trust { display: flex; gap: 24px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.hpc-trust span { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* Compare strip */
.compare-strip { margin-top: 40px; padding: 32px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; text-align: center; }
.cs-label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.cs-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cs-item { padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; }
.cs-item.bad { background: rgba(248,113,113,0.07); border: 1px solid rgba(248,113,113,0.15); color: rgba(248,113,113,0.8); }
.cs-item.good { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2); color: #34d399; }

/* ===== RESUME AUDIT UI ===== */
.audit-step {
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px;
}
.step-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.step-badge {
  width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#4f8ef7,#7c3aed);
  color: #fff; font-size: 14px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-title { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.step-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

/* Upload zone */
.upload-zone {
  border: 2px dashed rgba(255,255,255,0.15); border-radius: 16px; padding: 48px 24px;
  text-align: center; cursor: pointer; transition: all 0.2s; background: rgba(255,255,255,0.02);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--blue); background: rgba(79,142,247,0.06); transform: scale(1.01);
}
.upload-icon { font-size: 48px; margin-bottom: 12px; }
.upload-text { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.upload-sub { font-size: 13px; color: rgba(255,255,255,0.35); }

/* File preview */
.file-preview { margin-top: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.file-preview-inner { display: flex; align-items: center; gap: 14px; padding: 16px 18px; }
.file-icon { font-size: 28px; }
.file-info { flex: 1; }
.file-name { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.file-size { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.file-status { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.parsing { background: var(--yellow); animation: pulse-dot 1s infinite; }
.status-dot.done { background: var(--green); }
.status-dot.error { background: #f87171; }
.file-remove { background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 16px; padding: 4px 8px; border-radius: 6px; transition: all 0.15s; }
.file-remove:hover { color: #f87171; background: rgba(248,113,113,0.1); }
.extracted-preview { padding: 12px 18px; border-top: 1px solid rgba(255,255,255,0.06); }
.ep-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.35); margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; }
.ep-toggle { background: none; border: none; color: var(--blue-bright); font-size: 12px; font-weight: 600; cursor: pointer; }
.ep-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; max-height: 80px; overflow: hidden; font-family: monospace; transition: max-height 0.3s; }
.ep-text.expanded { max-height: 300px; overflow-y: auto; }

/* Paste toggle */
.paste-toggle { margin-top: 14px; }
.paste-toggle-btn { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 600; cursor: pointer; padding: 6px 0; transition: color 0.15s; }
.paste-toggle-btn:hover { color: rgba(255,255,255,0.7); }

/* Analysis options */
.analysis-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 4px; }
.analysis-opt {
  padding: 18px 16px; border: 1.5px solid rgba(255,255,255,0.1); border-radius: 12px;
  cursor: pointer; transition: all 0.2s; background: rgba(255,255,255,0.03); text-align: center;
}
.analysis-opt.active { border-color: var(--blue); background: rgba(79,142,247,0.08); }
.analysis-opt:hover:not(.active) { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.opt-icon { font-size: 24px; margin-bottom: 8px; }
.opt-label { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.opt-desc { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Result sections */
.result-section {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px; margin-bottom: 16px; animation: fadeUp 0.4s ease both;
}
.result-section-header {
  font-size: 16px; font-weight: 800; margin-bottom: 20px; color: #fff;
  display: flex; align-items: center; gap: 8px;
}

/* Score hero */
.score-hero { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.score-circle-wrap { position: relative; flex-shrink: 0; }
.score-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  text-align: center;
}
.score-big { font-size: 42px; font-weight: 900; line-height: 1; }
.score-slash { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.score-grade { font-size: 12px; font-weight: 800; margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
.score-breakdown { flex: 1; min-width: 240px; }
.sb-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: rgba(255,255,255,0.7); }
.sb-row:last-child { border-bottom: none; }
.sb-pill { padding: 3px 10px; border-radius: 8px; font-size: 11px; font-weight: 800; }
.sb-pill.good { background: rgba(52,211,153,0.12); color: #34d399; }
.sb-pill.warn { background: rgba(251,191,36,0.12); color: #fbbf24; }
.sb-pill.bad { background: rgba(248,113,113,0.12); color: #f87171; }

/* Mistakes & strengths */
.mistake-item, .strength-item, .suggestion-item {
  display: flex; gap: 12px; padding: 14px 16px; border-radius: 10px; margin-bottom: 10px; font-size: 14px; line-height: 1.5;
}
.mistake-item { background: rgba(248,113,113,0.07); border: 1px solid rgba(248,113,113,0.15); color: rgba(255,255,255,0.8); }
.mistake-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.mistake-text strong { display: block; color: #f87171; font-size: 13px; font-weight: 800; margin-bottom: 3px; }
.strength-item { background: rgba(52,211,153,0.07); border: 1px solid rgba(52,211,153,0.15); color: rgba(255,255,255,0.8); }
.suggestion-item { background: rgba(79,142,247,0.07); border: 1px solid rgba(79,142,247,0.15); color: rgba(255,255,255,0.8); }
.suggestion-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(79,142,247,0.2); color: var(--blue-bright); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Keywords */
.kw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kw-col-title { font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.found-title { color: #34d399; }
.missing-title { color: #f87171; }

/* Rewrite box */
.rewrite-box {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  padding: 24px; max-height: 500px; overflow-y: auto; font-family: 'Courier New', monospace;
}
.rewrite-box .result-text { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.8); }

/* Audit CTA */
.audit-cta {
  text-align: center; padding: 40px; background: linear-gradient(135deg, rgba(79,142,247,0.08), rgba(167,139,250,0.08));
  border: 1px solid rgba(167,139,250,0.2); border-radius: 20px; margin-top: 16px;
}
.audit-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.audit-cta p { color: rgba(255,255,255,0.5); margin-bottom: 24px; }

/* Progress bar during analysis */
.progress-bar-wrap { margin: 20px 0; }
.progress-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: flex; justify-content: space-between; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #4f8ef7, #a78bfa); border-radius: 3px; transition: width 0.4s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .tools-promo-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid.grid-2, .pricing-grid.grid-4 { grid-template-columns: 1fr; max-width: 420px; margin: 48px auto 0; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .form-row, .form-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 20px 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .ats-score-wrapper { flex-direction: column; }
  .floating-cards { display: none; }
  .credibility-grid { grid-template-columns: repeat(2,1fr) !important; }
  .jobboard-card { grid-template-columns: 1fr !important; }
  .community-layout { grid-template-columns: 1fr !important; }
}

/* ===== PAGE HERO (Job Board / Community / Job Hunt) ===== */
.page-hero { padding: 80px 28px 56px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.01); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 54px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto 28px; }
.page-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.page-badge { font-size: 12px; font-weight: 700; padding: 7px 16px; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

/* ===== CREDIBILITY / R&D STATS STRIP ===== */
.credibility-strip { padding: 56px 0; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.015); }
.credibility-label { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 32px; }
.credibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.credibility-item { text-align: center; }
.credibility-num { font-size: 30px; font-weight: 900; background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 6px; }
.credibility-sub { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ===== JOB BOARD ===== */
.jobboard-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.jobboard-filter { padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1.5px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s; }
.jobboard-filter.active { background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff; border-color: transparent; }
.jobboard-list { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 40px auto; padding: 0 28px; }
.jobboard-card {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: center;
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 22px 24px;
  transition: all 0.25s;
}
.jobboard-card:hover { border-color: rgba(167,139,250,0.3); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.jb-logo { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; background: rgba(255,255,255,0.06); }
.jb-role { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.jb-company { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.jb-blurb { font-size: 12px; color: #a78bfa; margin-bottom: 10px; font-style: italic; }
.jb-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.jb-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 8px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.jb-tag.salary { background: rgba(52,211,153,0.1); color: #34d399; }
.jb-tag.sponsor { background: rgba(167,139,250,0.1); color: #a78bfa; }
.jb-right { text-align: right; flex-shrink: 0; }
.jb-posted { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.jb-apply { display: inline-block; padding: 9px 18px; border-radius: 10px; font-size: 13px; font-weight: 700; background: rgba(79,142,247,0.12); color: #60a5fa; border: 1px solid rgba(79,142,247,0.3); transition: all 0.2s; }
.jb-apply:hover { background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff; border-color: transparent; }
.jobboard-cta { text-align: center; padding: 48px 28px 80px; }

/* ===== JOB HUNT PROGRAM TIERS ===== */
.jobhunt-stats-box { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin: 40px 0 60px; }
.jh-stat { text-align: center; }
.jh-stat-num { font-size: 28px; font-weight: 900; color: #34d399; }
.jh-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ===== COMMUNITY PAGE ===== */
.community-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; max-width: 1040px; margin: 56px auto 0; padding: 0 28px 100px; align-items: start; }
.community-feature { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.community-feature:last-child { border-bottom: none; }
.cf-icon { font-size: 28px; flex-shrink: 0; }
.cf-title { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.cf-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.community-price-card { position: sticky; top: 100px; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 18px; margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.6); }
.toggle-switch { width: 38px; height: 22px; border-radius: 20px; background: rgba(255,255,255,0.15); position: relative; cursor: pointer; flex-shrink: 0; }
.toggle-switch.on { background: linear-gradient(135deg, #4f8ef7, #7c3aed); }
.toggle-switch::after { content: ''; width: 16px; height: 16px; border-radius: 50%; background: #fff; position: absolute; top: 3px; left: 3px; transition: left 0.2s; }
.toggle-switch.on::after { left: 19px; }
.trust-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== FREE AI RESUME SCORE TOOL ===== */
.score-tool { max-width: 620px; margin: 40px auto 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 32px; backdrop-filter: blur(20px); }
.score-drop { border: 2px dashed rgba(167,139,250,0.35); border-radius: 16px; padding: 40px 20px; text-align: center; cursor: pointer; transition: all 0.2s; background: rgba(167,139,250,0.04); }
.score-drop:hover, .score-drop.drag { border-color: #a78bfa; background: rgba(167,139,250,0.1); }
.score-drop-icon { font-size: 40px; margin-bottom: 12px; }
.score-drop-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.score-drop-sub { font-size: 12px; color: rgba(255,255,255,0.4); }
.score-filename { margin: 14px 0; padding: 10px 14px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); border-radius: 10px; font-size: 13px; font-weight: 600; color: #34d399; text-align: center; }
.score-tool .btn-lg { margin-top: 18px; }
.score-privacy { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 14px; line-height: 1.5; }

.score-loading { text-align: center; padding: 40px 20px; }
.score-spinner { width: 48px; height: 48px; margin: 0 auto 20px; border: 4px solid rgba(167,139,250,0.2); border-top-color: #a78bfa; border-radius: 50%; animation: score-spin 0.8s linear infinite; }
@keyframes score-spin { to { transform: rotate(360deg); } }
.score-loading-text { font-size: 14px; color: rgba(255,255,255,0.6); }

.score-result { text-align: center; }
.score-ring-wrap { position: relative; width: 160px; height: 160px; margin: 0 auto 8px; }
.score-ring { width: 160px; height: 160px; }
.score-ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 10; }
.score-ring-fg { fill: none; stroke: url(#scoreRingGrad); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1.4s cubic-bezier(0.16,1,0.3,1); }
.score-ring-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring-num span { font-size: 44px; font-weight: 900; line-height: 1; background: linear-gradient(135deg,#60a5fa,#a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.score-ring-num small { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.score-verdict { font-size: 18px; font-weight: 800; margin: 10px 0 24px; }
.score-breakdown { display: grid; gap: 12px; text-align: left; margin-bottom: 24px; }
.score-cat { }
.score-cat-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
.score-cat-name { font-weight: 600; color: rgba(255,255,255,0.75); }
.score-cat-val { font-weight: 800; color: #a78bfa; }
.score-cat-bar { height: 8px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.score-cat-fill { height: 8px; border-radius: 99px; background: linear-gradient(90deg,#4f8ef7,#a78bfa); width: 0; transition: width 1s ease; }
.score-tips { text-align: left; background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.2); border-radius: 14px; padding: 16px 18px; margin-bottom: 24px; }
.score-tips h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #fbbf24; margin-bottom: 10px; }
.score-tips li { font-size: 13px; color: rgba(255,255,255,0.75); margin-left: 18px; padding: 3px 0; line-height: 1.5; }
.score-cta { background: linear-gradient(135deg,rgba(124,58,237,0.15),rgba(79,142,247,0.1)); border: 1px solid rgba(124,58,237,0.3); border-radius: 16px; padding: 24px; margin-bottom: 16px; }
.score-cta-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.score-cta-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.score-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.score-again { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 13px; cursor: pointer; text-decoration: underline; }
.score-again:hover { color: #fff; }
.score-error { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); border-radius: 12px; padding: 16px; font-size: 13px; color: #f87171; text-align: center; }
@media (max-width: 560px) { .score-tool { padding: 22px; } .score-cta-btns .btn { width: 100%; } }

/* ===== SCORE SECTION ANIMATED BACKGROUND ===== */
.score-section { position: relative; overflow: hidden; padding-top: 80px; padding-bottom: 80px; }
.score-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.score-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.score-orb-1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(124,58,237,0.55), transparent 70%); top: -120px; left: -80px; animation: score-float-1 16s ease-in-out infinite; }
.score-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(79,142,247,0.5), transparent 70%); bottom: -140px; right: -60px; animation: score-float-2 20s ease-in-out infinite; }
.score-orb-3 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(244,114,182,0.35), transparent 70%); top: 40%; left: 55%; animation: score-float-3 24s ease-in-out infinite; }
@keyframes score-float-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,40px) scale(1.15); } }
@keyframes score-float-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,-40px) scale(1.1); } }
@keyframes score-float-3 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-40px,30px) scale(1.2); } 66% { transform: translate(30px,-20px) scale(0.9); } }
.score-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 75%); animation: score-grid-drift 30s linear infinite; }
@keyframes score-grid-drift { from { background-position: 0 0; } to { background-position: 48px 48px; } }
.score-section .score-tool { position: relative; z-index: 2; box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
@media (prefers-reduced-motion: reduce) { .score-orb, .score-grid { animation: none; } }

/* ===== SCAN / "AI READING" LOADING EXPERIENCE ===== */
.score-loading { padding: 8px 0 4px; }
.scan-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; text-align: left; }
.scan-head .score-spinner { width: 34px; height: 34px; margin: 0; border-width: 3px; flex-shrink: 0; }
.scan-title { font-size: 15px; font-weight: 800; }
.scan-status { font-size: 12px; color: #a78bfa; margin-top: 2px; min-height: 16px; transition: opacity 0.3s; }
.scan-box { position: relative; height: 190px; border: 1px solid rgba(167,139,250,0.25); border-radius: 12px; background: rgba(0,0,0,0.35); overflow: hidden; text-align: left; }
.scan-scroll { position: absolute; inset: 12px 14px; font-family: "SF Mono", Menlo, Consolas, monospace; font-size: 11px; line-height: 1.7; color: rgba(255,255,255,0.55); white-space: pre-wrap; word-break: break-word; overflow: hidden; }
.scan-scroll .hl { color: #34d399; background: rgba(52,211,153,0.12); border-radius: 3px; padding: 0 3px; }
.scan-line { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #a78bfa 30%, #60a5fa 70%, transparent); box-shadow: 0 0 14px rgba(167,139,250,0.8); animation: scan-sweep 2.6s ease-in-out infinite; }
@keyframes scan-sweep { 0%,100% { top: 6%; } 50% { top: 92%; } }
.scan-fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(6,6,20,0.7) 0%, transparent 18%, transparent 78%, rgba(6,6,20,0.85) 100%); }
.scan-progress { height: 8px; background: rgba(255,255,255,0.08); border-radius: 99px; margin-top: 16px; overflow: hidden; }
.scan-progress-fill { height: 8px; width: 0%; border-radius: 99px; background: linear-gradient(90deg, #4f8ef7, #a78bfa); transition: width 0.5s ease; }
.scan-meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: rgba(255,255,255,0.35); }
.scan-meta span:first-child { color: #a78bfa; font-weight: 700; }
@media (prefers-reduced-motion: reduce) { .scan-line { animation: none; top: 50%; } }

/* ===== SAMPLE RESUMES SHOWCASE (3 fields) ===== */
.samples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 900px) { .samples-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.sample-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 18px; transition: transform 0.25s, border-color 0.25s; }
.sample-card:hover { transform: translateY(-6px); border-color: rgba(167,139,250,0.4); }
.sample-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sample-field { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 800; }
.sample-field .sf-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: rgba(124,58,237,0.18); border: 1px solid rgba(124,58,237,0.35); }
.sample-badge { font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 99px; background: rgba(52,211,153,0.12); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.paper { position: relative; background: #f7f7f5; color: #1a1a1a; border-radius: 10px; padding: 18px 18px 8px; height: 360px; overflow: hidden; box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.paper::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(180deg, transparent, #f7f7f5 85%); border-radius: 0 0 10px 10px; }
.paper h5 { font-size: 14px; font-weight: 900; letter-spacing: -0.2px; color: #111; }
.paper .p-title { font-size: 10.5px; font-weight: 700; color: #6d28d9; margin-bottom: 2px; }
.paper .p-contact { font-size: 8.5px; color: #666; margin-bottom: 10px; border-bottom: 1.5px solid #111; padding-bottom: 8px; }
.paper h6 { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: #111; margin: 10px 0 4px; }
.paper p, .paper li { font-size: 8.8px; line-height: 1.55; color: #333; }
.paper ul { margin: 2px 0 6px 14px; }
.paper .p-job { font-size: 9.5px; font-weight: 800; color: #111; margin-top: 6px; }
.paper .p-co { font-size: 8.5px; color: #6d28d9; font-weight: 700; }
.paper .p-skills span { display: inline-block; font-size: 8px; font-weight: 700; background: #ece9f8; color: #5b21b6; border-radius: 4px; padding: 2px 6px; margin: 2px 3px 0 0; }
.sample-cta { text-align: center; margin-top: 36px; }

/* ===== AUTH (login / signup) ===== */
.auth-wrap { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { width: 100%; max-width: 420px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 28px; backdrop-filter: blur(20px); }
.auth-tabs { display: flex; gap: 6px; background: rgba(255,255,255,0.05); border-radius: 12px; padding: 5px; margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 10px; border: none; background: transparent; color: rgba(255,255,255,0.55); font-weight: 700; font-size: 14px; border-radius: 9px; cursor: pointer; transition: all 0.2s; }
.auth-tab.active { background: linear-gradient(135deg,#4f8ef7,#7c3aed); color: #fff; }
.auth-form h1 { font-size: 24px; font-weight: 900; margin-bottom: 6px; }
.auth-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.auth-form input { width: 100%; padding: 13px 16px; margin-bottom: 12px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 11px; color: #fff; font-size: 14px; font-family: inherit; }
.auth-form input:focus { outline: none; border-color: #a78bfa; background: rgba(255,255,255,0.08); }
.auth-form input::placeholder { color: rgba(255,255,255,0.4); }
.auth-error { color: #f87171; font-size: 13px; min-height: 18px; margin-bottom: 8px; }
.auth-fine { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; }
.auth-mode { text-align: center; font-size: 11px; color: #fbbf24; margin-top: 18px; }

/* ===== MEMBER AREA ===== */
.member-wrap { max-width: 1000px; margin: 0 auto; padding: 48px 24px 80px; transition: opacity 0.4s; }
.member-hero { margin-bottom: 36px; }
.member-hero h1 { font-size: 34px; font-weight: 900; margin: 8px 0; }
.member-hero p { color: rgba(255,255,255,0.55); }
.member-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 36px; }
@media (max-width: 640px) { .member-grid { grid-template-columns: 1fr; } }
.member-tile { display: block; position: relative; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px; text-decoration: none; color: inherit; transition: transform 0.2s, border-color 0.2s; }
a.member-tile:hover { transform: translateY(-4px); border-color: rgba(167,139,250,0.4); }
.mt-icon { font-size: 28px; margin-bottom: 10px; }
.mt-title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.mt-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.mt-tag { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 99px; background: rgba(52,211,153,0.15); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.member-account { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; max-width: 460px; }
.member-account h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.member-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
.member-row span:first-child { color: rgba(255,255,255,0.5); }
.member-row span:last-child { font-weight: 600; }

/* ===== JOB SORT DROPDOWN ===== */
.job-sort { padding: 8px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1.5px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: #fff; cursor: pointer; font-family: inherit; }
.job-sort:focus { outline: none; border-color: #a78bfa; }
.job-sort option { background: #0d0d2b; color: #fff; }

/* ===== LEGAL PAGES ===== */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 60px 28px 90px; }
.legal-wrap h1 { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.legal-intro { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.legal-wrap h2 { font-size: 20px; font-weight: 800; margin: 32px 0 12px; }
.legal-wrap p, .legal-wrap li { color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.75; }
.legal-wrap ul { margin: 8px 0 8px 22px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: #a78bfa; }
.legal-note { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.25); border-radius: 12px; padding: 16px 18px; font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 40px; line-height: 1.6; }

/* ===== JOB BOARD SEARCH BAR ===== */
.jobboard-searchbar { position: relative; max-width: 640px; margin: 8px auto 20px; padding: 0 28px; }
.jobboard-searchbar input { width: 100%; padding: 15px 44px 15px 18px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: #fff; font-size: 15px; font-family: inherit; }
.jobboard-searchbar input:focus { outline: none; border-color: #a78bfa; background: rgba(255,255,255,0.08); }
.jobboard-searchbar input::placeholder { color: rgba(255,255,255,0.4); }
.jobboard-searchbar button { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); display: none; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; border: none; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); cursor: pointer; font-size: 12px; }
.jobboard-searchbar button:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ===== FAQ PAGE ===== */
.faq-wrap { max-width: 780px; margin: 0 auto; padding: 60px 28px 90px; }
.faq-item { border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgba(255,255,255,0.03); transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(167,139,250,0.4); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 15px; }
.faq-q .faq-icon { flex-shrink: 0; font-size: 20px; color: #a78bfa; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 20px 18px; color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }
.faq-a a { color: #a78bfa; }
.faq-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); font-weight: 800; margin: 32px 0 12px; }

/* ===== ABOUT PAGE ===== */
.about-wrap { max-width: 860px; margin: 0 auto; padding: 60px 28px 90px; }
.about-hero { text-align: center; margin-bottom: 48px; }
.about-hero h1 { font-size: 40px; font-weight: 900; margin: 10px 0; }
.about-hero p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 40px 0; }
@media (max-width: 640px) { .about-values { grid-template-columns: 1fr; } }
.about-val { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px; }
.about-val .av-icon { font-size: 28px; margin-bottom: 10px; }
.about-val h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.about-val p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.about-section { margin: 36px 0; }
.about-section h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.about-section p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; }
.about-cta { text-align: center; background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(79,142,247,0.1)); border: 1px solid rgba(124,58,237,0.3); border-radius: 20px; padding: 40px 28px; margin-top: 48px; }
.about-cta h2 { font-size: 26px; font-weight: 900; margin-bottom: 10px; }
.about-cta p { color: rgba(255,255,255,0.6); margin-bottom: 22px; }

/* ===== SOCIAL LOGIN BUTTONS ===== */
.social-auth { margin-bottom: 4px; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; margin-bottom: 10px; border-radius: 11px; border: 1.5px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: #fff; font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all 0.2s; }
.social-btn:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.3); }
.social-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0 6px; color: rgba(255,255,255,0.35); font-size: 12px; }
.social-divider::before, .social-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

/* ===== TAILOR RESUME BUTTON (on job cards) ===== */
.jb-tailor { display: inline-block; margin-top: 8px; padding: 8px 14px; border-radius: 10px; font-size: 12px; font-weight: 700; border: 1px solid rgba(167,139,250,0.4); background: rgba(167,139,250,0.12); color: #c4b5fd; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.jb-tailor:hover { background: linear-gradient(135deg,#7c3aed,#a78bfa); color: #fff; border-color: transparent; }

/* ===== TAILOR MODAL ===== */
.tailor-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(6,6,20,0.85); backdrop-filter: blur(6px); display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.tailor-box { position: relative; width: 100%; max-width: 560px; background: #0d0d2b; border: 1px solid rgba(255,255,255,0.12); border-radius: 22px; padding: 30px; margin: auto; }
.tailor-close { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 14px; cursor: pointer; }
.tailor-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.tailor-head { text-align: center; margin-bottom: 22px; }
.tailor-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; padding: 5px 12px; border-radius: 99px; background: rgba(167,139,250,0.15); color: #a78bfa; border: 1px solid rgba(167,139,250,0.3); margin-bottom: 14px; }
.tailor-head h2 { font-size: 24px; font-weight: 900; line-height: 1.25; margin-bottom: 8px; }
.tailor-head p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.tailor-drop { border: 2px dashed rgba(167,139,250,0.35); border-radius: 14px; padding: 30px 18px; text-align: center; cursor: pointer; background: rgba(167,139,250,0.04); transition: all 0.2s; }
.tailor-drop:hover, .tailor-drop.drag { border-color: #a78bfa; background: rgba(167,139,250,0.1); }
.tailor-drop-icon { font-size: 34px; margin-bottom: 8px; }
.tailor-drop-title { font-size: 14px; font-weight: 700; }
.tailor-drop-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.tailor-filename { margin: 14px 0; padding: 10px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); border-radius: 10px; font-size: 13px; font-weight: 600; color: #34d399; text-align: center; }
.tailor-box .btn-lg { margin-top: 16px; }
.tailor-privacy { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; }
.tailor-error { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); border-radius: 10px; padding: 12px; font-size: 13px; color: #f87171; text-align: center; margin-top: 12px; }
.tailor-section { margin-bottom: 18px; }
.tailor-section h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #a78bfa; margin-bottom: 8px; }
.tailor-section p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.tailor-section ul { margin-left: 18px; }
.tailor-section li { font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 6px; }
.tailor-kw { display: flex; flex-wrap: wrap; gap: 6px; }
.tailor-kw span { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 8px; background: rgba(96,165,250,0.12); color: #60a5fa; border: 1px solid rgba(96,165,250,0.25); }
.tailor-cta { background: linear-gradient(135deg,rgba(124,58,237,0.15),rgba(79,142,247,0.1)); border: 1px solid rgba(124,58,237,0.3); border-radius: 16px; padding: 22px; margin-top: 24px; text-align: center; }
.tailor-cta-title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.tailor-cta p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.tailor-cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== JOB BOARD — CARD GRID (drivetube-style) ===== */
.jobboard-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1180px; margin: 32px auto; padding: 0 28px; }
@media (max-width: 1000px) { .jobboard-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .jobboard-list { grid-template-columns: 1fr; max-width: 460px; } }

.jobboard-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 18px; padding: 20px; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.jobboard-card:hover { transform: translateY(-4px); border-color: rgba(167,139,250,0.35); box-shadow: 0 18px 44px rgba(0,0,0,0.35); }

.jbc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.jbc-logo { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(79,142,247,0.2)); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: #fff; flex-shrink: 0; }
.jbc-company { font-size: 14px; font-weight: 800; }
.jbc-posted { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.jbc-title { font-size: 17px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.jbc-loc { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.jbc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.jbc-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); white-space: nowrap; }
.jbc-tag.visa { background: rgba(52,211,153,0.12); color: #34d399; border: 1px solid rgba(52,211,153,0.25); }
.jbc-tag.remote { background: rgba(52,211,153,0.1); color: #34d399; }
.jbc-tag.pay { background: rgba(96,165,250,0.12); color: #93c5fd; font-weight: 800; }
.jbc-actions { display: flex; gap: 10px; margin-top: auto; }
.jbc-apply { flex: 1; text-align: center; padding: 11px; border-radius: 11px; font-size: 13px; font-weight: 800; background: rgba(255,255,255,0.06); color: #fff; border: 1.5px solid rgba(255,255,255,0.15); transition: all 0.2s; }
.jbc-apply:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.jbc-tailor { flex: 1.2; padding: 11px; border-radius: 11px; font-size: 13px; font-weight: 800; border: none; cursor: pointer; background: linear-gradient(135deg, #059669, #34d399); color: #fff; box-shadow: 0 4px 16px rgba(52,211,153,0.25); transition: all 0.2s; }
.jbc-tailor:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(52,211,153,0.4); }

/* ===== JOB BOARD PAGINATION ===== */
.jobboard-pagebar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; max-width: 1180px; margin: 0 auto; padding: 14px 28px; }
.jbp-count { font-size: 13px; color: rgba(255,255,255,0.5); }
.jbp-count strong { color: #fff; }
.jbp-nav { display: flex; align-items: center; gap: 10px; }
.jbp-page { font-size: 13px; color: rgba(255,255,255,0.4); }
.jbp-btn { padding: 8px 16px; border-radius: 10px; font-size: 13px; font-weight: 700; border: 1.5px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: #fff; cursor: pointer; transition: all 0.2s; }
.jbp-btn:hover:not([disabled]) { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.jbp-btn[disabled] { opacity: 0.35; cursor: default; }

/* ===== SAMPLE RESUME — 3 DISTINCT TEMPLATE STYLES ===== */
/* 1. Classic (Full Stack) — refined default, purple accent */
.paper.p-classic .p-title { color: #6d28d9; }
.paper.p-classic h5 { letter-spacing: 0.5px; }

/* 2. Modern (Data Engineer) — gradient header band, teal accent */
.paper.p-modern { padding: 0; }
.paper.p-modern .pm-band { background: linear-gradient(135deg, #0d9488, #059669); padding: 16px 18px 12px; }
.paper.p-modern .pm-name { font-size: 15px; font-weight: 900; color: #fff; letter-spacing: 0.5px; }
.paper.p-modern .pm-role { font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.95); margin-top: 1px; }
.paper.p-modern .pm-contact { font-size: 8px; color: rgba(255,255,255,0.85); margin-top: 5px; }
.paper.p-modern .pm-content { padding: 12px 18px 8px; }
.paper.p-modern h6 { color: #0d9488; border-top: 2px solid #d1faf0; padding-top: 6px; }
.paper.p-modern .p-co { color: #0d9488; }
.paper.p-modern .p-skills span { background: #d1faf0; color: #0f766e; }

/* 3. Sleek (AI Engineer) — left accent bar, blue, mono skill tags */
.paper.p-sleek { border-left: 5px solid #2563eb; }
.paper.p-sleek .ps-top { border-bottom: 2px solid #2563eb; padding-bottom: 8px; margin-bottom: 8px; }
.paper.p-sleek .ps-title { font-size: 10.5px; font-weight: 700; color: #2563eb; margin: 2px 0; }
.paper.p-sleek h6 { color: #2563eb; }
.paper.p-sleek .p-co { color: #2563eb; }
.paper.p-sleek .p-skills span { background: transparent; color: #1e40af; border: 1px solid #93c5fd; font-family: "SF Mono", Menlo, monospace; font-size: 7.5px; }

/* ===== SAMPLE RESUMES — STRUCTURALLY DISTINCT LAYOUTS ===== */
/* 2b. TWO-COLUMN (Data Engineer): dark sidebar + main column */
.paper.p-twocol { padding: 0; display: grid; grid-template-columns: 36% 64%; }
.paper.p-twocol .tc-side { background: #123f36; color: #e6fff7; padding: 16px 12px; }
.paper.p-twocol .tc-side h5 { color: #fff; font-size: 13px; line-height: 1.2; }
.paper.p-twocol .tc-role { font-size: 9px; font-weight: 700; color: #7ee7c7; margin: 3px 0 10px; }
.paper.p-twocol .tc-block { margin-bottom: 12px; }
.paper.p-twocol .tc-h { font-size: 8px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; color: #7ee7c7; border-bottom: 1px solid rgba(126,231,199,0.35); padding-bottom: 3px; margin-bottom: 5px; }
.paper.p-twocol .tc-side p { font-size: 8px; color: #d7f5ea; line-height: 1.6; }
.paper.p-twocol .tc-skill { display: block; font-size: 8px; color: #e6fff7; padding: 2px 0; }
.paper.p-twocol .tc-bar { height: 3px; background: rgba(255,255,255,0.18); border-radius: 2px; margin: 2px 0 5px; }
.paper.p-twocol .tc-bar i { display: block; height: 3px; background: #7ee7c7; border-radius: 2px; }
.paper.p-twocol .tc-main { padding: 14px 14px 8px; }
.paper.p-twocol .tc-main h6 { color: #0d9488; margin-top: 8px; }
.paper.p-twocol .tc-main .p-co { color: #0d9488; }

/* 3b. TIMELINE (AI Engineer): centered header, skills strip, dated timeline */
.paper.p-timeline { text-align: left; }
.paper.p-timeline .tl-head { text-align: center; padding-bottom: 8px; }
.paper.p-timeline .tl-head h5 { font-size: 15px; letter-spacing: 2.5px; }
.paper.p-timeline .tl-role { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #2563eb; margin: 2px 0; }
.paper.p-timeline .tl-contact { font-size: 8px; color: #666; }
.paper.p-timeline .tl-skills { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; border-top: 1px solid #dbeafe; border-bottom: 1px solid #dbeafe; padding: 6px 0; margin-bottom: 10px; }
.paper.p-timeline .tl-skills span { font-size: 7.5px; font-weight: 700; color: #1e40af; font-family: "SF Mono", Menlo, monospace; }
.paper.p-timeline .tl-skills span:not(:last-child)::after { content: "·"; margin-left: 4px; color: #93c5fd; }
.paper.p-timeline .tl-item { display: grid; grid-template-columns: 52px 1fr; gap: 8px; position: relative; padding-bottom: 10px; }
.paper.p-timeline .tl-date { font-size: 7.5px; font-weight: 800; color: #2563eb; font-family: "SF Mono", Menlo, monospace; padding-top: 2px; }
.paper.p-timeline .tl-body { border-left: 2px solid #bfdbfe; padding-left: 10px; position: relative; }
.paper.p-timeline .tl-body::before { content: ''; position: absolute; left: -5px; top: 3px; width: 8px; height: 8px; border-radius: 50%; background: #2563eb; }
.paper.p-timeline .tl-body .p-job { margin-top: 0; }

/* ===== FLOATING RESUME DOCUMENTS (score section background) ===== */
.float-resume { position: absolute; width: 120px; padding: 14px 12px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; backdrop-filter: blur(4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); opacity: 0; }
.float-resume .frl { display: block; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.28); margin-bottom: 6px; }
.float-resume .frl.name { height: 8px; width: 55%; background: rgba(167,139,250,0.75); margin-bottom: 9px; }
.float-resume .frl.gap { height: 2px; background: transparent; }
.float-resume .frl.w50 { width: 50%; } .float-resume .frl.w60 { width: 60%; }
.float-resume .frl.w70 { width: 70%; } .float-resume .frl.w80 { width: 80%; } .float-resume .frl.w90 { width: 90%; }
.fr-check { position: absolute; top: -9px; right: -9px; font-size: 9px; font-weight: 900; padding: 3px 7px; border-radius: 99px; background: linear-gradient(135deg,#059669,#34d399); color: #fff; box-shadow: 0 4px 12px rgba(52,211,153,0.45); }

.fr-1 { left: 5%;  top: 12%; animation: fr-drift 17s ease-in-out infinite; }
.fr-2 { left: 14%; top: 58%; width: 100px; animation: fr-drift 21s ease-in-out 2s infinite; }
.fr-3 { right: 6%; top: 16%; animation: fr-drift 19s ease-in-out 1s infinite; }
.fr-4 { right: 14%; top: 62%; width: 104px; animation: fr-drift 23s ease-in-out 3s infinite; }
.fr-5 { left: 46%; top: 74%; width: 96px;  animation: fr-drift 25s ease-in-out 4s infinite; }

@keyframes fr-drift {
  0%   { opacity: 0;   transform: translateY(26px) rotate(-7deg) scale(0.96); }
  12%  { opacity: 0.85; }
  50%  { opacity: 0.85; transform: translateY(-18px) rotate(5deg) scale(1.02); }
  88%  { opacity: 0.85; }
  100% { opacity: 0;   transform: translateY(26px) rotate(-7deg) scale(0.96); }
}
@media (max-width: 900px) { .fr-2, .fr-4, .fr-5 { display: none; } .float-resume { width: 92px; } }
@media (prefers-reduced-motion: reduce) { .float-resume { animation: none; opacity: 0.5; transform: rotate(-4deg); } }

/* ===== NAV PHONE / WHATSAPP (top-right, highlighted) ===== */
.nav-phone { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 800; white-space: nowrap; background: linear-gradient(135deg, #059669, #34d399); color: #fff !important; box-shadow: 0 4px 18px rgba(52,211,153,0.35); position: relative; transition: all 0.2s; }
.nav-phone:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(52,211,153,0.5); }
.nav-phone .np-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: np-pulse 1.6s ease-in-out infinite; }
@keyframes np-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
@media (max-width: 1120px) { .nav-phone span.np-num { display: none; } .nav-phone { padding: 10px 12px; } }

/* Keep the WhatsApp phone visible on mobile (icon-only, next to hamburger) */
@media (max-width: 900px) {
  .nav-cta { display: flex !important; margin-left: auto; }
  .nav-cta > *:not(.nav-phone) { display: none !important; }
  .hamburger { margin-left: 12px !important; }
  .nav-phone { padding: 9px 12px; }
  .nav-phone .np-num { display: none; }
}

/* Always-visible services bar on mobile — so offerings are never hidden
   behind the hamburger. Horizontal, tappable, scrolls if it overflows. */
.mobile-quicknav { display: none; }
@media (max-width: 900px) {
  .mobile-quicknav {
    display: flex; gap: 8px; overflow-x: auto; padding: 10px 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(8,10,20,0.92); -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-quicknav::-webkit-scrollbar { display: none; }
  .mobile-quicknav a {
    flex: 0 0 auto; font-size: 13px; font-weight: 700; white-space: nowrap;
    color: rgba(255,255,255,0.82); text-decoration: none;
    padding: 8px 15px; border-radius: 999px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  }
  .mobile-quicknav a.active {
    background: linear-gradient(135deg, #4f8ef7, #a78bfa);
    color: #fff; border-color: transparent;
  }
}

/* ===== ORDER INTAKE — file upload ===== */
.order-file-label { display: flex; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 18px; margin-bottom: 16px; border: 1px dashed rgba(255,255,255,0.18); border-radius: 12px; cursor: pointer; font-size: 14px; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.order-file-label:hover { border-color: rgba(167,139,250,0.5); color: #fff; background: rgba(167,139,250,0.05); }
.order-file-label input[type="file"] { display: none; }

/* ===== JOB BOARD — "Latest jobs" toggle ===== */
.job-latest-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s; }
.job-latest-btn:hover { border-color: rgba(52,211,153,0.5); color: #fff; }
.job-latest-btn.active { background: linear-gradient(135deg, #059669, #34d399); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(52,211,153,0.35); }

/* Job board — technology filter row */
.jobboard-tech .tech-label { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); margin-right: 4px; }
