﻿/* =====================================================
   RESUME TARGET - SERVICE PAGES CSS
   /asset/css/templates/service-pages.css
   Monday.com Style - Blue Accent for Services
   v20260123b - Removed duplicates, uses shared-pages.css
   ===================================================== */

/* =====================================================
   IMPORTANT: SHARED STYLES LOCATION
   =====================================================
   
   The following styles are now in shared-pages.css:
   - .top-bar (navy top bar)
   - .breadcrumb (breadcrumb navigation)  
   - .btn-primary, .btn-outline, .btn-lg (buttons)
   - .container (max-width wrapper)
   - .cta-section (navy CTA section - use .cta-section-service for blue variant)
   - .process-nav / .service-nav (prev/next navigation)
   - .section-title, .section-title-service, .section-subtitle (typography)
   - .section-alt (gray background sections)
   - .guarantee-box (guarantee styling)
   - .info-cards, .info-card (info card grids)
   - .trust-cards, .trust-card, .trust-icon, .trust-icon-box (trust card grids)
   
   Mobile styles for hiding top-bar are in shared-pages-mobile.css
   
   ===================================================== */

/* =====================================================
   BASE & RESET
   ===================================================== */
.service-page {
    color: #1f295e;
    font-size: 17px;
    line-height: 1.6;
}

.service-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   SERVICE COLOR SCHEME (Blue accent)
   ===================================================== */
:root {
    --service-primary: #3b82f6;
    --service-primary-dark: #2563eb;
    --service-primary-light: #eff6ff;
    --service-primary-border: #bfdbfe;
    --service-gradient-start: #3b82f6;
    --service-gradient-end: #1d4ed8;
}

/* =====================================================
   HERO SECTION - LIGHT BLUE THEME
   ===================================================== */
.hero-service {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #e0f2fe 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-service::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0.05) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* FIXED: Changed align-items from 'center' to 'start' 
   This aligns the left content to the TOP of the right visual */
.hero-service .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-service .hero-content {
    max-width: 600px;
}

.hero-service .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0369a1;
    margin-bottom: 16px;
    background: rgba(3, 105, 161, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
}

.hero-service h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: #1f295e;
    margin-bottom: 24px;
}

.hero-service h1 em {
    font-style: normal;
    color: #0284c7;
}

.hero-service .hero-sub {
    font-size: 20px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-service .hero-included {
    font-size: 14px;
    color: #0284c7;
    font-weight: 600;
    margin-bottom: 32px;
    padding: 10px 16px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 6px;
    display: inline-block;
}

.hero-service .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero CTA buttons wrapper */
.hero-service .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Service Hero Visual */
.hero-service .hero-visual {
    display: flex;
    justify-content: flex-end;
}

/* =====================================================
   SERVICE BUTTONS (Blue variant)
   ===================================================== */
.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #3b82f6;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-service:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-1px);
}

.btn-service-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #fff;
    color: #1f295e;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #cbd5e1;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-service-outline:hover {
    border-color: #0284c7;
    background: #fff;
    color: #1f295e;
}

.btn-service-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #fff;
    color: #1f295e;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-service-light:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1f295e;
}

/* =====================================================
   HERO VISUAL CARDS
   ===================================================== */

/* Resume Journey Visual */
.resume-journey-visual {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journey-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: transform 0.3s;
}

.journey-card:nth-child(2) {
    transform: translateX(20px);
}

.journey-card:nth-child(3) {
    transform: translateX(40px);
}

.journey-card.dimmed {
    opacity: 0.6;
}

.journey-card.highlight {
    border: 2px solid #0284c7;
    background: #e0f2fe;
}

