/* ============ TOKENS ============ */
:root {
  --blue: #1B4FD8;
  --blue-dark: #1340B0;
  --blue-light: #EEF3FF;
  --green: #22C55E;
  --green-dark: #16A34A;
  --green-light: #F0FDF4;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============ PAGE SYSTEM ============ */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ============ NAVBAR ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.9rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-600); transition: all 0.2s;
  cursor: pointer; /* Add this */

}
.nav-links a:hover { color: var(--blue); background: var(--blue-light);}
.nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta {
  background: var(--blue); color: white !important;
  padding: 0.5rem 1.2rem !important; border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: white !important; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.3s; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--white) 60%, var(--blue-light) 100%);
  padding: 4rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-dark);
  border: 1px solid #BBF7D0; border-radius: 99px;
  padding: 0.35rem 0.9rem; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.6s ease both;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; color: var(--gray-900);
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.6s ease 0.1s both;
}
.hero-heading em { font-style: normal; color: var(--blue); }
.hero-heading .green { color: var(--green-dark); }
.hero-sub {
  font-size: 1.05rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 2rem; max-width: 500px;
  animation: fadeSlideUp 0.6s ease 0.2s both;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.6s ease 0.3s both;
}
.btn-primary {
  background: var(--blue); color: white;
  padding: 0.85rem 1.8rem; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; font-family: var(--font-display);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; box-shadow: 0 4px 14px rgba(27,79,216,0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,79,216,0.45); }
.btn-secondary {
  background: white; color: var(--blue);
  padding: 0.85rem 1.8rem; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; font-family: var(--font-display);
  border: 2px solid var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--blue-light); transform: translateY(-2px); }

.hero-trust {
  display: flex; align-items: center; gap: 10px; margin-top: 2rem;
  animation: fadeSlideUp 0.6s ease 0.4s both;
}
.trust-avatars { display: flex; }

.trust-text { font-size: 0.82rem; color: var(--gray-600); }
.trust-text strong { color: var(--gray-900); }

/* Hero right — step cards */
.hero-cards { display: flex; flex-direction: column; gap: 1rem; animation: fadeSlideUp 0.6s ease 0.2s both; }
.step-card {
  background: white; border-radius: var(--radius); padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.step-card.highlight { border-color: var(--green); background: var(--green-light); }
.step-num {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; font-family: var(--font-display);
}
.step-num.blue { background: var(--blue-light); color: var(--blue); }
.step-num.green { background: #DCFCE7; color: var(--green-dark); }
.step-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.step-card p { font-size: 0.78rem; color: var(--gray-600); }
.step-tag {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 99px;
}
.step-tag.free { background: #DCFCE7; color: var(--green-dark); }
.step-tag.paid { background: #FFF7ED; color: #C2410C; }

/* Stats strip 
.stats-strip {
  background: var(--gray-900); padding: 1.5rem;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
}
.stat { text-align: center; color: white; }
.stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; }
.stat-num .accent { color: var(--green); }
.stat-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 2px; }*/

/* ============ SECTIONS ============ */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem;
}
.section-heading {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--gray-900); margin-bottom: 1rem; line-height: 1.2;
}
.section-sub { font-size: 1rem; color: var(--gray-600); max-width: 560px; }
.section-header { margin-bottom: 3rem; }

/* mission Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 2rem;
  justify-content: center;
  margin: 2rem auto 0;
}
.card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.5rem; transition: all 0.25s; cursor: pointer;
}
.card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--blue); font-size: 0.82rem; font-weight: 600; margin-top: 0.9rem;
}

/* ============ SERVICES SECTION ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.service-card {
  border-radius: var(--radius); padding: 1.75rem; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card.blue-card { background: var(--blue-light); border: 1px solid #BFDBFE; }
.service-card.green-card { background: var(--green-light); border: 1px solid #BBF7D0; }
.service-card.dark-card { background: var(--gray-900); border: 1px solid var(--gray-800); color: white; }
.service-card.white-card { background: white; border: 1px solid var(--gray-200); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; line-height: 1.65; opacity: 0.8; }
.service-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 99px;
}
.badge-free { background: #DCFCE7; color: var(--green-dark); }
.badge-paid { background: #FFF7ED; color: #C2410C; }

/* ============ RESOURCES PAGE ============ */
.res-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem; border-radius: 99px; font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  transition: all 0.2s; cursor: pointer; background: white;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue); color: white; border-color: var(--blue);
}
.res-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.4rem; display: flex; align-items: flex-start; gap: 1rem;
  transition: all 0.2s;
}
.res-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.res-logo {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; background: var(--gray-100);
}
.res-body { flex: 1; }
.res-body h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.res-body p { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 0.6rem; }
.res-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.res-tag {
  font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: 99px;
  background: var(--blue-light); color: var(--blue);
}
.res-tag.green { background: var(--green-light); color: var(--green-dark); }
.res-action {
  flex-shrink: 0; background: var(--blue); color: white;
  padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s;
}
.res-action:hover { background: var(--blue-dark); }

