.resume-checklist .tip-card {
  cursor: pointer;
}

.resume-template-card {
  text-align: center;
}

.resume-template-card h3 {
  margin-bottom: 0.75rem;
}
/* Checkbox */

.resume-checklist label {
  cursor: pointer;
}

.resume-checklist .tip-card {
  text-align: left;
}
.resume-checklist input[type="checkbox"] {
  margin-right: 0.5rem;
}

.tip-card label {
  cursor: pointer;
}

/* ==========================
   Resume Tips Page
========================== */

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.title-line {
  display: block;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-title {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.subtitle {
  display: block;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================
   Hero Buttons
========================== */

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================
   Stats Section
========================== */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: -3rem;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-secondary);
}

/* ==========================
   Sections
========================== */

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

/* ==========================
   Cards
========================== */

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.8rem;
}

.tip-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.tip-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.tip-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================
   Icons
========================== */

.tip-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.template-actions .btn i {
  font-size: 16px;
  margin: 0;
}

.template-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
/* ==========================
   Formula
========================== */
.formula-list {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.formula-list li {
  margin-bottom: 0.5rem;
}
.formula-highlight{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin: 1rem 0;
}
/* ==========================
   Resume Checklist
========================== */

.resume-checklist .tip-card {
  display: flex;
  align-items: center;
  min-height: 80px;
}

.resume-checklist label {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.resume-checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}
.resume-checklist input:checked + span {
  text-decoration: line-through;
  opacity: 0.7;
}
/* ==========================
   Template Cards
========================== */

.tip-card .btn {
  margin-top: 1rem;
  width: 100%;
}
/* ==========================
   Tech-Skills
========================== */
.skills-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
}

.skill-row {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}

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

.skill-row strong {
  min-width: 180px;
  color: var(--primary-color);
}

.skill-row span {
  color: var(--text-primary);
}

/* ==========================
   Recruiter Section
========================== */

.tip-card h3 i {
  margin-right: 8px;
  font-size: 1rem;
}
/* ==========================
   Objectives
========================== */
.objective-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.7;
  font-size: 0.95rem;
}

.objective-note strong {
  color: var(--primary-color);
}
.objective-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.objective-grid .tip-card{
  height: 100%;
}
/* ==========================
   Responsive
========================== */

.resume-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 24px;
  background: #7c3aed;
  color: white;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 9999;
}

.resume-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.cta-card{
  text-align:center;
  max-width:800px;
  margin:auto;
}

.cta-card .btn{
  max-width:300px;
  margin:1.5rem auto 0;
}

#resume-structure .tip-card h3{
  color: var(--text-primary);
  font-size: 1.2rem;
}

#resume-structure .tip-card{
  border-left: 3px solid var(--primary-color);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem 3rem;
  }


  .main-title {
  font-size: 2.5rem;
  line-height: 1.1;
}

  .section {
    padding: 2.5rem 0;
  }

   .section-title {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

    .tip-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap:8px;
    width: 100%;
    max-width: 300px;
  }
  .template-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

  .template-actions .btn {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .template-actions .btn i {
    font-size: 14px;
  }

  .tip-card {
    padding: 1rem;
  }
    .tip-card p{
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .tip-card h3{
    font-size: 1.1rem;
  }
    .stat-box {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }
  .subtitle{
    font-size:1.1rem;
  }
  .skills-card {
    padding: 1.25rem;
  }

  .skill-row {
    flex-direction: column;
    gap: 0.3rem;
  }

  .skill-row strong {
    min-width: auto;
  }
    .formula-highlight{
    font-size: 1.05rem;
    margin: 0.75rem 0;
  }

  .formula-list{
    margin: 0.75rem 0;
    padding-left: 1rem;
  }

  .formula-list li{
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
  }
  
  .objective-note {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
   .objective-grid{
    grid-template-columns:1fr;
  }
}