@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2d3748;
  background: linear-gradient(135deg, #f7f8ff 0%, #fffbfd 50%, #f5faff 100%);
  line-height: 1.65;
  padding-top: 0;
}

a { color: #6C63FF; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px clamp(22px, 7vw, 92px);
  background: linear-gradient(180deg, rgba(91, 100, 220, 0.92), rgba(91, 100, 220, 0.72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo::before {
  content: '';
  width: 54px;
  height: 54px;
  background: url('/assets/assets/images/jobflicklogtp.png') center / contain no-repeat;
  filter: drop-shadow(0 12px 26px rgba(33, 36, 90, 0.2));
}

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

.navlinks a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: 999px;
}

.navlinks .cta {
  background: #fff;
  color: #6C63FF;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(33, 36, 90, 0.16);
  transition: transform 0.2s, box-shadow 0.2s;
}

.navlinks .cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(33, 36, 90, 0.22);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #6c63d8 48%, #764ba2 100%);
  padding: 148px clamp(22px, 7vw, 92px) 96px;
  min-height: 700px;
  text-align: left;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-right: min(45vw, 540px);
}

.hero-inner::after {
  content: '';
  position: absolute;
  right: -26px;
  top: 50%;
  width: min(43vw, 540px);
  height: min(43vw, 540px);
  transform: translateY(-42%);
  border-radius: 0;
  background: url('/assets/assets/images/app_mockup.png') center / contain no-repeat;
  filter: drop-shadow(0 34px 72px rgba(31, 28, 72, 0.26));
  pointer-events: none;
}

.hero-inner::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: min(35vw, 430px);
  height: min(35vw, 430px);
  transform: translateY(-38%);
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 66%);
  filter: blur(4px);
  pointer-events: none;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.last-updated {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  margin-top: 18px;
  letter-spacing: 0.2px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.9vw, 4.65rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 26px;
  color: #fff;
  letter-spacing: 0;
}

.hero p {
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 34px;
  max-width: 740px;
  line-height: 1.75;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #7c5cff, #ff6584);
  color: #fff;
  padding: 18px 34px;
  border-radius: 22px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 20px 44px rgba(108, 99, 255, 0.26);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(108, 99, 255, 0.34);
}

/* ── Stats Strip ── */
.stats-strip {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(108, 99, 255, 0.08);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 900;
  color: #6C63FF;
  letter-spacing: -1px;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: #888;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #eee;
  flex-shrink: 0;
}

/* ── Main content ── */
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 32px 0;
  background: #fff;
}

.section {
  margin-bottom: 76px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #6C63FF;
  margin-bottom: 8px;
  display: block;
}

.section h2,
.cta-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 14px;
  color: #2d3748;
  letter-spacing: -0.5px;
}

.section p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.78;
  max-width: 920px;
}

/* ── Card Grid ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  border: 1px solid rgba(108, 99, 255, 0.12);
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #f8f5ff);
  box-shadow: 0 16px 46px rgba(108, 99, 255, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(108, 99, 255, 0.12);
}

.card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #2d3748;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

/* ── Roles Grid ── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.role-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(108, 99, 255, 0.12);
  box-shadow: 0 16px 46px rgba(108, 99, 255, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.14);
}

.role-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 12px;
}

.role-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #6C63FF;
}

.role-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.55;
}

/* ── Step Timeline ── */
.steps {
  margin-top: 28px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #6C63FF, #7c3aed);
  border-radius: 2px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
  position: relative;
}

.step:last-child { margin-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63FF, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.35);
  z-index: 1;
}

.step-body {
  background: #fff;
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: 0 16px 46px rgba(108, 99, 255, 0.08);
  flex: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-body:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(108, 99, 255, 0.14);
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.step-body p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ── Tips Card ── */
.tips-card {
  background: #fff;
  border-radius: 22px;
  padding: 8px 24px;
  box-shadow: 0 16px 46px rgba(108, 99, 255, 0.08);
  margin-top: 24px;
}

.tip-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f4f4f8;
}

.tip-row:last-child { border-bottom: none; }