.resource-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1.2rem;
  border:1px solid var(--gray-200);
  border-radius:18px;
  background:white;
}


.resource-left{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.resource-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--blue-light);
}

.resource-note{
  margin-bottom:20px;
  font-size:15px;
  font-weight:600;
  color:var(--gray-600);
}

.tag{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  background:var(--green-light);
  font-size:0.75rem;
  font-weight:600;
}


.view-btn{
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  color:#fff;
  padding:12px 24px;
  border-radius:12px;
  font-weight:600;
  text-decoration:none;
  transition:all .3s ease;
}

.view-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(37,99,235,.3);
}

/* Cheatsheet cards */
.cheat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.cheat-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 1.25rem; text-align: center; transition: all 0.2s; cursor: pointer;
}
.cheat-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cheat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.cheat-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; }
.cheat-card p { font-size: 0.75rem; color: var(--gray-600); }
.cheat-btn {
  margin-top: 0.75rem; width: 100%;
  background: var(--green-light); color: var(--green-dark);
  padding: 0.45rem; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
  transition: background 0.2s;
}
.cheat-card:hover .cheat-btn { background: var(--green); color: white; }

/* Roadmap cards */
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.roadmap-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.5rem; transition: all 0.2s; cursor: pointer;
}
.roadmap-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.roadmap-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.roadmap-emoji { font-size: 1.5rem; }
.roadmap-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.roadmap-steps { display: flex; flex-direction: column; gap: 6px; }
.rm-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--gray-600); padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
}
.rm-step:last-child { border-bottom: none; }
.rm-step span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: all 0.25s; cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-thumb {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 1.25rem; }
.blog-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0.6rem; }
.blog-tag {
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 99px;
  background: var(--blue-light); color: var(--blue);
}
.read-time { font-size: 0.72rem; color: var(--gray-400); }
.blog-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; line-height: 1.4; }
.blog-body p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

.reading-progress{
position:fixed;
top:0;
left:0;
width:100%;
height:4px;
background:#e5e7eb;
z-index:9999;
}

#readingBar{
height:100%;
width:0%;
background:#2563eb;
transition:width .1s linear;
}

/* ============ RESUME REVIEW PAGE ============ */
.resume-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #2563EB 100%);
  color: white; padding: 4rem 1.5rem; text-align: center;
}
.resume-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.resume-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 500px; margin: 0 auto; }
.price-card {
  background: white; border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow-lg); max-width: 480px; margin: -2rem auto 0; position: relative; z-index: 2;
  border: 2px solid var(--blue);
}
.price-top { text-align: center; margin-bottom: 2rem; }
.price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--blue); }
.price-amount span { font-size: 1rem; color: var(--gray-600); }
.price-name { font-size: 0.85rem; color: var(--gray-600); margin-top: 4px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.pf { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.pf::before { content: '✓'; color: var(--green-dark); font-weight: 800; flex-shrink: 0; }
.btn-full {
  width: 100%; background: var(--blue); color: white;
  padding: 1rem; border-radius: 10px; font-weight: 700; font-size: 1rem;
  font-family: var(--font-display); transition: all 0.2s; display: block; text-align: center;
}
.btn-full:hover { background: var(--blue-dark); }

.how-it-works{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}

.hiw-step { text-align: center; max-width: 180px; }
.hiw-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem;
}
.hiw-step h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.hiw-step p { font-size: 0.78rem; color: var(--gray-600); }



.benefit-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:20px;
  transition:.3s;
}

.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.benefit-card span{
  font-size:28px;
}

.benefit-card h4{
  margin:12px 0 8px;
  font-size:1rem;
  font-weight:700;
  color:var(--gray-900);
}

.benefit-card p{
  color:var(--gray-600);
  line-height:1.6;
  font-size:.9rem;
}


.review-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1200px;
  margin:60px auto 0;
}

.benefit-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:28px;
}

.benefit-icon{
  font-size:32px;
  margin-bottom:12px;
}

