/**
 * WorkInJapann.com - Enhanced Stylesheet
 * Modern design with animations and improved UI
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Colors */
    --primary: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    --primary-50: #EFF6FF;
    --primary-100: #DBEAFE;
    
    --accent: #DC2626;
    --accent-dark: #B91C1C;
    --accent-light: #EF4444;
    
    --success: #059669;
    --warning: #D97706;
    --info: #0891B2;
    
    /* Backgrounds */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-dark-secondary: #1E293B;
    --bg-gradient: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
    --bg-gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    
    /* Text */
    --text-dark: #0F172A;
    --text-body: #334155;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    /* Borders */
    --border: #E2E8F0;
    --border-dark: #CBD5E1;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(30, 64, 175, 0.15);
    
    /* Spacing */
    --header-height: 72px;
    --container-max: 1280px;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    background-color: var(--bg-light);
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: var(--primary-100);
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

/* ============================================
   Container
   ============================================ */
.bv5nj3 {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Header (kx7mq2)
   ============================================ */
.kx7mq2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10000;
    transition: var(--transition);
}

.kx7mq2.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

/* Header Inner (vn3tq8) */
.vn3tq8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo (qf9wd3) */
.qf9wd3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.qf9wd3:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.qf9wd3 img {
    height: 40px;
    width: auto;
}

/* Logo Text (mn6hk8) */
.mn6hk8 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation (p3vbn9) */
.p3vbn9 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Nav Link (rl4tm8) */
.rl4tm8 {
    position: relative;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.rl4tm8::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.rl4tm8:hover {
    color: var(--primary);
    background-color: var(--primary-50);
}

.rl4tm8:hover::after {
    width: calc(100% - 2rem);
}

/* Nav Active (yh2kc6) */
.yh2kc6 {
    color: var(--primary);
    background-color: var(--primary-50);
}

.yh2kc6::after {
    width: calc(100% - 2rem);
}

/* Mobile Toggle (cx5qr7) */
.cx5qr7 {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 10001 !important;
    position: relative;
    transition: var(--transition-fast);
}

.cx5qr7:hover {
    background: var(--bg-light);
}

.cx5qr7 span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.cx5qr7.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.cx5qr7.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.cx5qr7.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu (ub8fj4) */
.ub8fj4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #ffffff;
    padding-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
    display: none;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    z-index: 9998;
    box-sizing: border-box;
}

.ub8fj4.kg2tn6 {
    display: flex;
}

.ub8fj4 .rl4tm8 {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #1E293B;
    background: #F1F5F9;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.ub8fj4 .rl4tm8:hover,
.ub8fj4 .rl4tm8.yh2kc6 {
    background: #DBEAFE;
    color: #1E40AF;
}

.ub8fj4 .rl4tm8::after {
    display: none;
}

/* ============================================
   Page Wrapper (jk4xt9)
   ============================================ */
.jk4xt9 {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* ============================================
   Hero Section (tf2xm7)
   ============================================ */
.tf2xm7 {
    position: relative;
    background: var(--bg-gradient);
    padding: 6rem 0;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.tf2xm7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/hero.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.tf2xm7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

/* Hero Content (pc8qn4) */
.pc8qn4 {
    position: relative;
    z-index: 1;
}

/* Hero Title (wk3jf9) */
.wk3jf9 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

/* Hero Subtitle (rm5xt2) */
.rm5xt2 {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    opacity: 0.95;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

/* Hero CTA (nb7qk3) */
.nb7qk3 {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.125rem 2.25rem;
    background: var(--bg-white);
    color: var(--primary);
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.nb7qk3:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

.nb7qk3:active {
    transform: translateY(-1px);
}

/* ============================================
   Sections
   ============================================ */
.qb7xm3 {
    padding: 5rem 0;
}

/* Section Title (wn4rk8) */
.wn4rk8 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Section Subtitle (fm6qj2) */
.fm6qj2 {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.0625rem;
}

/* ============================================
   Article Grid (ht6wm9)
   ============================================ */
.ht6wm9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

/* ============================================
   Article Card (wt4jf8)
   ============================================ */
.wt4jf8 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.wt4jf8:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-100);
}

/* Article Image (xc3rp6) */
.xc3rp6 {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-gradient);
    position: relative;
}

.xc3rp6 img,
.xc3rp6 svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.wt4jf8:hover .xc3rp6 img,
.wt4jf8:hover .xc3rp6 svg {
    transform: scale(1.08);
}

.xc3rp6-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--bg-gradient);
}

