/* ===================================
   JOB WEBSITE - CLEAN CSS
   =================================== */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIABLES */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
    
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
    
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* BASE */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(96,165,250,0.9)),
                url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1920') center/cover;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn.primary {
    background: white;
    color: var(--primary);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* LAYOUT */
.layout-container {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    position: sticky;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, white, var(--bg-light));
    padding: 2rem 0;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.sidebar-header {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 1rem;
}

.sidebar-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid transparent;
    transition: all 0.3s;
    margin-bottom: 0.5rem;
}

.nav-link:hover {
    background: linear-gradient(135deg, #e8eaf6, #e3f2fd);
    border-left-color: var(--primary);
    transform: translateX(8px);
}

.nav-link.active {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-dark);
    font-weight: 700;
    border-left-color: var(--primary);
}

.nav-icon {
    font-size: 1.6rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: var(--radius-sm);
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    background: var(--bg-light);
}

/* SECTIONS */
.section {
    padding: 5rem 3rem;
    background: white;
}

.section:nth-child(even) {
    background: #fafbfc;
}

.section.hidden {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.section-intro {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* CARDS GRID */
.cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.card {
    background: linear-gradient(135deg, white, var(--bg-light));
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-list {
    list-style: none;
    margin-bottom: 2rem;
}

.card-list li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.3rem;
}

.card-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.card-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e3a8a);
    transform: scale(1.03);
}

/* STRATEGY BLOCKS */
.strategy-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.strategy-block {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s;
}

.strategy-block:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.strategy-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
}

.strategy-content {
    flex: 1;
}

.strategy-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.strategy-image {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.strategy-block:hover .strategy-image img {
    transform: scale(1.08);
}

.strategy-content > p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.highlight p {
    font-size: 1.05rem;
    color: var(--text-medium);
}

/* TIMELINE */
.timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 6px solid white;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.timeline-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.timeline-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}

.timeline-content strong {
    color: var(--primary-dark);
}

/* TIPS GRID */
.tips-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.tip-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-light);
}

.tip-card.highlight {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.tip-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tip-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.tip-card > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tip-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tip-card li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.tip-card li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.tip-button {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.tip-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e3a8a);
    transform: scale(1.03);
}

/* CAREER PATH */
.career-path {
    max-width: 1200px;
    margin: 0 auto;
}

.career-level {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s;
}

.career-level:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

.career-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.career-level h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.career-image {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.career-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.career-level:hover .career-image img {
    transform: scale(1.1);
}

.career-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.career-info ul {
    list-style: none;
}

.career-info li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.career-info li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

.career-info strong {
    color: var(--primary-dark);
}

.career-arrow {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin: 2rem 0;
}

.career-tips {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-top: 3rem;
}

.career-tips h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.tip-box strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.tip-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* TRENDS */
.trends-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.trend-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.trend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.trend-card.hot {
    border-color: var(--danger);
    background: linear-gradient(135deg, #fff5f5, #fee2e2);
}

.trend-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.trend-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.trend-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.trend-card > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.trend-card ul {
    list-style: none;
}

.trend-card li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    padding-left: 2rem;
    position: relative;
}

.trend-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.future-skills {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.future-skills h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.skills-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.skill-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.skill-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.skill-box strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.skill-box p {
    font-size: 1rem;
    color: var(--text-medium);
}

/* LEGAL */
.legal-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.legal-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s;
    border-left: 6px solid var(--primary);
}

.legal-card:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.legal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-card > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
}

.legal-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.legal-card li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.legal-card li::before {
    content: "§";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}

.legal-tip {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.legal-tip strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.legal-help {
    max-width: 1400px;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.legal-help h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.help-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.help-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.help-box strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.help-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* SALARY */
.salary-intro {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.salary-intro h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.salary-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.salary-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.salary-step {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #d97706);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.step-image {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
}

.step-content ul {
    list-style: none;
}

.step-content li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timing-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.timing-box {
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.timing-box.good {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--secondary);
}

.timing-box.bad {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid var(--danger);
}

.timing-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.argument-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.argument {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.argument strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.conversation-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.dos, .donts {
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.dos {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.donts {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.dos h4, .donts h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tactics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tactic {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent);
}

.tactic h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.tactic p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.salary-examples {
    max-width: 1200px;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.salary-examples h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.examples-grid {
    display: grid;
    gap: 2rem;
}

.example {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.example strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.example p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
}

.salary-table-box {
    max-width: 1200px;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.salary-table-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.salary-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.salary-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.salary-table th,
.salary-table td {
    padding: 1.2rem;
    text-align: left;
}

.salary-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.salary-table tbody tr:hover {
    background: var(--bg-light);
}

.table-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1200;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.1) translateY(-3px);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-gray);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.modal-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.modal-body h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.modal-body ul {
    list-style: none;
    margin: 1rem 0;
}

.modal-body li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.modal-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.modal-body img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sidebar {
        width: 250px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .layout-container {
        flex-direction: column;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        transform: translateX(-100%);
        z-index: 1100;
        transition: transform 0.3s;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .hero {
        min-height: 60vh;
        padding: 3rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cards-grid,
    .tips-grid,
    .trends-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-block,
    .salary-step {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .timing-boxes,
    .conversation-guide {
        grid-template-columns: 1fr;
    }
    
    .salary-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card,
    .tip-card {
        padding: 1.5rem;
    }
}

/* ===================================
   END OF CSS
   =================================== */