.benefit-card h3{
  margin-bottom:10px;
  font-size:1.25rem;
  font-weight:700;
}

.benefit-card p{
  color:#64748b;
  line-height:1.7;
}


.resume-faq{
  max-width:1000px;
  margin:60px auto 0;
}

.resume-faq h2{
  text-align:center;
  margin-bottom:40px;
}


/* Resume Review Mobile Fix */
@media (max-width: 768px) {

  .resume-grid{
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .price-card{
    width: 100%;
  }

  .how-it-works{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hiw-step{
    text-align: center;
  }

  .price-amount{
    font-size: 3rem;
  }

  .resume-hero h1{
    font-size: 2rem;
  }

  .resume-hero p{
    font-size: 1rem;
  }

  .review-benefits{
     display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

}

/* ============ ABOUT PAGE ============ */
.about-hero {
  background: linear-gradient(160deg, var(--gray-50), var(--blue-light));
  padding: 5rem 1.5rem;
}

.about-inner { 
  max-width: 960px;
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
  align-items: center; }

.about-img {
  width: 340px;
  height: 430px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-tag{
  text-align:center;
  margin-top:16px;
  font-size:0.9rem;
  color:var(--gray-600);
  font-weight:500;
}

.founder-tag strong{
  display:block;
  color:var(--gray-900);
}

.founder-tag span{
  display:block;
  margin-top:6px;
  color:var(--gray-600);
  font-size:0.9rem;
}

.about-content h1 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; margin-bottom: 0.25rem; }
.about-content .role { color: var(--blue); font-weight: 600; margin-bottom: 1rem; }
.about-content p { color: var(--gray-600); line-height: 1.75; margin-bottom: 1rem; }
.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 1.5rem;
}

/* PRIVACY POLICY PAGE ======= */
.policy-content{
  max-width:850px;
  margin:0 auto;
}

.policy-content h3{
  margin-top:2rem;
  margin-bottom:0.75rem;
  font-size:1.15rem;
  font-weight:700;
  color:var(--gray-900);
}

.policy-content p{
  color:var(--gray-600);
  line-height:1.8;
  margin-bottom:1rem;
}


.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: white;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 600;
}


.social-btn:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

/* ============ WORK WITH ME ============ */
.collab-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.collab-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; transition: all 0.2s;
}
.collab-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.collab-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.collab-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.collab-card p { font-size: 0.82rem; color: var(--gray-600); }

/* ============ CONTACT FORM ============ 
.contact-form {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 2.5rem; max-width: 640px; margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-size: 0.9rem; font-family: var(--font-body); color: var(--gray-800);
  transition: border-color 0.2s; outline: none; background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,79,216,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  background: var(--green-light); border-radius: var(--radius); margin-top: 1rem;
}
.form-success h3 { font-family: var(--font-display); font-weight: 700; color: var(--green-dark); font-size: 1.2rem; margin-bottom: 0.4rem; }
.form-success p { font-size: 0.88rem; color: var(--gray-600); } */


/* ===== CONTACT SECTION PREMIUM STYLE ===== */

.contact-email{
  text-align: center;
  margin-top: 40px;
  padding: 30px;
}

/* Main heading feel */
.section-label{
  letter-spacing: 2px;
  font-size: 12px;
  color: #6c63ff;
  font-weight: 600;
}

