/* ============================================
   ResumeAI - Styles
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --bg-card-hover: #22222f;
    --border: #2a2a3a;
    --border-light: #3a3a4a;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b5;
    --text-muted: #6a6a80;
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --green: #00d2a0;
    --green-bg: rgba(0, 210, 160, 0.1);
    --red: #ff6b6b;
    --red-bg: rgba(255, 107, 107, 0.1);
    --orange: #ffa94d;
    --orange-bg: rgba(255, 169, 77, 0.1);
    --blue: #4dabf7;
    --blue-bg: rgba(77, 171, 247, 0.1);
    --yellow: #ffd43b;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.hamburger-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

/* ============================================
   Sidebar Navigation
   ============================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    z-index: 250;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.sidebar-close:hover {
    border-color: var(--red);
    color: var(--red);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.sidebar-link:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.sidebar-link.active {
    background: var(--accent-glow);
    color: var(--accent-light);
}

.sidebar-link svg {
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-mark {
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light), var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* Audience Pills */
.audience-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid;
}

.pill-biz {
    color: var(--blue);
    border-color: rgba(77, 171, 247, 0.3);
    background: rgba(77, 171, 247, 0.08);
}

.pill-cs {
    color: var(--green);
    border-color: rgba(0, 210, 160, 0.3);
    background: rgba(0, 210, 160, 0.08);
}

.pill-eng {
    color: var(--orange);
    border-color: rgba(255, 169, 77, 0.3);
    background: rgba(255, 169, 77, 0.08);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding: 24px 40px;
    background: rgba(26, 26, 37, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.hero-stat { text-align: center; }

.hero-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-light), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ============================================
   How It Works
   ============================================ */
.how-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: all var(--transition);
}

.step-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(108, 92, 231, 0.15);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Analyzer Section
   ============================================ */
.analyzer-section {
    padding: 100px 0;
}

/* Free AI Badge */
.free-ai-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--green-bg);
    border: 1px solid rgba(0, 210, 160, 0.2);
    border-radius: 100px;
    margin: 0 auto 40px;
    width: fit-content;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
}

/* Upload Zone */
.upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
    background: var(--bg-secondary);
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.05);
    color: var(--accent-light);
}

.upload-text {
    font-size: 14px;
    margin-top: 8px;
}

.upload-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.upload-success {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--green-bg);
    border: 1px solid rgba(0, 210, 160, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
}

.upload-clear {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.upload-clear:hover { color: var(--red); }

/* Input Grid */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.input-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.input-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.input-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.input-card textarea {
    width: 100%;
    height: 320px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.6;
    resize: vertical;
    transition: border-color var(--transition);
}

.input-card textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.input-card textarea::placeholder {
    color: var(--text-muted);
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Analyze Button */
.analyze-btn-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.analyze-button {
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
    min-width: 220px;
}

.analyze-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.analyze-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.analyze-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   Progress Bar
   ============================================ */
.progress-section {
    margin-bottom: 48px;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.progress-step.active { color: var(--accent-light); }
.progress-step.done { color: var(--green); }

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--transition);
}

.progress-step.active .step-dot {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.progress-step.done .step-dot { background: var(--green); }

/* ============================================
   Results Section
   ============================================ */
.results-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.result-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.step-badge-1 { background: var(--accent-glow); color: var(--accent-light); }
.step-badge-2 { background: var(--orange-bg); color: var(--orange); }
.step-badge-3 { background: var(--green-bg); color: var(--green); }
.step-badge-4 { background: var(--blue-bg); color: var(--blue); }

.result-header h3 {
    font-size: 20px;
    font-weight: 700;
}

/* Score Ring */
.score-display {
    display: flex;
    align-items: center;
    gap: 40px;
}

.score-ring-container {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }

.score-ring-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 8;
}

.score-ring-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 326.73;
    stroke-dashoffset: 326.73;
    transition: stroke-dashoffset 1.5s ease, stroke 0.5s ease;
}

.score-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
}

.score-details {
    flex: 1;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-line;
}

