/* ─── Variables ─────────────────────────────────────────── */
:root {
  --primary:       #0f2444;
  --primary-light: #1e3a5f;
  --accent:        #d4af37;
  --accent-hover:  #b8960f;
  --pro:           #4f46e5;
  --elite:         #d4af37;
  --success:       #10b981;
  --error:         #ef4444;
  --warning:       #f59e0b;
  --text:          #1e293b;
  --text-light:    #64748b;
  --bg:            #f8fafc;
  --white:         #ffffff;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.10);
  --shadow-md:     0 4px 12px rgba(0,0,0,.12);
  --shadow-lg:     0 10px 30px rgba(0,0,0,.15);
  --radius:        10px;
  --radius-sm:     6px;
  --radius-lg:     16px;
  --font:          'Inter', sans-serif;
  --nav-h:         64px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ─── Container ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .9rem; transition: all .2s; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,175,55,.4); }
.btn-secondary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg); border-color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-danger { background: var(--error); color: white; border-color: var(--error); }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 7px 16px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.nav-container { height: 100%; display: flex; align-items: center; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 800; color: white; }
.nav-logo i { color: var(--accent); font-size: 1.4rem; }
.logo-pro { color: var(--accent); }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a { padding: 6px 14px; border-radius: var(--radius-sm); color: rgba(255,255,255,.8); font-weight: 500; font-size: .9rem; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,.1); }
.nav-actions { display: flex; gap: 10px; margin-left: auto; }
.nav-actions .btn-ghost { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.25); }
.nav-actions .btn-ghost:hover { color: white; border-color: white; background: rgba(255,255,255,.1); }
.hamburger { display: none; color: white; font-size: 1.3rem; padding: 8px; }
.nav-user { display: flex; align-items: center; gap: 10px; color: white; font-weight: 600; }
.nav-user .plan-chip { background: var(--accent); color: var(--primary); padding: 2px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; }
#nav-auth-area { display: flex; align-items: center; gap: 10px; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1a4080 100%);
  display: flex; align-items: center;
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.4); color: var(--accent); padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600; margin-bottom: 24px; }
.hero-title { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(90deg, var(--accent), #fff06e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: rgba(255,255,255,.8); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; }
.stat { text-align: center; }
.stat-value { display: block; font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.65); }

/* CV Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.cv-mockup { position: relative; width: 320px; height: 400px; }
.cv-card { position: absolute; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.cv-card-main { width: 290px; height: 380px; top: 20px; left: 20px; padding: 24px; z-index: 2; }
.cv-card-secondary { width: 240px; height: 320px; top: 0; left: 0; background: #e8f4f8; z-index: 1; border-radius: var(--radius-lg); }
.cv-preview-mini { display: flex; flex-direction: column; gap: 8px; }
.cvm-header { height: 8px; background: var(--primary); border-radius: 4px; margin-bottom: 4px; }
.cvm-name { height: 12px; background: var(--primary); border-radius: 4px; width: 70%; }
.cvm-subtitle { height: 8px; background: #94a3b8; border-radius: 4px; width: 50%; }
.cvm-line { height: 6px; background: #e2e8f0; border-radius: 4px; }
.cvm-line.cvm-short { width: 65%; }
.cvm-divider { height: 1px; background: var(--border); margin: 4px 0; }
.cvm-section-title { height: 8px; background: var(--primary); border-radius: 4px; width: 40%; }
.cvm-tags { display: flex; gap: 6px; }
.cvm-tag { height: 16px; background: #e2e8f0; border-radius: 20px; width: 50px; }
.floating-badge { position: absolute; background: white; border-radius: var(--radius); padding: 8px 14px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .82rem; color: var(--primary); }
.ats-badge { bottom: -10px; right: -20px; color: var(--success); }
.ats-badge i { color: var(--success); }
.lang-badge { top: -10px; right: -30px; }

/* ─── Section Header ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ─── Features ───────────────────────────────────────────── */
.features { padding: 100px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all .3s; }
.feature-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(212,175,55,.15); transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon i { font-size: 1.4rem; color: var(--accent); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: .92rem; line-height: 1.65; }

/* ─── Templates Gallery ─────────────────────────────────── */
.templates-section { padding: 100px 0; background: var(--bg); }
.templates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.template-card { background: white; border-radius: var(--radius-lg); border: 2px solid var(--border); overflow: hidden; transition: all .3s; }
.template-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.template-preview { height: 200px; padding: 16px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 6px; }
.template-preview.classic-preview  { background: #f9f7f4; }
.template-preview.modern-preview   { background: #f0f4f8; }
.template-preview.creative-preview { background: #f0f4f0; display: flex; flex-direction: row; gap: 0; padding: 0; }
.template-preview.tech-preview     { background: #1e293b; }
.template-preview.exec-preview     { background: #faf8f0; }

/* Template preview elements */
.tp-header { height: 6px; background: var(--primary); border-radius: 2px; }
.tp-name   { height: 10px; background: #1a1a1a; border-radius: 3px; width: 55%; }
.tp-sub    { height: 7px; background: #aaa; border-radius: 3px; width: 40%; }
.tp-divider { height: 1px; background: #ccc; margin: 2px 0; }
.tp-line   { height: 5px; background: #ddd; border-radius: 3px; }
.tp-line.short { width: 60%; }
.tp-accent-bar { height: 8px; background: var(--pro); }
.tp-header-2col { display: flex; justify-content: space-between; padding: 8px; }
.tp-name-big { height: 10px; background: var(--primary); border-radius: 3px; width: 45%; }
.tp-contact  { display: flex; flex-direction: column; gap: 4px; }
.tp-contact::before,.tp-contact::after { content: ''; display: block; height: 5px; background: #bbb; border-radius: 3px; width: 60px; }
.tp-sidebar { width: 40%; background: #2d9596; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.tp-photo   { width: 40px; height: 40px; background: rgba(255,255,255,.3); border-radius: 50%; margin: 0 auto; }
.tp-s-line  { height: 5px; background: rgba(255,255,255,.4); border-radius: 3px; }
.tp-main-area { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.tp-mono-name { height: 10px; background: #94a3b8; border-radius: 2px; width: 60%; font-family: monospace; }
.tp-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.tp-tag  { height: 14px; background: #334155; border-radius: 10px; width: 36px; }
.tp-gold-header { height: 10px; background: var(--accent); }
.tp-exec-name   { height: 10px; background: #1a1a1a; border-radius: 3px; width: 55%; margin-top: 4px; }
.tp-exec-info   { height: 6px; background: #888; border-radius: 3px; width: 80%; }
.tp-gold-line   { height: 2px; background: var(--accent); margin: 4px 0; }

.template-info { padding: 16px; }
.template-info h3 { font-size: .95rem; font-weight: 700; color: var(--primary); margin: 6px 0 4px; }
.template-info p  { font-size: .8rem; color: var(--text-light); margin-bottom: 10px; line-height: 1.4; }
.plan-badge { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: .72rem; font-weight: 700; }
.plan-badge.plan-free  { background: #e2e8f0; color: #475569; }
.plan-badge.plan-pro   { background: #ede9fe; color: var(--pro); }
.plan-badge.plan-elite { background: #fef9c3; color: #92400e; }
.ats-score { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: .78rem; color: var(--text-light); }
.ats-bar  { flex: 1; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.ats-fill { height: 100%; background: var(--success); border-radius: 4px; }

/* ─── Pricing ────────────────────────────────────────────── */
.pricing-teaser { padding: 100px 0; background: var(--primary); }
.pricing-teaser .section-header h2 { color: white; }
.pricing-teaser .section-header p  { color: rgba(255,255,255,.7); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pricing-card { background: white; border-radius: var(--radius-lg); padding: 32px 28px; position: relative; }
.pricing-popular { background: var(--accent); transform: scale(1.04); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 18px; border-radius: 20px; font-size: .78rem; font-weight: 700; white-space: nowrap; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.plan-price { margin-bottom: 8px; }
.price-amount { font-size: 2.4rem; font-weight: 900; color: var(--primary); }
.price-period { font-size: 1rem; color: var(--text-light); }
.price-local { font-size: .82rem; color: var(--text-light); margin-bottom: 20px; }
.pricing-popular .price-local { color: var(--primary); }
.plan-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text); }
.plan-features li i { color: var(--success); font-size: .85rem; }

/* ─── Jobs Teaser ────────────────────────────────────────── */
.jobs-teaser { padding: 80px 0; background: white; text-align: center; }
.jobs-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin: 32px 0; }
.job-logo-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 24px; border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-light); font-weight: 600; font-size: .85rem; transition: all .2s; }
.job-logo-item:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }
.job-logo-item i { font-size: 1.8rem; }

/* ─── LinkedIn Teaser ────────────────────────────────────── */
.linkedin-teaser { padding: 80px 0; background: linear-gradient(135deg, #0a66c2, #004182); text-align: center; }
.linkedin-teaser .section-header h2 { color: white; }
.linkedin-teaser .section-header p  { color: rgba(255,255,255,.8); }
.linkedin-features { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin: 32px 0; }
.linkedin-feat { display: flex; flex-direction: column; align-items: center; gap: 10px; color: white; font-size: .9rem; }
.linkedin-feat i { font-size: 2rem; color: #70b5f9; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: #09172e; color: rgba(255,255,255,.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { color: white; margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: .88rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: white; }

/* ─── Modals ─────────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
.modal-overlay.active { display: flex; }
.modal-box { background: white; border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 440px; position: relative; box-shadow: var(--shadow-lg); animation: modalIn .2s ease; }
@keyframes modalIn { from { opacity:0; transform: scale(.95) translateY(-10px); } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--text-light); cursor: pointer; }
.modal-close:hover { background: var(--border); }
.modal-box h2 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.modal-box p { color: var(--text-light); margin-bottom: 24px; font-size: .9rem; }
.modal-switch { margin-top: 20px; text-align: center; font-size: .88rem; color: var(--text-light); }
.modal-switch a { color: var(--pro); font-weight: 600; cursor: pointer; }
.modal-switch a:hover { text-decoration: underline; }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .92rem; font-family: inherit; color: var(--text); background: white; transition: border .2s;
}
.form-control:focus { outline: none; border-color: var(--pro); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.form-control::placeholder { color: #aaa; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: 4px; }

/* ─── Toast ──────────────────────────────────────────────── */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--primary); color: white; padding: 12px 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; min-width: 260px;
  animation: slideIn .3s ease; font-size: .9rem;
}
@keyframes slideIn { from { opacity:0; transform: translateX(100%); } }
.toast.success { background: var(--success); }
.toast.error   { background: var(--error); }
.toast.warning { background: var(--warning); color: var(--primary); }
.toast i { font-size: 1rem; }

/* ─── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }  .mt-4 { margin-top: 16px; } .mb-4 { margin-bottom: 16px; }
.hidden { display: none !important; }
.loading { opacity: .6; pointer-events: none; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-container    { grid-template-columns: 1fr; text-align: center; }
  .hero-visual       { display: none; }
  .hero-actions      { justify-content: center; }
  .hero-stats        { justify-content: center; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: 1fr; }
  .pricing-popular   { transform: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .hamburger { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Jobs Page ──────────────────────────────────────────── */
.jobs-page { padding-top: var(--nav-h); }
.jobs-hero { background: linear-gradient(135deg, var(--primary), #1a4080); padding: 60px 0; text-align: center; }
.jobs-hero h1 { font-size: 2.2rem; font-weight: 900; color: white; margin-bottom: 12px; }
.jobs-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.jobs-content { padding: 60px 0; }
.jobs-section { margin-bottom: 60px; }
.jobs-section-title { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.jobs-section-title h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.jobs-section-title .flag { font-size: 1.6rem; }
.job-boards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.job-board-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; transition: all .3s; display: flex; flex-direction: column; gap: 10px;
}
.job-board-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-board-header { display: flex; align-items: center; gap: 12px; }
.job-board-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.job-board-header h3 { font-size: 1rem; font-weight: 700; color: var(--primary); }
.job-board-header .board-type { font-size: .75rem; color: var(--text-light); }
.job-board-desc { font-size: .85rem; color: var(--text-light); line-height: 1.5; }
.job-board-tip { font-size: .8rem; background: #fffbeb; border-left: 3px solid var(--accent); padding: 8px 12px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--text); }
.job-board-tip strong { color: var(--primary); }
.job-board-link { display: inline-flex; align-items: center; gap: 6px; color: var(--pro); font-weight: 600; font-size: .85rem; margin-top: auto; }
.job-board-link:hover { text-decoration: underline; }

/* ─── LinkedIn Guide ─────────────────────────────────────── */
.linkedin-page { padding-top: var(--nav-h); }
.linkedin-hero { background: linear-gradient(135deg, #0a66c2, #004182); padding: 60px 0; text-align: center; }
.linkedin-hero h1 { font-size: 2.2rem; font-weight: 900; color: white; margin-bottom: 12px; }
.linkedin-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.linkedin-content { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 60px 24px; max-width: 1100px; margin: 0 auto; }
.linkedin-nav { position: sticky; top: calc(var(--nav-h) + 20px); height: fit-content; }
.linkedin-nav h3 { font-size: .85rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.linkedin-nav ul li a { display: block; padding: 8px 12px; font-size: .88rem; color: var(--text-light); border-radius: var(--radius-sm); transition: all .2s; border-left: 2px solid transparent; }
.linkedin-nav ul li a:hover, .linkedin-nav ul li a.active { color: #0a66c2; background: #eff6ff; border-left-color: #0a66c2; }
.linkedin-sections { display: flex; flex-direction: column; gap: 48px; }
.linkedin-section { scroll-margin-top: calc(var(--nav-h) + 20px); }
.linkedin-section h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.linkedin-section .section-intro { color: var(--text-light); margin-bottom: 20px; font-size: .95rem; }
.tip-box { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius); padding: 16px 20px; margin: 16px 0; }
.tip-box h4 { color: #1d4ed8; font-size: .9rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.tip-box p, .tip-box li { font-size: .88rem; color: var(--text); line-height: 1.6; }
.tip-box ul { padding-left: 18px; margin-top: 6px; list-style: disc; }
.formula-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 16px 20px; margin: 16px 0; font-family: monospace; font-size: .9rem; color: #166534; }
.formula-box strong { display: block; color: #15803d; margin-bottom: 8px; font-family: inherit; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.example-box { background: #fafaf9; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; margin: 10px 0; position: relative; }
.example-box .copy-btn { position: absolute; top: 10px; right: 10px; background: var(--primary); color: white; border: none; padding: 4px 12px; border-radius: var(--radius-sm); font-size: .75rem; cursor: pointer; }
.example-box p { font-size: .88rem; line-height: 1.7; color: var(--text); font-style: italic; }
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.do-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 16px; }
.dont-box { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: 16px; }
.do-box h5 { color: #15803d; font-size: .82rem; text-transform: uppercase; margin-bottom: 10px; }
.dont-box h5 { color: #991b1b; font-size: .82rem; text-transform: uppercase; margin-bottom: 10px; }
.do-box ul, .dont-box ul { padding-left: 16px; list-style: disc; }
.do-box li, .dont-box li { font-size: .85rem; line-height: 1.5; color: var(--text); margin-bottom: 4px; }
.checklist { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-item i { color: var(--success); margin-top: 2px; font-size: .9rem; }
.check-item p { font-size: .88rem; color: var(--text); }

/* ─── Pricing Page ───────────────────────────────────────── */
.pricing-page { padding-top: var(--nav-h); }
.pricing-hero { background: linear-gradient(135deg, var(--primary), #1a4080); padding: 60px 0; text-align: center; }
.pricing-hero h1 { font-size: 2.2rem; font-weight: 900; color: white; margin-bottom: 12px; }
.pricing-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.pricing-full { padding: 80px 0; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto 60px; }
.pricing-card-full { background: white; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 36px; position: relative; transition: all .3s; }
.pricing-card-full:hover { box-shadow: var(--shadow-lg); }
.pricing-card-full.popular { border-color: var(--accent); }
.pricing-card-full .popular-ring { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--primary); padding: 4px 20px; border-radius: 20px; font-size: .78rem; font-weight: 800; }
.payment-methods { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.pay-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; cursor: pointer; border: 2px solid; transition: all .2s; width: 100%; }
.pay-btn.mp { background: #009ee3; color: white; border-color: #009ee3; }
.pay-btn.mp:hover { background: #007ab5; }
.pay-btn.stripe { background: white; color: #635bff; border-color: #635bff; }
.pay-btn.stripe:hover { background: #f5f4ff; }
.pay-divider { text-align: center; font-size: .78rem; color: var(--text-light); }
.comparison-table { max-width: 900px; margin: 0 auto; }
.comparison-table h3 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; text-align: center; }
.comp-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.comp-table th { background: var(--primary); color: white; padding: 14px 18px; font-size: .88rem; text-align: center; }
.comp-table th:first-child { text-align: left; }
.comp-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: .88rem; text-align: center; color: var(--text); }
.comp-table td:first-child { text-align: left; font-weight: 500; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table .check { color: var(--success); } .comp-table .cross { color: var(--error); }
.comp-table .highlight { background: #fffbeb; }