.section-heading{
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

/* Paragraph */
.contact-email p{
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

/* Response time badge */
.contact-email p b{
  color: #111;
}

/* Email blocks */
.contact-email h3{
  margin-top: 25px;
  font-size: 18px;
  color: #222;
}

.contact-email a{
  display: inline-block;
  margin-top: 6px;
  font-size: 16px;
  color: #6c63ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.contact-email a:hover{
  color: #4b42d4;
  transform: translateY(-2px);
}

/* Card look */
.contact-email{
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* spacing fix */
.contact-email br{
  display: none;
}


/* ============ FIND YOUR PATH ============ */
.quiz-container {
  max-width: 680px; margin: 0 auto; padding: 4rem 1.5rem;
}
.quiz-progress { background: var(--gray-200); border-radius: 99px; height: 6px; margin-bottom: 2.5rem; overflow: hidden; }
.quiz-bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 99px; transition: width 0.5s ease; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeSlideUp 0.4s ease both; }
.quiz-q { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.quiz-sub { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 2rem; }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-opt {
  padding: 1rem 1.25rem; border: 2px solid var(--gray-200); border-radius: 12px;
  cursor: pointer; transition: all 0.2s; background: white;
  display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 500;
  text-align: left;
}
.quiz-opt:hover { border-color: var(--blue); background: var(--blue-light); }
.quiz-opt.selected { border-color: var(--blue); background: var(--blue-light); color: var(--blue); font-weight: 600; }
.quiz-opt-icon { font-size: 1.3rem; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.btn-ghost {
  padding: 0.75rem 1.5rem; border-radius: 10px; font-weight: 600; color: var(--gray-600);
  border: 1.5px solid var(--gray-200); transition: all 0.2s; background: white;
}
.btn-ghost:hover { border-color: var(--gray-400); }

/* Result card */
.result-card {
  background: linear-gradient(135deg, var(--blue), #3B82F6); color: white;
  border-radius: var(--radius); padding: 2.5rem; text-align: center; margin-top: 1rem;
}
.result-icon { font-size: 3rem; margin-bottom: 1rem; }
.result-card h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
.result-card p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 0.92rem; }
.result-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 2rem; text-align: left; }
.result-step {
  background: rgba(255,255,255,0.15); border-radius: 10px; padding: 0.75rem 1rem;
  font-size: 0.85rem; display: flex; align-items: center; gap: 8px;
}
.result-step::before { content: '→'; font-weight: 800; }
.result-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--blue); padding: 0.75rem 1.5rem;
  border-radius: 10px; font-weight: 700; font-size: 0.9rem; transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============ AI ASSISTANT ============ 
.ai-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 4px 20px rgba(27,79,216,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
  animation: pulse 3s ease infinite;
}
.ai-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(27,79,216,0.5); }
.ai-fab svg { width: 26px; height: 26px; fill: white; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(27,79,216,0.4); }
  50% { box-shadow: 0 4px 28px rgba(27,79,216,0.65), 0 0 0 8px rgba(27,79,216,0.08); }
}
.ai-panel {
  position: fixed; bottom: 98px; right: 24px; z-index: 998;
  width: 360px; max-height: 520px;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.95); opacity: 0; pointer-events: none;
  transition: all 0.25s;
}
.ai-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.ai-header {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--blue), #2563EB);
  border-radius: var(--radius) var(--radius) 0 0;
}
.ai-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ai-header-info h4 { font-family: var(--font-display); font-weight: 700; color: white; font-size: 0.9rem; }
.ai-header-info p { font-size: 0.72rem; color: rgba(255,255,255,0.75); }
.ai-close { margin-left: auto; color: white; font-size: 1.2rem; opacity: 0.7; padding: 4px; cursor: pointer; }
.ai-close:hover { opacity: 1; }
.ai-messages {
  flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 10px;
  min-height: 0;
}
.ai-msg { max-width: 85%; }
.ai-msg.bot .ai-bubble {
  background: var(--blue-light); border-radius: 4px 16px 16px 16px;
  padding: 0.65rem 1rem; font-size: 0.83rem; color: var(--gray-800); line-height: 1.55;
}
.ai-msg.user { align-self: flex-end; }
.ai-msg.user .ai-bubble {
  background: var(--blue); color: white;
  border-radius: 16px 4px 16px 16px;
  padding: 0.65rem 1rem; font-size: 0.83rem; line-height: 1.55;
}
.ai-typing .ai-bubble { display: flex; align-items: center; gap: 5px; }
.ai-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: blink 1.2s ease infinite; }
.ai-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,100%{opacity:0.2} 50%{opacity:1} }
.ai-input-row {
  padding: 0.75rem; border-top: 1px solid var(--gray-200);
  display: flex; gap: 8px;
}
.ai-input {
  flex: 1; padding: 0.6rem 0.9rem; border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-size: 0.83rem; font-family: var(--font-body); outline: none;
}
.ai-input:focus { border-color: var(--blue); }
.ai-send {
  background: var(--blue); color: white; width: 36px; height: 36px;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s; cursor: pointer;
}
.ai-send:hover { background: var(--blue-dark); }
.ai-send svg { width: 16px; height: 16px; fill: white; }

/* Quick questions */
.ai-quick { padding: 0.5rem; display: flex; gap: 6px; flex-wrap: wrap; }
.ai-q-btn {
  font-size: 0.72rem; padding: 4px 10px; border-radius: 99px;
  border: 1px solid var(--blue); color: var(--blue); background: var(--blue-light);
  cursor: pointer; transition: all 0.15s; font-family: var(--font-body);
}
.ai-q-btn:hover { background: var(--blue); color: white; }*/