/* Keywords */
.keywords-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.keyword-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.keyword-num {
    width: 32px;
    height: 32px;
    background: var(--orange-bg);
    color: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.keyword-text {
    flex: 1;
}

.keyword-text strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.keyword-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Rewrite */
.rewrite-content {
    margin-bottom: 20px;
}

.rewrite-entry {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.rewrite-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rewrite-entry h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.rewrite-original {
    padding: 12px 16px;
    background: var(--red-bg);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.rewrite-improved {
    padding: 12px 16px;
    background: var(--green-bg);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    color: var(--text-primary);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.copy-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

/* ATS */
.ats-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ats-item {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border-left: 3px solid;
    font-size: 14px;
    line-height: 1.6;
}

.ats-item.pass {
    background: var(--green-bg);
    border-color: var(--green);
}

.ats-item.warn {
    background: var(--orange-bg);
    border-color: var(--orange);
}

.ats-item.fail {
    background: var(--red-bg);
    border-color: var(--red);
}

.ats-item strong {
    display: block;
    margin-bottom: 4px;
}

.ats-item.pass strong { color: var(--green); }
.ats-item.warn strong { color: var(--orange); }
.ats-item.fail strong { color: var(--red); }

/* Error */
.error-display {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--red-bg);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius);
    margin-top: 20px;
}

.error-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.error-display p {
    color: var(--red);
    font-size: 14px;
}

/* ============================================
   Tips Section
   ============================================ */
.tips-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.tip-card:hover {
    border-color: var(--border-light);
}

.tip-category {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-glow);
    color: var(--accent-light);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tip-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tip-example {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tip-bad, .tip-good {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.5;
}

.tip-bad {
    background: var(--red-bg);
    color: var(--text-secondary);
    border-left: 3px solid var(--red);
}

.tip-good {
    background: var(--green-bg);
    color: var(--text-primary);
    border-left: 3px solid var(--green);
}

.label {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label.bad { background: var(--red); color: white; }
.label.good { background: var(--green); color: var(--bg-primary); }

.tip-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-item::before {
    font-size: 16px;
    flex-shrink: 0;
}

.check-item.pass {
    background: var(--green-bg);
    color: var(--green);
}

.check-item.pass::before { content: "✓"; }

.check-item.fail {
    background: var(--red-bg);
    color: var(--red);
}

.check-item.fail::before { content: "✕"; }

.tip-stat-row {
    display: flex;
    gap: 16px;
}

.tip-stat {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Footer
   ============================================ */
/* ============================================
   Connect Section
   ============================================ */
.connect-section {
    padding: 80px 24px;
}

.connect-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s;
}

.connect-card:hover {
    border-color: rgba(108, 92, 231, 0.4);
}

.connect-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 119, 181, 0.12);
    color: #0077b5;
    margin-bottom: 20px;
}

.connect-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.connect-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #0077b5;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.connect-btn:hover {
    background: #005e93;
    transform: translateY(-1px);
}

/* ============================================
   Before/After Example Showcase
   ============================================ */
.example-showcase {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.example-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.example-before {
    border-color: rgba(255, 107, 107, 0.2);
}

.example-after {
    border-color: rgba(0, 210, 160, 0.2);
}

.example-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.example-bullet {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 12px;
    border-left: 2px solid var(--border);
}

.example-bullet.dim {
    color: var(--text-muted);
    border-color: rgba(255, 107, 107, 0.3);
}

.example-bullet.highlight {
    color: var(--text-primary);
    border-color: rgba(0, 210, 160, 0.4);
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.example-tag {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.tag-red {
    background: var(--red-bg);
    color: var(--red);
}

.tag-green {
    background: var(--green-bg);
    color: var(--green);
}

/* ============================================
   JD Example Box (Expandable)
   ============================================ */
.jd-example-box {
    margin-top: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.jd-example-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
    list-style: none;
}

.jd-example-toggle::-webkit-details-marker {
    display: none;
}

.jd-example-toggle::after {
    content: '\25BC';
    font-size: 10px;
    margin-left: auto;
    transition: transform 0.2s ease;
}

details[open] .jd-example-toggle::after {
    transform: rotate(180deg);
}

.jd-example-toggle:hover {
    color: var(--text-primary);
}

.jd-example-content {
    padding: 0 14px 14px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.jd-example-content ul {
    margin: 8px 0 0 0;
    padding-left: 16px;
}

.jd-example-content li {
    margin-bottom: 4px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* ============================================
   About Page
   ============================================ */
.about-section {
    padding: 60px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
}

.about-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-light);
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-role {
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.about-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
    border: 1px solid rgba(10, 102, 194, 0.25);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.about-linkedin:hover {
    background: rgba(10, 102, 194, 0.2);
    border-color: rgba(10, 102, 194, 0.4);
    transform: translateY(-1px);
}

.about-linkedin svg {
    flex-shrink: 0;
}

/* ============================================
   Connect Section
   ============================================ */
.connect-section {
    padding: 0 0 60px;
}

.connect-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
}

.connect-card:hover {
    border-color: #0a66c2;
    background: rgba(10, 102, 194, 0.08);
    transform: translateY(-2px);
}

.connect-card svg {
    color: #0a66c2;
    flex-shrink: 0;
}

.connect-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.connect-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   Contact Form
   ============================================ */
.contact-section {
    padding: 0 0 100px;
}

.contact-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a6a80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

.footer p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .input-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .score-display { flex-direction: column; align-items: flex-start; }
    .tip-stat-row { flex-direction: column; }
}

@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .result-card { padding: 20px; }
    .nav-links { display: none; }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .example-grid { grid-template-columns: 1fr; }
}