.tip-badge {
  background: linear-gradient(135deg, #6C63FF, #7c3aed);
  color: #fff;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.tip-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ── Callout (amber accent) ── */
.callout {
  background: linear-gradient(135deg, #fff, #f8f5ff);
  border: 1px solid rgba(108, 99, 255, 0.14);
  border-radius: 22px;
  padding: 24px 28px;
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.callout:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 46px rgba(108, 99, 255, 0.1);
}

.callout-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.callout-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.callout-body p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ── Trust Strip ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 16px 24px 20px;
}

.trust-pill {
  background: #f4f2ff;
  border: 1px solid rgba(108, 99, 255, 0.15);
  color: #6C63FF;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── Table of Contents ── */
.toc {
  background: linear-gradient(135deg, #fff, #f8f5ff);
  border: 1px solid rgba(108, 99, 255, 0.12);
  border-radius: 22px;
  padding: 20px 28px;
  margin-bottom: 48px;
}

.toc h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6C63FF;
  margin-bottom: 12px;
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  margin-bottom: 6px;
}

.toc a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

.toc a:hover {
  color: #6C63FF;
  text-decoration: none;
}

/* ── Author Byline ── */
.author-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #888;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f0eeff;
}

.author-byline strong {
  color: #555;
  font-weight: 700;
}

/* ── FAQ ── */
.faq details {
  border-top: 1px solid #eee;
  padding: 16px 0;
}

.faq summary {
  color: #1a1a2e;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 1.2rem;
  color: #6C63FF;
  font-weight: 700;
  flex-shrink: 0;
}

details[open] > summary::after { content: '−'; }

.faq details p {
  margin-top: 10px;
  color: #555;
  line-height: 1.72;
}

/* ── CTA Panel ── */
.cta-panel {
  background: linear-gradient(135deg, #6C63FF 0%, #6f56d9 52%, #ff6584 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-panel > * { position: relative; }

.cta-panel h2 { color: #fff; }

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 32px;
  max-width: 640px;
}

/* ── Internal Links ── */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 0;
}

.links a {
  background: #f4f2ff;
  border: 1px solid rgba(108, 99, 255, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

/* ── Footer ── */
footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(108, 99, 255, 0.28), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(255, 101, 132, 0.16), transparent 34%),
    linear-gradient(135deg, #15172f 0%, #1a1738 48%, #231744 100%);
  padding: 70px 32px 34px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6C63FF, #ff6584, #6C63FF);
}

footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) 1fr 1fr;
  gap: 56px;
}

.footer-brand .footer-logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo::before {
  content: '';
  width: 38px;
  height: 38px;
  background: url('/assets/assets/images/jobflicklogtp.png') center / contain no-repeat;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
}

.footer-brand p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  max-width: 330px;
  margin-bottom: 22px;
}

.app-soon {
  display: grid;
  gap: 12px;
}

.app-soon > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.app-soon > span::before,
.app-soon > span::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff6584;
  box-shadow: 0 0 16px rgba(255, 101, 132, 0.6);
}

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

.store-badge {
  min-width: 146px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border-radius: 13px;
  background: rgba(8, 9, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.store-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: 0.25px;
}

.store-badge span:last-child {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.05;
}

.store-icon {
  position: relative;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.store-icon.apple::before {
  content: '';
  position: absolute;
  left: 5px;
  bottom: 1px;
  width: 12px;
  height: 15px;
  background: #fff;
  border-radius: 8px 8px 7px 7px;
}

.store-icon.apple::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  width: 7px;
  height: 5px;
  background: #fff;
  border-radius: 7px 0 7px 0;
  transform: rotate(-28deg);
}

.store-icon.play {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #34e89e;
  filter: drop-shadow(5px 0 0 #ffc300) drop-shadow(2px -4px 0 #00c6ff) drop-shadow(2px 4px 0 #ff416c);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .nav { padding: 14px 20px; background: rgba(102, 126, 234, 0.94); }
  .logo::before { width: 36px; height: 36px; background-size: 29px 29px; }
  .navlinks a:not(.cta) { display: none; }
  .navlinks .cta { padding: 11px 16px; border-radius: 12px; }
  .hero { min-height: auto; padding: 112px 20px 64px; }
  .hero-inner { padding-right: 0; }
  .hero-inner::before,
  .hero-inner::after { display: none; }
  .hero h1 { font-size: clamp(2.25rem, 13vw, 3.2rem); }
  main { padding: 54px 20px 0; }
  .section { margin-bottom: 46px; }
  .grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { padding: 44px 24px; }
  .stat-divider { display: none; }
  .stats-inner { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { left: 19px; }
  .toc { padding: 16px 20px; }
}