/* ============ FOOTER ============ */
.footer{
  background:#ffffff;
  border-top:1px solid #e5e7eb;
  padding:60px 20px 30px;
  margin-top:80px;

}

.footer-inner{
  max-width:1200px;
  margin:auto;
}

.footer-top{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:50px;
}

.footer-brand img{
  width:180px;
  margin-bottom:20px;
}

.footer-brand p{
  color:#475569;
  line-height:1.8;
  max-width:320px;
}

.footer-col a:hover{
    color:#2563eb;
    text-decoration:underline;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:20px;
}


.footer-social img{
    width:28px;
    height:28px;
    object-fit:contain;
}

.footer-social a:last-child img{
    margin-top:-2px;
}

.footer-social img:hover{
  transform:translateY(-3px);
}

.footer-col a:hover{
    color:#2563eb;
    text-decoration:underline;
    padding-left:4px;
}

.footer-col h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:15px;
  color:#0f172a;
}

.footer-col a{
    display:block;
    font-size:0.9rem;
    margin-bottom:12px;
    color:var(--gray-600);
    text-decoration:none;
    cursor:pointer;
    transition:all 0.3s ease;
}
.footer-col a:hover{
  color:#2563eb;
  
}

.footer-logo{
    width:140px;
}

.footer-bottom{
  border-top:1px solid #e5e7eb;
  margin-top:40px;
  padding-top:20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-bottom p{
  color:#64748b;
  font-size:14px;
}

@media(max-width:768px){

.footer-top{
  grid-template-columns:1fr;
}

.footer-bottom{
  flex-direction:column;
  gap:10px;
  text-align:center;
}

}

/* ============ ANIMATIONS ============ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ TOASTS ============ */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--gray-900); color: white; padding: 0.75rem 1.5rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 500; pointer-events: none; opacity: 0;
  transition: all 0.35s; z-index: 9999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ PAGE-SPECIFIC BG TINTS ============ */
.page-resources { background: var(--gray-50); }
.page-blog { background: var(--gray-50); }

/* ============ DIVIDERS ============ */
.divider { height: 1px; background: var(--gray-200); margin: 2.5rem 0; }
.section-alt { background: var(--gray-50); }

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-cards { order: -1; display: grid; grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--gray-200); padding: 1rem; z-index: 99; }
  .nav-mobile-toggle { display: flex; }
  .hero-cards { grid-template-columns: 1fr; }
  .stats-inner { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .ai-panel { width: calc(100vw - 32px); right: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
}

/* Tab system for resources */
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; border-bottom: 2px solid var(--gray-200); padding-bottom: 0; }
.tab-btn {
  padding: 0.65rem 1.1rem; font-size: 0.88rem; font-weight: 600; cursor: pointer;
  color: var(--gray-600); border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all 0.2s; background: none; border-radius: 0;
}
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeSlideUp 0.35s ease; }

/* Cheatsheet modal */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius); max-width: 660px; width: calc(100% - 2rem);
  max-height: 80vh; overflow-y: auto; padding: 2rem;
  animation: fadeSlideUp 0.3s ease;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-header h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.modal-close { font-size: 1.5rem; color: var(--gray-400); cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--gray-800); }
pre.code-block {
  background: var(--gray-900); color: #E2E8F0; padding: 1.25rem; border-radius: 10px;
  font-family: 'Courier New', monospace; font-size: 0.8rem; line-height: 1.65;
  overflow-x: auto; white-space: pre-wrap; margin-bottom: 1rem;
}
.copy-btn {
  background: var(--blue-light); color: var(--blue); padding: 0.5rem 1rem;
  border-radius: 8px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.copy-btn:hover { background: var(--blue); color: white; }


#articleContent{
  max-width:800px;
  margin:2rem auto;
  line-height:1.9;
  color:var(--gray-700);
}

#articleContent h2{
  font-size:2.4rem;
  margin-bottom:1.5rem;
  color:var(--gray-900);
}

#articleContent h3{
  font-size:1.4rem;
  margin-top:2rem;
  margin-bottom:1rem;
  color:var(--blue);
}

#articleContent p{
  margin-bottom:1rem;
}

#articleContent ul{
  padding-left:1.5rem;
  margin-bottom:1rem;
}

#articleContent li{
  margin-bottom:0.6rem;
}



.confidence-score{
  background:#eef4ff;
  color:#2563eb;
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  margin:20px 0;
  text-align:center;
}

.roadmap-list{
  margin:1rem 0;
  padding-left:1.5rem;
}

