/* =========================================================
   resume.aurorapdf.com — Global Stylesheet
   ========================================================= */

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  color: #1f2937;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: #111827;
  text-decoration: none;
}
.logo svg { width: 32px; height: 32px; }
.logo-badge {
  font-size: 11px;
  background: #f3f4f6;
  color: #4b5563;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #4b5563;
  font-weight: 500;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  transition: background .15s;
}
.nav a:hover { background: #f3f4f6; text-decoration: none; }
.nav .btn-dl {
  background: #2563eb;
  color: #fff !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
}
.nav .btn-dl:hover { background: #1d4ed8; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 10px 0;
  font-size: 13px;
  color: #6b7280;
}
.breadcrumb a { color: #6b7280; }
.breadcrumb span { margin: 0 6px; }

/* ── Nav Dropdown ───────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-drop-trigger {
  color: #4b5563;
  font-weight: 500;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  transition: background .15s;
}
.nav-drop-trigger:hover { background: #f3f4f6; text-decoration: none; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  min-width: 200px;
  padding: 6px;
  z-index: 200;
}
.nav-dropdown:hover .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13.5px;
  color: #374151;
  border-radius: 6px;
  transition: background .12s;
}
.nav-drop-menu a:hover { background: #f0f7ff; color: #2563eb; text-decoration: none; }
.drop-divider { height: 1px; background: #e5e7eb; margin: 4px 0; }

/* ── Blog Card ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(37,99,235,.10);
  transform: translateY(-2px);
  text-decoration: none;
}
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #2563eb;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-body p { font-size: 13.5px; color: #4b5563; flex: 1; }
.blog-card-footer {
  padding: 12px 20px;
  border-top: 1px solid #f3f4f6;
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
}

/* ── Article ────────────────────────────────────────────── */
.article-wrap { max-width: 740px; margin: 0 auto; }
.article-wrap h1 { font-size: clamp(24px,3.5vw,36px); font-weight:800; line-height:1.25; margin-bottom:12px; }
.article-wrap .article-meta { font-size:13px; color:#6b7280; margin-bottom:32px; display:flex; gap:16px; flex-wrap:wrap; }
.article-wrap h2 { font-size:22px; font-weight:700; margin:36px 0 12px; color:#111827; }
.article-wrap h3 { font-size:18px; font-weight:700; margin:28px 0 10px; color:#1e40af; }
.article-wrap p  { font-size:15.5px; line-height:1.75; color:#374151; margin-bottom:16px; }
.article-wrap ul, .article-wrap ol { padding-left:24px; margin-bottom:16px; }
.article-wrap li { font-size:15px; line-height:1.7; color:#374151; margin-bottom:6px; }
.article-wrap strong { color:#111827; }
.article-wrap a { color:#2563eb; font-weight:500; }
.article-wrap .callout {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size:14.5px;
  color: #1e40af;
}
.article-wrap .callout strong { color:#1e40af; }
.article-wrap table { width:100%; border-collapse:collapse; margin:24px 0; font-size:14px; }
.article-wrap table th { background:#1e2a38; color:#fff; padding:10px 14px; text-align:left; }
.article-wrap table td { padding:9px 14px; border-bottom:1px solid #e5e7eb; }
.article-wrap table tr:nth-child(even) td { background:#f9fafb; }
.related-posts { margin-top:48px; padding-top:32px; border-top:2px solid #e5e7eb; }
.related-posts h3 { font-size:18px; font-weight:700; margin-bottom:20px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero h1 span { color: #2563eb; }
.hero .subtitle {
  font-size: 17px;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ── Download Button ────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background .2s, transform .1s;
  text-decoration: none;
}
.btn-primary:hover {
  background: #1d4ed8;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 8px;
  border: 2px solid #2563eb;
  transition: all .2s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #eff6ff;
  text-decoration: none;
}

/* ── Trust Badges ───────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
}
.trust-badges span { display: flex; align-items: center; gap: 5px; }

/* ── Preview Card ───────────────────────────────────────── */
.preview-wrap {
  max-width: 340px;
  margin: 32px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  border: 1px solid #e5e7eb;
}
.preview-wrap img { width: 100%; }
.preview-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1e2a38 0%, #2d3f52 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
}
.preview-placeholder svg { width: 48px; height: 48px; opacity: .6; }

/* ── Section Titles ─────────────────────────────────────── */
.section { padding: 56px 0; }
.section-alt { background: #f9fafb; }
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

/* ── Job Cards Grid ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.job-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.job-card:hover {
  box-shadow: 0 8px 24px rgba(37,99,235,.12);
  transform: translateY(-3px);
  text-decoration: none;
}
.job-card .icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}
.job-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.job-card p {
  font-size: 13px;
  color: #6b7280;
}
.job-card .badge-kd {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  background: #dcfce7;
  color: #166534;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 600;
}

/* ── Steps ──────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 14px; color: #4b5563; }
.step-body a { font-weight: 600; }

/* ── PDF Agile Ad Module ────────────────────────────────── */
.ad-module {
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  border-radius: 16px;
  padding: 40px 32px;
  margin-top: 48px;
}
.ad-module .ad-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e40af;
  text-align: center;
  margin-bottom: 6px;
}
.ad-module .ad-sub {
  text-align: center;
  color: #475569;
  font-size: 14px;
  margin-bottom: 28px;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th {
  background: #1e2a38;
  color: #fff;
  padding: 12px 14px;
  text-align: center;
  font-weight: 700;
}
.compare-table th:first-child { text-align: left; border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:nth-child(even) td { background: #f8fafc; }
.compare-table .good { color: #166534; font-weight: 700; }
.compare-table .bad  { color: #991b1b; }
.ad-cta { text-align: center; margin-top: 28px; }
.ad-cta .btn-primary { font-size: 16px; padding: 13px 36px; }
.ad-cta .ad-note { font-size: 12px; color: #94a3b8; margin-top: 10px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 48px 0 24px;
  font-size: 14px;
  margin-top: 60px;
  border-top: 1px solid #1f2937;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #9ca3af; transition: color .15s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #6b7280;
  font-size: 12px;
}
.footer-policies { display: flex; gap: 24px; }
.footer-policies a { color: #6b7280; }
.footer-policies a:hover { color: #fff; text-decoration: none; }

/* ── GDPR Banner ────────────────────────────────────────── */
#gdpr-banner {
  display: none;
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 440px;
  background: #1e293b;
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  z-index: 9999;
  font-size: 13px;
  line-height: 1.5;
}
#gdpr-banner p { margin-bottom: 12px; }
#gdpr-banner a { color: #38bdf8; }
.gdpr-btns { display: flex; justify-content: flex-end; gap: 8px; }
.gdpr-btns button {
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  border: none;
}
#gdpr-decline { background: transparent; border: 1px solid #64748b !important; color: #94a3b8; }
#gdpr-accept  { background: #2563eb; color: #fff; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav .nav-links { display: none; }
  .hero { padding: 40px 0 32px; }
  .ad-module { padding: 28px 16px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 8px 8px; }
}