.journey-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.journey-icon.red { background: #fee2e2; }
.journey-icon.yellow { background: #fef3c7; }
.journey-icon.green { background: #dcfce7; }
.journey-icon.blue { background: #dbeafe; }

.journey-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f295e;
    margin-bottom: 2px;
}

.journey-content span {
    font-size: 12px;
    color: #64748b;
}

/* Distribution Network Visual */
.distribution-visual {
    width: 360px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.distribution-header {
    text-align: center;
    margin-bottom: 20px;
}

.distribution-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 4px;
}

.distribution-header span {
    font-size: 12px;
    color: #64748b;
}

.distribution-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dist-stat {
    text-align: center;
    padding: 12px 8px;
    background: #f8fafc;
    border-radius: 10px;
}

.dist-stat .num {
    font-size: 24px;
    font-weight: 700;
    color: #0284c7;
    line-height: 1;
}

.dist-stat .label {
    font-size: 10px;
    color: #64748b;
    margin-top: 4px;
    display: block;
}

.distribution-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.region-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 6px 12px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 100px;
}

.region-tag.selected {
    background: #0284c7;
    color: #fff;
}

/* LinkedIn Profile Visual */
.linkedin-visual {
    width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.linkedin-header {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    padding: 20px;
    text-align: center;
}

.linkedin-avatar {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #0077b5;
    border: 3px solid #fff;
}

.linkedin-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.linkedin-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.linkedin-body {
    padding: 20px;
}

.linkedin-stat-row {
    display: flex;
    justify-content: space-around;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

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

.linkedin-stat .num {
    font-size: 18px;
    font-weight: 700;
    color: #1f295e;
}

.linkedin-stat .label {
    font-size: 10px;
    color: #64748b;
}

.linkedin-sections {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.linkedin-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.linkedin-section.complete {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.linkedin-section-icon {
    font-size: 14px;
}

.linkedin-section-text {
    flex: 1;
    font-size: 12px;
    color: #475569;
}

.linkedin-section-check {
    color: #16a34a;
    font-weight: 700;
}

/* LinkedIn Card Visual (for linkedin-optimization page) */
.linkedin-profile-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.linkedin-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.linkedin-card .linkedin-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: left;
}

.linkedin-card .linkedin-header.optimized {
    background: #f0f9ff;
    border: 1px solid #0077B5;
}

.linkedin-card .linkedin-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    border: none;
}

.linkedin-card .linkedin-avatar svg {
    width: 32px;
    height: 32px;
}

.linkedin-card .linkedin-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.linkedin-card .linkedin-name {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
}

.linkedin-headline-bad {
    font-size: 14px;
    color: #666;
}

.linkedin-headline-good {
    font-size: 14px;
    color: #0077B5;
    font-weight: 500;
}

.linkedin-arrow {
    text-align: center;
    font-size: 24px;
    color: #47BB5C;
    margin: 8px 0;
}

.visual-label {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 12px;
    font-style: italic;
}

/* Second Resume Visual - Side by Side */
.dual-resume-visual {
    width: 380px;
    position: relative;
}

.resume-stack {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.resume-doc {
    width: 170px;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.resume-doc.primary {
    transform: rotate(-2deg);
}

.resume-doc.secondary {
    transform: rotate(2deg);
    margin-top: 20px;
}

.resume-doc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
}

.resume-doc.primary .resume-doc-header {
    border-color: #3b82f6;
}

.resume-doc.secondary .resume-doc-header {
    border-color: #8b5cf6;
}

.resume-doc-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.resume-doc.primary .resume-doc-icon {
    background: #3b82f6;
}

.resume-doc.secondary .resume-doc-icon {
    background: #8b5cf6;
}

.resume-doc-title {
    font-size: 11px;
    font-weight: 600;
    color: #1f295e;
}

.resume-doc-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.resume-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
}

.resume-line.short { width: 60%; }
.resume-line.medium { width: 80%; }
.resume-line.long { width: 100%; }

.resume-focus-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding: 0 10px;
}

.focus-label {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    color: #fff;
}

.focus-label.primary { background: #3b82f6; }
.focus-label.secondary { background: #8b5cf6; }

/* =====================================================
   QUOTE SECTION
   ===================================================== */
.quote-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    text-align: center;
}

.quote-section .container {
    max-width: 800px;
}

.quote-section blockquote {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 24px;
    font-style: italic;
}

.quote-section blockquote em {
    color: #60a5fa;
    font-style: normal;
}

.quote-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   PROBLEM/SOLUTION SECTION
   ===================================================== */
.problem-section {
    padding: 80px 0;
    background: #fff;
}

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

.problem-card, .solution-card {
    padding: 32px;
    border-radius: 16px;
}

.problem-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.solution-card {
    background: #e0f2fe;
    border: 1px solid #7dd3fc;
}

.problem-card h3, .solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-card h3 {
    color: #dc2626;
}

.solution-card h3 {
    color: #0369a1;
}

.problem-card p, .solution-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

/* =====================================================
   EMOTIONAL QUOTE/CALLOUT
   ===================================================== */
.emotional-callout {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    text-align: center;
}

.emotional-callout .container {
    max-width: 800px;
}

.emotional-callout blockquote {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 24px;
    font-style: italic;
}

.emotional-callout blockquote em {
    color: #60a5fa;
    font-style: normal;
}

.emotional-callout p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   COMPETITION REALITY SECTION
   ===================================================== */
.competition-section {
    padding: 80px 0;
    background: #f8fafc;
}

.competition-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.applicant-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.applicant-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.applicant-bar.you {
    background: #e0f2fe;
    border-color: #0284c7;
    border-width: 2px;
}

.applicant-avatar {
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.applicant-bar.you .applicant-avatar {
    background: #0284c7;
    color: #fff;
}

.applicant-info {
    flex: 1;
}

.applicant-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1f295e;
}

.applicant-info span {
    font-size: 11px;
    color: #64748b;
}

.competition-vs {
    text-align: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: #1f295e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.vs-circle span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.competition-stat {
    font-size: 14px;
    color: #64748b;
}

.competition-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 4px;
}

.job-posting {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.job-posting-icon {
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.job-posting h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.job-posting p {
    font-size: 14px;
    color: #64748b;
}

/* =====================================================
   FEATURE ROWS (Light variation)
   ===================================================== */
.feature-row-service {
    padding: 80px 0;
}

.feature-row-service .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row-service.reversed .container {
    direction: rtl;
}

.feature-row-service.reversed .container > * {
    direction: ltr;
}

.feature-row-service.alt {
    background: #f8fafc;
}

.feature-label-service {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0284c7;
    margin-bottom: 12px;
}

.feature-text-service h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f295e;
    margin-bottom: 16px;
}

.feature-text-service p {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Blue Checklist - Single Line */
.checklist-blue {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist-blue li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #475569;
    flex-wrap: nowrap;
}

.checklist-blue .check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.checklist-blue li strong {
    white-space: nowrap;
}

.checklist-blue li span {
    color: #64748b;
}

/* =====================================================
   PROCESS PREVIEW SECTION
   ===================================================== */
.process-preview {
    padding: 80px 0;
    background: #fff;
}

.process-preview-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 40px auto 0;
}

.preview-step {
    text-align: center;
    position: relative;
}

.preview-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 28px;
    right: -18px;
    font-size: 20px;
    color: #cbd5e1;
}

.preview-step-num {
    width: 56px;
    height: 56px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    font-weight: 700;
    color: #0284c7;
}

.preview-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.preview-step p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.process-preview-cta {
    text-align: center;
    margin-top: 48px;
}

/* =====================================================
   RECRUITER LIST VISUAL
   ===================================================== */
.recruiter-list-visual {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
}

.recruiter-list-header {
    background: #1f295e;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recruiter-list-header h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.recruiter-count-badge {
    background: #0284c7;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.recruiter-list-table {
    padding: 8px 0;
}

.recruiter-list-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
}

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

.recruiter-avatar {
    width: 36px;
    height: 36px;
    background: #0284c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.recruiter-info {
    flex: 1;
}

.recruiter-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1f295e;
}

.recruiter-info span {
    font-size: 11px;
    color: #64748b;
}

.recruiter-list-footer {
    padding: 12px 20px;
    background: #f8fafc;
    text-align: center;
}

.recruiter-list-footer a {
    color: #0284c7;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.recruiter-list-footer a:hover {
    text-decoration: underline;
}

/* =====================================================
   SERVICE INFO CARDS
   ===================================================== */
.info-cards-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card-service {
    padding: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
}

.info-card-service-icon {
    width: 56px;
    height: 56px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.info-card-service h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.info-card-service p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* =====================================================
   CTA SECTION (Blue variant for service pages)
   ===================================================== */
.cta-section-service {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section-service h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section-service p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note-service {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   LINK CARDS (Navigate to other pages)
   ===================================================== */
.link-cards-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.link-card:hover {
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.link-card-icon {
    width: 56px;
    height: 56px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.link-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 4px;
}

.link-card-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.link-card-arrow {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
}

/* =====================================================
   PRICING HIGHLIGHT
   ===================================================== */
.pricing-highlight {
    padding: 60px 0;
    background: #fff;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border: 2px solid #0284c7;
    border-radius: 20px;
    text-align: center;
}

.pricing-box-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: #0284c7;
    color: #fff;
    border-radius: 100px;
    margin-bottom: 20px;
}

.pricing-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 12px;
}

.pricing-box p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-box .price {
    font-size: 48px;
    font-weight: 700;
    color: #0284c7;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-box .price-note {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

/* =====================================================
   RECRUITER BENEFITS
   ===================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.benefit-card-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* =====================================================
   COMPETITION MATH VISUAL
   ===================================================== */
.competition-math-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.math-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    min-width: 140px;
}

.math-card.result {
    background: #fef2f2;
    border-color: #fecaca;
}

.math-card.result .math-number {
    color: #dc2626;
}

.math-number {
    font-size: 48px;
    font-weight: 700;
    color: #1f295e;
    line-height: 1;
    margin-bottom: 8px;
}

.math-label {
    font-size: 14px;
    color: #64748b;
    line-height: 1.3;
}

.math-operator {
    font-size: 32px;
    font-weight: 700;
    color: #cbd5e1;
}

.competition-conclusion {
    text-align: center;
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.competition-conclusion strong {
    color: #dc2626;
}

/* =====================================================
   PROBLEM/SOLUTION CARDS - REDESIGNED
   ===================================================== */
.problem-solution-section {
    padding: 80px 0;
    background: #fff;
}

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

.ps-card {
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.ps-card.problem {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.ps-card.solution {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.ps-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 12px;
    vertical-align: middle;
}

.ps-card.problem .ps-icon {
    background: #fee2e2;
    color: #dc2626;
}

.ps-card.solution .ps-icon {
    background: #dcfce7;
    color: #16a34a;
}

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

.ps-card.problem h3 {
    color: #991b1b;
}

.ps-card.solution h3 {
    color: #166534;
}

.ps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-list li {
    font-size: 15px;
    color: #475569;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.ps-card.problem .ps-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.ps-card.solution .ps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

/* =====================================================
   STACKED CHECKLIST FORMAT
   ===================================================== */
.checklist-stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.check-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.check-content strong {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
}

.check-content span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

.feature-text-service.full-width {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.feature-row-service.alt .feature-text-service.full-width {
    text-align: left;
}

/* =====================================================
   ENHANCED PROCESS SECTION
   ===================================================== */
.process-section-enhanced {
    padding: 80px 0;
    background: #f8fafc;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 48px auto 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.step-line {
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step:last-child .step-line {
    display: none;
}

/* =====================================================
   GUARANTEE SECTION (Service-specific blue variant)
   ===================================================== */
.guarantee-section {
    padding: 60px 0;
    background: #fff;
}

.guarantee-section .guarantee-box {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #3b82f6;
    border-radius: 20px;
}

.guarantee-section .guarantee-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.guarantee-section .guarantee-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 12px;
}

.guarantee-section .guarantee-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* =====================================================
   DISTRIBUTION NETWORK VISUAL
   ===================================================== */
.distribution-network-visual {
    width: 360px;
    height: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resume-center {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.resume-center .resume-icon {
    font-size: 32px;
}

.resume-center span {
    font-size: 11px;
    font-weight: 600;
    color: #1f295e;
    margin-top: 4px;
}

.network-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.network-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.network-node::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
}

.network-node.n1 { top: 20px; left: 50%; transform: translateX(-50%); }
.network-node.n1::before { transform: rotate(90deg); top: 40px; left: 50%; margin-left: -30px; }

.network-node.n2 { top: 60px; right: 20px; }
.network-node.n2::before { transform: rotate(135deg); }

.network-node.n3 { bottom: 80px; right: 20px; }
.network-node.n3::before { transform: rotate(-135deg); }

.network-node.n4 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.network-node.n4::before { transform: rotate(-90deg); bottom: 40px; left: 50%; margin-left: -30px; }

.network-node.n5 { bottom: 80px; left: 20px; }
.network-node.n5::before { transform: rotate(-45deg); }

.network-node.n6 { top: 60px; left: 20px; }
.network-node.n6::before { transform: rotate(45deg); }

.network-label {
    position: absolute;
    bottom: -10px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    width: 100%;
}

/* =====================================================
   TARGETING COMPARISON VISUAL (Hero)
   ===================================================== */
.targeting-comparison-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 320px;
}

.targeting-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.targeting-card.wrong {
    border: 2px solid #fecaca;
    background: #fef2f2;
    opacity: 0.7;
}

.targeting-card.right {
    border: 2px solid #bbf7d0;
    background: #f0fdf4;
}

.targeting-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 15px;
    color: #1f295e;
}

.targeting-x {
    width: 24px;
    height: 24px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.targeting-check {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.targeting-body {
    margin-bottom: 12px;
}

.targeting-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.targeting-line.short {
    width: 60%;
}

.recruiter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

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

.recruiter-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
}

.targeting-result {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
}

.targeting-result.good {
    color: #16a34a;
    font-weight: 600;
}

/* =====================================================
   DISTRIBUTION FLOW VISUAL
   ===================================================== */
.distribution-flow-visual {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flow-step {
    text-align: center;
    padding: 16px;
}

.flow-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.flow-label {
    font-size: 14px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 4px;
}

.flow-detail {
    font-size: 12px;
    color: #64748b;
}

.flow-arrow {
    font-size: 24px;
    color: #0284c7;
    font-weight: 700;
}

/* =====================================================
   WHY IT WORKS SECTION
   ===================================================== */
.why-it-works-section {
    padding: 80px 0;
    background: #f8fafc;
}

.why-it-works-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.why-it-works-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 20px;
}

.why-it-works-content p {
    font-size: 20px;
    color: #475569;
    line-height: 1.6;
}

/* =====================================================
   SECOND RESUME FOCUS PAGE STYLES
   ===================================================== */

/* Dual Focus Visual */
.dual-focus-visual {
    display: flex;
    gap: 20px;
}

.focus-resume {
    width: 150px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.focus-resume:first-child {
    transform: rotate(-3deg);
    border-top: 4px solid #3b82f6;
}

.focus-resume:last-child {
    transform: rotate(3deg);
    border-top: 4px solid #8b5cf6;
}

.focus-resume-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 8px;
}

.focus-resume-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 16px;
}

.focus-resume-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.focus-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
}

.focus-resume:first-child .focus-line.highlight {
    background: #3b82f6;
}

.focus-resume:last-child .focus-line.highlight {
    background: #8b5cf6;
}

/* When Section */
.when-section {
    padding: 80px 0;
    background: #f8fafc;
}

.when-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 40px auto 0;
}

.scenario-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.scenario-number {
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.scenario-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.scenario-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Problem Comparison */
.problem-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.comparison-side {
    padding: 24px;
    border-radius: 12px;
}

.comparison-side.bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.comparison-side.good {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

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

.comparison-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.comparison-side.bad .comparison-icon {
    background: #fee2e2;
    color: #dc2626;
}

.comparison-side.good .comparison-icon {
    background: #dcfce7;
    color: #16a34a;
}

.comparison-header strong {
    font-size: 14px;
    color: #1f295e;
}

.comparison-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-side ul li {
    font-size: 13px;
    color: #475569;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.comparison-side.bad ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #dc2626;
}

.comparison-side.good ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

/* Interview Visual */
.interview-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
}

.interview-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.interview-card.first {
    border-left: 4px solid #3b82f6;
}

.interview-card.second {
    border-left: 4px solid #8b5cf6;
}

.interview-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 8px;
}

.interview-focus {
    font-size: 15px;
    font-weight: 600;
    color: #1f295e;
    margin-bottom: 8px;
}

.interview-result {
    font-size: 13px;
    color: #0284c7;
    font-weight: 600;
}

/* Use Case Visual */
.use-case-visual {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 320px;
}

.use-case-example {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.use-case-from {
    font-size: 16px;
    font-weight: 600;
    color: #1f295e;
    padding: 12px 20px;
    background: #f1f5f9;
    border-radius: 8px;
}

.use-case-arrow {
    font-size: 20px;
    color: #0284c7;
}

.use-case-to {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.use-case-to span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
}

.use-case-to span:first-child {
    background: #3b82f6;
}

.use-case-to span:last-child {
    background: #8b5cf6;
}

/* Clarification Section */
.clarification-section {
    padding: 80px 0;
    background: #fff;
}

.clarification-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.clarification-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 32px;
}

.clarification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.clarification-item {
    padding: 28px;
    border-radius: 12px;
    background: #f8fafc;
    text-align: left;
}

.clarification-item.highlight {
    background: #e0f2fe;
    border: 2px solid #0284c7;
}

.clarification-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 12px;
}

.clarification-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.clarification-item.highlight p {
    color: #0c4a6e;
}

/* Changes Section */
.changes-section {
    padding: 80px 0;
    background: #f8fafc;
}

.changes-table {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.changes-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

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

.changes-row.header {
    background: #1f295e;
}

.changes-row.header .changes-cell {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.changes-cell {
    padding: 16px 20px;
    font-size: 14px;
    color: #475569;
}

.changes-cell.label {
    font-weight: 600;
    color: #1f295e;
    background: #f8fafc;
}

/* Pricing Section Simple */
.pricing-section-simple {
    padding: 80px 0;
    background: #fff;
}

.pricing-simple-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pricing-simple-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 20px;
}

.pricing-simple-content p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pricing-simple-content .pricing-note {
    font-size: 16px;
    font-weight: 600;
    color: #0284c7;
}

/* =====================================================
   LINKEDIN STATS SECTION
   ===================================================== */
.linkedin-stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.stats-visual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 40px auto 0;
}

.stat-visual-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.stat-big-number {
    font-size: 64px;
    font-weight: 700;
    color: #0284c7;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-big-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 12px;
}

.stat-visual-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* =====================================================
   CONSISTENT STORY VISUAL
   ===================================================== */
.consistent-story-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.story-doc {
    width: 140px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.story-doc.resume {
    border-top: 4px solid #3b82f6;
}

.story-doc.linkedin {
    border-top: 4px solid #0077b5;
}

.story-doc-header {
    font-size: 14px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 16px;
    text-align: center;
}

.story-doc-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.story-doc-line.short {
    width: 60%;
}

.story-connector {
    width: 40px;
    height: 40px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #16a34a;
}

/* =====================================================
   RECRUITER REASONS SECTION
   ===================================================== */
.recruiter-reasons-section {
    padding: 80px 0;
    background: #f8fafc;
}

.reason-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 40px auto 0;
}

.reason-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.reason-number {
    width: 48px;
    height: 48px;
    background: #0284c7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.reason-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* =====================================================
   TARGETING VISUAL
   ===================================================== */
.targeting-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
}

.target-example {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #e2e8f0;
}

.target-example.bad {
    background: #fef2f2;
    border-color: #fecaca;
}

.target-example.good {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.target-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.target-example.bad .target-icon {
    background: #fee2e2;
    color: #dc2626;
}

.target-example.good .target-icon {
    background: #dcfce7;
    color: #16a34a;
}

.target-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f295e;
    margin-bottom: 2px;
}

.target-content span {
    display: block;
    font-size: 14px;
    color: #64748b;
}

.target-content small {
    display: block;
    font-size: 12px;
    color: #0284c7;
    margin-top: 4px;
}

/* =====================================================
   SELECTION VISUAL
   ===================================================== */
.selection-visual {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 340px;
}

.selection-group {
    margin-bottom: 24px;
}

.selection-group:last-child {
    margin-bottom: 0;
}

.selection-group h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 12px;
}

.selection-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selection-tags .tag {
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 13px;
    color: #64748b;
}

.selection-tags .tag.selected {
    background: #e0f2fe;
    border-color: #0284c7;
    color: #0284c7;
}

/* =====================================================
   TRUST SECTION
   ===================================================== */
.trust-section {
    padding: 80px 0;
    background: #fff;
}

/* =====================================================
   LINKEDIN BEFORE/AFTER VISUAL
   ===================================================== */
.linkedin-before-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 320px;
}

.linkedin-ba-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
}

.linkedin-ba-card.before {
    border: 2px solid #e2e8f0;
}

.linkedin-ba-card.after {
    border: 2px solid #0077B5;
    background: #f0f9ff;
}

.ba-label {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
}

.linkedin-ba-card.before .ba-label {
    background: #fee2e2;
    color: #dc2626;
}

.linkedin-ba-card.after .ba-label {
    background: #dcfce7;
    color: #16a34a;
}

.ba-avatar {
    font-size: 40px;
    margin-bottom: 12px;
}

.ba-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.ba-headline {
    font-size: 14px;
    line-height: 1.4;
}

.ba-headline.bad {
    color: #94a3b8;
}

.ba-headline.good {
    color: #0077B5;
    font-weight: 600;
}

.ba-arrow {
    font-size: 28px;
    color: #0077B5;
}

/* =====================================================
   COMPARISON MINI VISUAL
   ===================================================== */
.comparison-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 380px;
}