/* Article Body (fg8ql2) */
.fg8ql2 {
    padding: 1.75rem;
}

/* Article Category (zn5wk7) */
.zn5wk7 {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-50);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.zn5wk7:hover {
    background: var(--primary-100);
    color: var(--primary-dark);
}

/* Article Title in Card (nx7md2) */
.wt4jf8 .nx7md2 {
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.wt4jf8 .nx7md2 a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.wt4jf8 .nx7md2 a:hover {
    color: var(--primary);
}

/* Article Excerpt (fc9qw5) */
.fc9qw5 {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

/* Article Meta (uj3vb8) */
.uj3vb8 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Article Date (pk4wn9) */
.pk4wn9 {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.pk4wn9::before {
    content: '📅';
    font-size: 0.875rem;
}

/* Article Time (hl7xc2) */
.hl7xc2 {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.hl7xc2::before {
    content: '⏱️';
    font-size: 0.875rem;
}

/* ============================================
   Categories Grid (dk5wn8, jf7xt2)
   ============================================ */
.dk5wn8 {
    background: var(--bg-white);
}

.jf7xt2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Category Card (pm9wk4) */
.pm9wk4 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: var(--transition);
}

.pm9wk4:hover {
    border-color: var(--primary);
    background: var(--bg-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Category Icon (tn2xf8) */
.tn2xf8 {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Category Name (hq5rk3) */
.hq5rk3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

/* Category Count (wm8qj6) */
.wm8qj6 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ============================================
   About Section (kb6wm3)
   ============================================ */
.kb6wm3 {
    background: var(--bg-white);
}

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

.rj3km7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 2;
}

/* ============================================
   Blog Page Layout
   ============================================ */
.rf7bm2 {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: 3rem 0;
}

/* ============================================
   Sidebar (wq8pl4)
   ============================================ */
.wq8pl4 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    height: fit-content;
}

/* Sidebar Widget (fn7xk4) */
.fn7xk4 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* Sidebar Title (qm3wn9) */
.qm3wn9 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sidebar List (hk6rp2) */
.hk6rp2 {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

/* Sidebar Item (tn8qm5) */
.tn8qm5 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    color: var(--text-gray);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.tn8qm5 a:hover {
    background: var(--primary-50);
    color: var(--primary);
    padding-left: 1.25rem;
}

/* ============================================
   Search Box (tc6wm4)
   ============================================ */
.tc6wm4 {
    display: flex;
    gap: 0.5rem;
}

/* Search Input (qn8xk2) */
.qn8xk2 {
    flex: 1;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.qn8xk2:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-50);
}

/* Search Button (wf4rm7) */
.wf4rm7 {
    padding: 0.875rem 1.125rem;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.125rem;
}

.wf4rm7:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================================
   Article Single (tf8qm3)
   ============================================ */
.tf8qm3 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}

/* Article Title (nx7md2) - Single */
.tf8qm3 > .nx7md2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.625rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* Article Content (ry5jm4) */
.ry5jm4 {
    font-size: 1.0625rem;
    line-height: 2;
    color: var(--text-body);
}

.ry5jm4 p {
    margin-bottom: 1.75rem;
}

/* Heading H2 in article (bq8vk3) */
.bq8vk3 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.25rem;
    padding-left: 1.25rem;
    border-left: 4px solid var(--primary);
    position: relative;
}

.bq8vk3::before {
    content: '';
    position: absolute;
    left: 0;
    top: -0.5rem;
    bottom: -0.5rem;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: 2px;
}

/* Heading H3 in article (nt4xm7) */
.nt4xm7 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

/* Lists in article */
.vm3kp7,
.qw9xt4 {
    margin: 1.75rem 0;
    padding-left: 0;
}

.vm3kp7 li,
.qw9xt4 li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.vm3kp7 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.qw9xt4 {
    counter-reset: list-counter;
}

.qw9xt4 li {
    counter-increment: list-counter;
}

.qw9xt4 li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary);
    color: var(--text-white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Article Tags (qm4xn8) */
.qm4xn8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

/* Article Tag (bw7rk3) */
.bw7rk3 {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    background: var(--bg-light);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.bw7rk3:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Article Navigation (pj6tn2) */
.pj6tn2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.xk9wm5,
.hf3qr8 {
    padding: 1.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.xk9wm5:hover,
.hf3qr8:hover {
    background: var(--primary-50);
    border-color: var(--primary-100);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.xk9wm5 span,
.hf3qr8 span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.xk9wm5 strong,
.hf3qr8 strong {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.hf3qr8 {
    text-align: right;
}

/* ============================================
   Related Articles (vc9qm4)
   ============================================ */
.vc9qm4 {
    margin-top: 3rem;
}

.jw5tn8 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
}

.mp2xk6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ============================================
   Category Header (xb4tn9)
   ============================================ */
.xb4tn9 {
    background: var(--bg-gradient);
    padding: 4rem 0;
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.xb4tn9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.xb4tn9 h1 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.625rem;
    position: relative;
}

.xb4tn9 p {
    opacity: 0.9;
    font-size: 1.0625rem;
    position: relative;
}

/* ============================================
   Pagination (wk4xn7)
   ============================================ */
.wk4xn7 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

/* Page Link (fm9qr3) */
.fm9qr3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 1rem;
    font-weight: 600;
    color: var(--text-gray);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.fm9qr3:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-50);
}

/* Page Active (rn5wk8) */
.rn5wk8 {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.rn5wk8:hover {
    color: var(--text-white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Page Disabled (xq2jm4) */
.xq2jm4 {
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================
   Breadcrumb (xn4wk9)
   ============================================ */
.xn4wk9 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 0;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.rm7qf3 a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.rm7qf3 a:hover {
    color: var(--primary);
}

.hk2xn8 {
    color: var(--text-light);
}

/* ============================================
   Search Results
   ============================================ */
.hj9qn3 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.rm2qj6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
}

.xk5wm8 {
    background: var(--primary-100);
    color: var(--primary-dark);
    padding: 0.125em 0.375em;
    border-radius: 4px;
    font-weight: 500;
}

/* ============================================
   Contact Page
   ============================================ */
.wn6qm4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.fk9xr2 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.fk9xr2 h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hn5rq9 {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.hn5rq9:last-child {
    border-bottom: none;
}

.xk8wm3 {
    font-size: 1.75rem;
    line-height: 1;
}

.hn5rq9 strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.hn5rq9 p {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* Contact Form (qm3wk7) */
.qm3wk7 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.qm3wk7 h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
}

/* ============================================
   Forms
   ============================================ */
.gn4xm8 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Group (wk7qn3) */
.wk7qn3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Form Label (gt5rn2) */
.gt5rn2 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Form Input (jc8wp3) */
.jc8wp3 {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.jc8wp3:focus {
    outline: none;
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-50);
}

.jc8wp3::placeholder {
    color: var(--text-light);
}

/* Form Textarea (xm5rk9) */
.xm5rk9 {
    min-height: 160px;
    resize: vertical;
}

/* Form Button (pk7wv4) */
.pk7wv4 {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    background: var(--bg-gradient);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.pk7wv4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pk7wv4:active {
    transform: translateY(0);
}

/* Form Message (bn3qk8) */
.bn3qk8 {
    padding: 1.125rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
}

.bn3qk8.success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.bn3qk8.error {
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ============================================
   Buttons
   ============================================ */
.dh6nk4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

/* Button Primary (qa5hn7) */
.qa5hn7 {
    background: var(--bg-gradient);
    color: var(--text-white);
    border: none;
}

.qa5hn7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

/* Button Secondary (zl2xm9) */
.zl2xm9 {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.zl2xm9:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

/* Button Outline (fr7qk5) */
.fr7qk5 {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.fr7qk5:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ============================================
   Cookie Consent Banner (zx9km4)
   ============================================ */
.zx9km4 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: var(--transition);
}

.qn2wk8 {
    transform: translateY(100%);
}

.pw5qn8 {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hj3xm6 {
    flex: 1;
    min-width: 300px;
}

.hj3xm6 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hj3xm6 p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hj3xm6 a {
    color: var(--primary-light);
    text-decoration: underline;
}

.tn7wk2 {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.rm4qx9 {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.wk8tn3 {
    background: var(--primary);
    color: var(--text-white);
}

.wk8tn3:hover {
    background: var(--primary-dark);
}

.fj5xm7 {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-light);
}

.fj5xm7:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Legal Pages
   ============================================ */
.xm4qn7 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin: 3rem 0;
}

.wk9tj3 {
    margin-bottom: 2.5rem;
}

.wk9tj3:last-child {
    margin-bottom: 0;
}

.pn6xm2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.hk4wq8 {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.hk4wq8 li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.hk4wq8 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.tm3xn5 {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ============================================
   Footer (m9xkl2)
   ============================================ */
.m9xkl2 {
    background: var(--bg-gradient-dark);
    color: var(--text-white);
    padding: 5rem 0 2rem;
    margin-top: auto;
}

/* Footer Grid (hc6rm3) */
.hc6rm3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Column (yt8qj5) */
.yt8qj5 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.yt8qj5 p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
}

.yt8qj5 ul li {
    margin-bottom: 0.625rem;
}

.yt8qj5 ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-size: 0.9375rem;
}

.yt8qj5 ul li a:hover {
    color: var(--text-white);
    padding-left: 0.25rem;
}

/* Footer Bottom (ws2kx9) */
.ws2kx9 {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.ws2kx9 a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.75rem;
}

.ws2kx9 a:hover {
    color: var(--text-white);
}

/* ============================================
   Utilities
   ============================================ */
.hm4qx8 { text-align: center; }
.rk7wn3 { color: var(--text-gray); }
.xn5qm9 { margin-bottom: 10px; }
.vc6jl3 { margin-bottom: 20px; }
.wq8rn4 { margin-bottom: 30px; }
.fk3xm7 { margin-top: 20px; }
.bf9tk2 { display: none !important; }
.qm4wn6 { display: block !important; }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* ============================================
   Reading Progress Bar
   ============================================ */
.reading-progress {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 999;
}

.reading-progress-bar {
    height: 100%;
    background: var(--bg-gradient);
    width: 0%;
    transition: width 0.1s ease;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .rf7bm2 {
        grid-template-columns: 1fr;
    }
    
    .wq8pl4 {
        position: static;
        order: 2;
    }
    
    .ht6wm9 {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --container-padding: 1rem;
    }
    
    /* Hide desktop nav, show mobile toggle */
    .p3vbn9 {
        display: none;
    }
    
    .cx5qr7 {
        display: flex;
    }
    
    /* Hero adjustments */
    .tf2xm7 {
        padding: 4rem 0;
    }
    
    /* Section padding */
    .qb7xm3 {
        padding: 3rem 0;
    }
    
    /* Article grid single column */
    .ht6wm9 {
        grid-template-columns: 1fr;
    }
    
    /* Article single padding */
    .tf8qm3 {
        padding: 2rem;
    }
    
    /* Article navigation stack */
    .pj6tn2 {
        grid-template-columns: 1fr;
    }
    
    /* Contact grid stack */
    .wn6qm4 {
        grid-template-columns: 1fr;
    }
    
    /* Categories grid */
    .jf7xt2 {
        grid-template-columns: 1fr;
    }
    
    /* Cookie banner */
    .pw5qn8 {
        flex-direction: column;
        text-align: center;
    }
    
    .tn7wk2 {
        width: 100%;
        flex-direction: column;
    }
    
    .rm4qx9 {
        width: 100%;
    }
    
    /* Legal content */
    .xm4qn7 {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .qf9wd3 {
        font-size: 1.25rem;
    }
    
    .wk3jf9 {
        font-size: 1.875rem;
    }
    
    .wn4rk8 {
        font-size: 1.5rem;
    }
    
    .nb7qk3 {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .kx7mq2,
    .m9xkl2,
    .wq8pl4,
    .pj6tn2,
    .vc9qm4,
    .zx9km4 {
        display: none !important;
    }
    
    .jk4xt9 {
        padding-top: 0;
    }
    
    .tf8qm3 {
        box-shadow: none;
        padding: 0;
        border: none;
    }
    
    body {
        background: white;
    }
}