.roadmap-list li{
  margin-bottom:.75rem;
  line-height:1.7;
}


.featured-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1.5rem;
  margin-top:2rem;
}

.featured-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:1.5rem;
  transition:.3s;
}

.featured-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.featured-icon{
  font-size:2rem;
  margin-bottom:1rem;
}

.featured-card h3{
  margin-bottom:.7rem;
}

.featured-card p{
  color:#6b7280;
  font-size:.95rem;
  line-height:1.6;
}

.featured-btn{
  margin-top:1rem;
  border:none;
  cursor:pointer;
  background:#2563eb;
  color:white;
  padding:.7rem 1rem;
  border-radius:10px;
  font-weight:600;
  transition:.3s;
}

.featured-btn:hover{
  transform:translateY(-2px);
}

.feature-card{
  transition:all .3s ease;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(37,99,235,.12);
  border-color:#2563eb;
}

.feature-card{
  min-height:340px;
  display:flex;
  flex-direction:column;
}

.feature-card a,
.feature-card button{
  margin-top:auto;
}

.mini-tag{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:#eef2ff;
  color:#2563eb;
  font-size:12px;
  font-weight:600;
  margin:8px 0 12px;
}





.cookie-banner{
  position:fixed;
  bottom:20px;
  left:20px;
  right:20px;
  background:#111827;
  color:white;
  padding:16px 20px;
  border-radius:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.cookie-banner p{
  margin:0;
  font-size:.9rem;
}

.cookie-banner button{
  background:#2563eb;
  color:white;
  border:none;
  padding:10px 18px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
}

.cookie-banner button:hover{
  background:#1d4ed8;
}

.blog-cta{
  margin-top:3rem;
  padding:2rem;
  text-align:center;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:20px;
}

.blog-cta h3{
  margin-bottom:.75rem;
  font-size:1.4rem;
}

.blog-cta p{
  margin-bottom:1.25rem;
  color:#64748b;
}

.author-box{
  margin-top:2rem;
  padding:1.5rem;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
}

.author-box h4{
  margin-bottom:.75rem;
  font-size:1rem;
  font-weight:700;
}

.author-box p{
  color:#64748b;
  line-height:1.8;
}


.blog-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.blog-tag{
  background:#eef2ff;
  color:#4f46e5;
  padding:6px 10px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:600;
}

.read-time{
  color:#64748b;
  font-size:.8rem;
  font-weight:500;
}


#articleContent{
  max-width:800px;
  margin:0 auto;
}

#articleContent h2{
  font-size:2.2rem;
  margin-bottom:1.5rem;
  line-height:1.2;
}

#articleContent h3{
  margin-top:2rem;
  margin-bottom:1rem;
  font-size:1.4rem;
  color:#1e3a8a;
}

#articleContent p{
  font-size:1.05rem;
  line-height:1.9;
  color:#475569;
  margin-bottom:1.2rem;
}

#articleContent ul{
  margin:1rem 0 1.5rem 1.5rem;
}

#articleContent li{
  margin-bottom:.8rem;
  line-height:1.8;
}

.article-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin:1rem 0 2rem;
  color:#64748b;
  font-size:.9rem;
  font-weight:500;
  padding-bottom:1rem;
  border-bottom:1px solid #e5e7eb;
}

.article-meta span{
  display:flex;
  align-items:center;
}

.blog-quote{
  background:#eff6ff;
  border-left:4px solid #2563eb;
  padding:20px;
  margin:30px 0;
  border-radius:12px;
  font-weight:600;
  line-height:1.8;
  color:#1e3a8a;
}


.resume-faq{
margin-top:4rem;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.resume-faq h2{
text-align:center;
margin-bottom:2rem;
font-size:2rem;
font-weight:800;
}

.faq-item{
background:#fff;
border:1px solid #e5e7eb;
padding:1.25rem;
border-radius:16px;
margin-bottom:1rem;
}

.faq-item h4{
margin-bottom:.5rem;
font-size:1rem;
font-weight:700;
}

.faq-item p{
color:#6b7280;
line-height:1.7;
}



.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  margin-top:3rem;
}

.why-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:1.5rem;
  transition:.25s ease;
}

.why-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.why-icon{
  font-size:2rem;
  margin-bottom:1rem;
}

.why-card h3{
  margin-bottom:.75rem;
  font-size:1.05rem;
}

.why-card p{
  color:#64748b;
  line-height:1.7;
}

@media(max-width:900px){
  .why-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .why-grid{
    grid-template-columns:1fr;
  }
}