.compare-item {
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #fff;
}

.compare-item.bad {
    background: #fef2f2;
    border-color: #fecaca;
}

.compare-item.good {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.compare-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.compare-item.bad .compare-label {
    color: #dc2626;
}

.compare-item.good .compare-label {
    color: #16a34a;
}

.compare-result {
    display: block;
    font-size: 14px;
    color: #475569;
    font-style: italic;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .hero-service .container {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
    }
    
    .hero-service .hero-visual {
        justify-content: center;
        order: -1;
        margin-bottom: 20px;
    }
    
    .hero-service .hero-cta {
        justify-content: center;
    }
    
    .resume-journey-visual {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .journey-card:nth-child(2),
    .journey-card:nth-child(3) {
        transform: translateX(0);
    }
    
    .distribution-visual,
    .linkedin-visual,
    .dual-resume-visual,
    .distribution-network-visual {
        margin: 0 auto;
    }
    
    .problem-grid,
    .ps-grid {
        grid-template-columns: 1fr;
    }
    
    .competition-visual {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .competition-vs {
        order: -1;
    }
    
    .competition-math-visual {
        flex-direction: column;
        gap: 16px;
    }
    
    .math-operator {
        transform: rotate(90deg);
    }
    
    .feature-row-service .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row-service.reversed .container {
        direction: ltr;
    }
    
    .process-preview-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .preview-step:not(:last-child)::after {
        display: none;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 24px;
    }
    
    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 0;
    }
    
    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-line {
        display: none;
    }
    
    .guarantee-section .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .info-cards-service,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .link-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .when-scenarios {
        grid-template-columns: 1fr;
    }
    
    .problem-comparison {
        grid-template-columns: 1fr;
    }
    
    .clarification-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-visual-row {
        grid-template-columns: 1fr;
    }
    
    .reason-cards {
        grid-template-columns: 1fr;
    }
    
    .changes-row {
        grid-template-columns: 1fr;
    }
    
    .changes-row.header {
        display: none;
    }
    
    .changes-cell {
        padding: 12px 16px;
    }
    
    .changes-cell.label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 767px) {
    .hero-service {
        padding: 60px 0 80px;
    }
    
    .hero-service h1 {
        font-size: 32px;
    }
    
    .hero-service .hero-sub {
        font-size: 18px;
    }
    
    .emotional-callout blockquote,
    .quote-section blockquote {
        font-size: 22px;
    }
    
    .feature-text-service h2 {
        font-size: 26px;
    }
    
    .process-preview-steps {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .pricing-box {
        padding: 32px 24px;
    }
    
    .pricing-box .price {
        font-size: 40px;
    }
    
    .cta-section-service h2 {
        font-size: 26px;
    }
    
    /* Hide breadcrumb on mobile if needed */
    .breadcrumb-nav {
        padding: 12px 0;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .distribution-visual,
    .linkedin-visual {
        width: 100%;
        max-width: 320px;
    }
    
    .dual-resume-visual {
        width: 100%;
        max-width: 300px;
    }
    
    .resume-doc.secondary {
        left: 100px;
    }
    
    .hero-service .hero-buttons,
    .hero-service .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-service,
    .btn-service-outline {
        width: 100%;
        max-width: 280px;
    }
}