/* =======================================
   JohannyBaez.com Theme Styles
   ======================================= */

/* --- CSS Variables --- */
:root {
    --jb-primary: #2563eb;
    --jb-primary-dark: #1d4ed8;
    --jb-primary-light: #dbeafe;
    --jb-secondary: #0f172a;
    --jb-accent: #f59e0b;
    --jb-success: #10b981;
    --jb-danger: #ef4444;
    --jb-text: #1e293b;
    --jb-text-light: #64748b;
    --jb-text-muted: #94a3b8;
    --jb-bg: #ffffff;
    --jb-bg-light: #f8fafc;
    --jb-bg-accent: #eff6ff;
    --jb-border: #e2e8f0;
    --jb-radius: 12px;
    --jb-radius-sm: 8px;
    --jb-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --jb-shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --jb-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --jb-transition: all 0.2s ease;
    --jb-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --jb-container: 1200px;
    --jb-container-narrow: 800px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--jb-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--jb-text);
    background: var(--jb-bg);
}

a {
    color: var(--jb-primary);
    text-decoration: none;
    transition: var(--jb-transition);
}

a:hover {
    color: var(--jb-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Container --- */
.jb-container {
    max-width: var(--jb-container);
    margin: 0 auto;
    padding: 0 20px;
}

.jb-container-narrow {
    max-width: var(--jb-container-narrow);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.jb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--jb-radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--jb-transition);
    border: 2px solid transparent;
    text-decoration: none;
    gap: 8px;
}

.jb-btn-primary {
    background: var(--jb-primary);
    color: #fff;
    border-color: var(--jb-primary);
}

.jb-btn-primary:hover {
    background: var(--jb-primary-dark);
    border-color: var(--jb-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--jb-shadow-md);
}

.jb-btn-outline {
    background: transparent;
    color: var(--jb-primary);
    border-color: var(--jb-primary);
}

.jb-btn-outline:hover {
    background: var(--jb-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ===========================
   HEADER
   =========================== */
.jb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jb-header.scrolled {
    border-bottom-color: var(--jb-border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.jb-header-inner {
    max-width: var(--jb-container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* --- Logo --- */
.jb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--jb-secondary);
    flex-shrink: 0;
}

.jb-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--jb-primary), #3b82f6);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.jb-logo:hover .jb-logo-mark {
    transform: scale(1.05) rotate(-2deg);
}

.jb-brand-name {
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.5px;
    color: var(--jb-secondary);
}

.jb-brand-dot {
    color: var(--jb-primary);
    font-weight: 800;
}

/* --- Desktop Nav --- */
.jb-nav-desktop {
    display: flex;
    align-items: center;
}

.jb-nav-desktop .jb-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.jb-nav-desktop .jb-menu > li {
    position: relative;
}

.jb-nav-desktop .jb-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--jb-text-light);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--jb-radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.jb-menu-icon {
    font-size: 15px;
    line-height: 1;
}

.jb-chevron {
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.jb-nav-desktop .jb-menu > li > a:hover {
    color: var(--jb-primary);
    background: var(--jb-primary-light);
}

.jb-nav-desktop .jb-menu > li.current-menu-item > a,
.jb-nav-desktop .jb-menu > li.current_page_item > a {
    color: var(--jb-primary);
    background: var(--jb-primary-light);
    font-weight: 600;
}

/* --- Dropdown --- */
.jb-has-dropdown:hover .jb-chevron {
    transform: rotate(180deg);
}

.jb-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 380px;
    background: #fff;
    border: 1px solid var(--jb-border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.jb-has-dropdown:hover .jb-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.jb-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.jb-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.jb-dropdown-item:hover {
    background: var(--jb-bg-light);
}

.jb-dd-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.jb-dropdown-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--jb-text);
    margin-bottom: 2px;
}

.jb-dropdown-item span {
    font-size: 12px;
    color: var(--jb-text-muted);
    line-height: 1.3;
}

/* --- Header Actions --- */
.jb-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jb-search-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--jb-border);
    border-radius: 10px;
    color: var(--jb-text-light);
    cursor: pointer;
    transition: var(--jb-transition);
}

.jb-search-toggle:hover {
    color: var(--jb-primary);
    border-color: var(--jb-primary-light);
    background: var(--jb-primary-light);
}

/* --- CTA Button --- */
.jb-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--jb-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.jb-nav-cta:hover {
    background: var(--jb-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.jb-nav-cta-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: var(--jb-accent);
    border-radius: 50%;
    border: 2px solid #fff;
    animation: jb-pulse-dot 2s infinite;
}

@keyframes jb-pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* --- Hamburger --- */
.jb-hamburger {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--jb-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    gap: 5px;
    transition: var(--jb-transition);
}

.jb-hamburger:hover {
    border-color: var(--jb-primary-light);
    background: var(--jb-primary-light);
}

.jb-hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--jb-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

.jb-hamburger.active .jb-hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.jb-hamburger.active .jb-hamburger-line:nth-child(2) {
    opacity: 0;
}

.jb-hamburger.active .jb-hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Search Overlay --- */
.jb-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--jb-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.jb-search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jb-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.jb-search-icon {
    color: var(--jb-text-muted);
    flex-shrink: 0;
}

.jb-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    font-family: var(--jb-font);
    color: var(--jb-text);
    background: transparent;
    padding: 8px 0;
}

.jb-search-input::placeholder {
    color: var(--jb-text-muted);
}

.jb-search-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--jb-text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--jb-transition);
}

.jb-search-close:hover {
    background: var(--jb-bg-light);
    color: var(--jb-text);
}

/* --- Mobile Drawer --- */
.jb-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

.jb-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.jb-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
}

.jb-mobile-drawer.active {
    transform: translateX(0);
}

.jb-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--jb-border);
}

.jb-drawer-header .jb-logo {
    gap: 8px;
}

.jb-drawer-header .jb-logo-mark {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.jb-drawer-header .jb-brand-name {
    font-size: 15px;
}

.jb-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--jb-border);
    border-radius: 10px;
    color: var(--jb-text-light);
    cursor: pointer;
    transition: var(--jb-transition);
}

.jb-drawer-close:hover {
    background: var(--jb-bg-light);
    color: var(--jb-text);
}

.jb-drawer-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.jb-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--jb-text);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.15s ease, color 0.15s ease;
}

.jb-drawer-link:hover,
.jb-drawer-link.active {
    background: var(--jb-primary-light);
    color: var(--jb-primary);
}

.jb-drawer-link.active {
    font-weight: 600;
}

.jb-drawer-icon {
    font-size: 20px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.jb-drawer-link-sm {
    padding: 9px 14px;
    font-size: 14px;
    color: var(--jb-text-light);
}

.jb-drawer-link-sm .jb-drawer-icon {
    font-size: 16px;
}

.jb-drawer-divider {
    height: 1px;
    background: var(--jb-border);
    margin: 10px 14px;
}

.jb-drawer-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--jb-text-muted);
    padding: 4px 14px 8px;
}

.jb-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--jb-border);
    text-align: center;
}

.jb-drawer-cta {
    display: block;
    padding: 12px 20px;
    background: var(--jb-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-bottom: 10px;
}

.jb-drawer-cta:hover {
    background: var(--jb-primary-dark);
}

.jb-drawer-tagline {
    font-size: 12px;
    color: var(--jb-text-muted);
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
}

/* ===========================
   HERO
   =========================== */
.jb-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    animation: jb-pulse 8s ease-in-out infinite;
}

@keyframes jb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.jb-hero-content {
    position: relative;
    z-index: 1;
}

.jb-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.jb-hero-subtitle {
    font-size: 24px;
    color: #93c5fd;
    font-weight: 500;
    margin-bottom: 16px;
}

.jb-hero-desc {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.jb-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.jb-hero-actions .jb-btn-primary {
    background: #fff;
    color: var(--jb-primary);
    border-color: #fff;
    font-size: 17px;
    padding: 14px 32px;
}

.jb-hero-actions .jb-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.jb-hero-actions .jb-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    font-size: 17px;
    padding: 14px 32px;
}

.jb-hero-actions .jb-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ===========================
   SECTIONS
   =========================== */
.jb-section {
    padding: 80px 0;
}

.jb-section-light {
    background: var(--jb-bg-light);
}

.jb-section-accent {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.jb-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--jb-text);
    text-align: center;
    margin-bottom: 10px;
}

.jb-section-subtitle {
    font-size: 18px;
    color: var(--jb-text-light);
    text-align: center;
    margin-bottom: 40px;
}

.jb-section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===========================
   POST CARDS GRID
   =========================== */
.jb-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.jb-post-card {
    background: var(--jb-bg);
    border-radius: var(--jb-radius);
    overflow: hidden;
    box-shadow: var(--jb-shadow);
    transition: var(--jb-transition);
    border: 1px solid var(--jb-border);
}

.jb-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--jb-shadow-lg);
}

.jb-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.jb-card-content {
    padding: 24px;
}

.jb-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.jb-card-category {
    background: var(--jb-primary-light);
    color: var(--jb-primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.jb-card-date {
    color: var(--jb-text-muted);
}

.jb-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.jb-card-title a {
    color: var(--jb-text);
}

.jb-card-title a:hover {
    color: var(--jb-primary);
}

.jb-card-excerpt {
    color: var(--jb-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jb-card-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--jb-primary);
}

/* ===========================
   CATEGORIES GRID  
   =========================== */
.jb-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.jb-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 30px 20px;
    background: var(--jb-bg);
    border-radius: var(--jb-radius);
    border: 1px solid var(--jb-border);
    transition: var(--jb-transition);
    text-decoration: none;
    text-align: center;
}

.jb-category-card:hover {
    border-color: var(--jb-primary);
    transform: translateY(-2px);
    box-shadow: var(--jb-shadow-md);
}

.jb-cat-icon {
    font-size: 32px;
}

.jb-cat-name {
    font-weight: 600;
    color: var(--jb-text);
    font-size: 15px;
}

.jb-cat-count {
    color: var(--jb-text-muted);
    font-size: 13px;
}

/* ===========================
   CONTENT GRID (post + sidebar)
   =========================== */
.jb-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* ===========================
   ARCHIVE
   =========================== */
.jb-archive {
    padding: 40px 0 80px;
}

.jb-archive-header {
    text-align: center;
    padding: 40px 0;
}

.jb-archive-label {
    font-size: 14px;
    color: var(--jb-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jb-archive-title {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
}

.jb-archive-desc {
    font-size: 18px;
    color: var(--jb-text-light);
}

.jb-category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.jb-filter-btn {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--jb-text-light);
    background: var(--jb-bg-light);
    border: 1px solid var(--jb-border);
    transition: var(--jb-transition);
    text-decoration: none;
}

.jb-filter-btn:hover,
.jb-filter-btn.active {
    background: var(--jb-primary);
    color: #fff;
    border-color: var(--jb-primary);
}

/* ===========================
   SINGLE ARTICLE
   =========================== */
.jb-single {
    padding: 40px 0 80px;
}

.jb-article-header {
    margin-bottom: 30px;
}

.jb-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.jb-badge {
    background: var(--jb-primary-light);
    color: var(--jb-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.jb-badge:hover {
    background: var(--jb-primary);
    color: #fff;
}

.jb-article-date,
.jb-article-reading {
    color: var(--jb-text-muted);
    font-size: 14px;
}

.jb-article-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--jb-text);
}

.jb-article-excerpt {
    font-size: 20px;
    color: var(--jb-text-light);
    line-height: 1.6;
    margin-top: 15px;
}

.jb-article-featured {
    margin-bottom: 30px;
    border-radius: var(--jb-radius);
    overflow: hidden;
}

.jb-article-featured img {
    width: 100%;
    height: auto;
}

/* Article Body Typography */
.jb-article-body {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

.jb-article-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--jb-text);
}

.jb-article-body h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 12px;
    color: var(--jb-text);
}

.jb-article-body p {
    margin-bottom: 18px;
}

.jb-article-body ul,
.jb-article-body ol {
    margin: 0 0 18px 24px;
}

.jb-article-body li {
    margin-bottom: 8px;
}

.jb-article-body blockquote {
    border-left: 4px solid var(--jb-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--jb-bg-light);
    border-radius: 0 var(--jb-radius-sm) var(--jb-radius-sm) 0;
    font-style: italic;
    color: var(--jb-text-light);
}

.jb-article-body pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: var(--jb-radius-sm);
    overflow-x: auto;
    margin: 24px 0;
    font-size: 14px;
}

.jb-article-body code {
    background: var(--jb-bg-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.jb-article-body pre code {
    background: none;
    padding: 0;
}

.jb-article-body a {
    color: var(--jb-primary);
    text-decoration: underline;
}

.jb-article-body img {
    border-radius: var(--jb-radius-sm);
    margin: 20px 0;
}

/* Article Tags */
.jb-article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--jb-border);
    margin-top: 30px;
    font-size: 14px;
    color: var(--jb-text-muted);
}

.jb-tag {
    background: var(--jb-bg-light);
    color: var(--jb-text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid var(--jb-border);
}

.jb-tag:hover {
    background: var(--jb-primary-light);
    color: var(--jb-primary);
    border-color: var(--jb-primary);
}

/* Inline CTA */
.jb-inline-cta {
    margin: 40px 0;
    padding: 30px;
    background: var(--jb-bg-accent);
    border-radius: var(--jb-radius);
    border: 1px solid var(--jb-primary-light);
}

/* Author Box */
.jb-author-box {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: var(--jb-bg-light);
    border-radius: var(--jb-radius);
    margin: 30px 0;
}

.jb-author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.jb-author-info h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.jb-author-info p {
    font-size: 14px;
    color: var(--jb-text-light);
    line-height: 1.5;
}

/* Post Navigation */
.jb-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--jb-border);
    margin-top: 20px;
}

.jb-post-nav-label {
    display: block;
    font-size: 13px;
    color: var(--jb-text-muted);
    margin-bottom: 4px;
}

.jb-post-nav a {
    font-weight: 600;
    color: var(--jb-text);
    font-size: 15px;
}

.jb-post-nav a:hover {
    color: var(--jb-primary);
}

.jb-post-nav-next {
    text-align: right;
}

/* Related Posts */
.jb-related {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--jb-border);
}

.jb-related h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.jb-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.jb-related-card {
    background: var(--jb-bg-light);
    border-radius: var(--jb-radius-sm);
    overflow: hidden;
}

.jb-related-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.jb-related-card h4 {
    padding: 12px 16px 4px;
    font-size: 14px;
    line-height: 1.4;
}

.jb-related-card h4 a {
    color: var(--jb-text);
}

.jb-related-card h4 a:hover {
    color: var(--jb-primary);
}

.jb-related-card span {
    display: block;
    padding: 0 16px 12px;
    font-size: 12px;
    color: var(--jb-text-muted);
}

/* ===========================
   SIDEBAR
   =========================== */
.jb-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 90px;
}

.jb-widget {
    background: var(--jb-bg);
    border: 1px solid var(--jb-border);
    border-radius: var(--jb-radius);
    padding: 24px;
}

.jb-widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--jb-primary-light);
}

.jb-widget-newsletter {
    background: var(--jb-bg-accent);
    border-color: var(--jb-primary-light);
}

.jb-widget-list {
    list-style: none;
}

.jb-widget-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--jb-border);
}

.jb-widget-list li:last-child {
    border: none;
}

.jb-widget-list a {
    color: var(--jb-text);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.jb-widget-list a:hover {
    color: var(--jb-primary);
}

.jb-widget-count {
    color: var(--jb-text-muted);
    font-size: 13px;
}

.jb-widget-posts {
    list-style: none;
}

.jb-widget-post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--jb-border);
}

.jb-widget-post-item:last-child {
    border: none;
}

.jb-widget-post-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--jb-radius-sm);
}

.jb-widget-post-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--jb-text);
    line-height: 1.4;
}

.jb-widget-post-title:hover {
    color: var(--jb-primary);
}

.jb-widget-post-date {
    font-size: 12px;
    color: var(--jb-text-muted);
}

.jb-widget-cta {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: var(--jb-primary-light);
    text-align: center;
}

.jb-widget-cta p {
    font-size: 14px;
    color: var(--jb-text-light);
    margin-bottom: 15px;
}

/* ===========================
   PAGINATION
   =========================== */
.jb-pagination {
    margin-top: 50px;
    text-align: center;
}

.jb-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.jb-pagination li {
    display: inline-block;
}

.jb-pagination a,
.jb-pagination .page-numbers.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--jb-radius-sm);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--jb-border);
    color: var(--jb-text);
    background: var(--jb-bg);
    transition: var(--jb-transition);
    text-decoration: none;
}

.jb-pagination a:hover,
.jb-pagination .page-numbers.current {
    background: var(--jb-primary);
    color: #fff;
    border-color: var(--jb-primary);
}

/* ===========================
   PAGE TEMPLATES
   =========================== */
.jb-page-hero {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    padding: 80px 20px;
    text-align: center;
}

.jb-page-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.jb-page-subtitle {
    font-size: 18px;
    color: #93c5fd;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.jb-page-header {
    padding: 40px 0 30px;
    text-align: center;
}

.jb-page-header .jb-page-title {
    color: var(--jb-text);
    font-size: 36px;
}

.jb-page-content {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
    padding-bottom: 60px;
}

.jb-page-content h2 { font-size: 28px; margin: 30px 0 14px; }
.jb-page-content h3 { font-size: 22px; margin: 24px 0 10px; }
.jb-page-content p { margin-bottom: 16px; }
.jb-page-content ul, .jb-page-content ol { margin: 0 0 16px 24px; }
.jb-page-content li { margin-bottom: 6px; }

/* ===========================
   TOOLS PAGE
   =========================== */
.jb-tools-category {
    margin-bottom: 60px;
}

.jb-tools-category-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.jb-tools-category-desc {
    color: var(--jb-text-light);
    margin-bottom: 24px;
}

.jb-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.jb-tool-card {
    background: var(--jb-bg);
    border: 1px solid var(--jb-border);
    border-radius: var(--jb-radius);
    padding: 28px;
    transition: var(--jb-transition);
}

.jb-tool-card:hover {
    border-color: var(--jb-primary);
    box-shadow: var(--jb-shadow-md);
    transform: translateY(-2px);
}

.jb-tool-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.jb-tool-icon {
    font-size: 32px;
}

.jb-tool-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.jb-tool-badge {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

.jb-badge-recommended {
    background: #fef3c7;
    color: #92400e;
}

.jb-tool-card p {
    color: var(--jb-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.jb-tool-features {
    list-style: none;
    margin-bottom: 20px;
}

.jb-tool-features li {
    font-size: 14px;
    padding: 3px 0;
    color: var(--jb-text);
}

.jb-tool-cta {
    width: 100%;
    text-align: center;
}

.jb-tools-disclaimer {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--jb-radius);
    padding: 20px 24px;
    margin-top: 40px;
}

.jb-tools-disclaimer p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   NEWSLETTER PAGE
   =========================== */
.jb-newsletter-hero {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    padding: 80px 20px;
    text-align: center;
}

.jb-newsletter-form-wrapper {
    max-width: 500px;
    margin: 30px auto 0;
}

.jb-newsletter-stats {
    margin-top: 20px;
}

.jb-stat-note {
    color: #93c5fd;
    font-size: 15px;
}

/* Benefits Grid */
.jb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.jb-benefit-card {
    background: var(--jb-bg);
    border: 1px solid var(--jb-border);
    border-radius: var(--jb-radius);
    padding: 30px;
    text-align: center;
    transition: var(--jb-transition);
}

.jb-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--jb-shadow-md);
}

.jb-benefit-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 14px;
}

.jb-benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.jb-benefit-card p {
    font-size: 14px;
    color: var(--jb-text-light);
    line-height: 1.6;
}

/* Steps */
.jb-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.jb-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--jb-bg);
    border: 1px solid var(--jb-border);
    border-radius: var(--jb-radius);
}

.jb-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--jb-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.jb-step h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.jb-step p {
    font-size: 14px;
    color: var(--jb-text-light);
}

/* Testimonials */
.jb-testimonials {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.jb-testimonial {
    background: var(--jb-bg);
    border: 1px solid var(--jb-border);
    border-radius: var(--jb-radius);
    padding: 24px 30px;
    margin: 0;
}

.jb-testimonial p {
    font-size: 17px;
    font-style: italic;
    color: var(--jb-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.jb-testimonial cite {
    font-size: 14px;
    color: var(--jb-text-muted);
    font-style: normal;
}

/* FAQ */
.jb-faq {
    margin-top: 30px;
}

.jb-faq-item {
    border: 1px solid var(--jb-border);
    border-radius: var(--jb-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.jb-faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background: var(--jb-bg);
    transition: var(--jb-transition);
    list-style: none;
}

.jb-faq-item summary::-webkit-details-marker {
    display: none;
}

.jb-faq-item summary::before {
    content: '▸ ';
    color: var(--jb-primary);
}

.jb-faq-item[open] summary::before {
    content: '▾ ';
}

.jb-faq-item summary:hover {
    background: var(--jb-bg-light);
}

.jb-faq-item p {
    padding: 0 20px 16px;
    font-size: 15px;
    color: var(--jb-text-light);
    line-height: 1.6;
}

/* ===========================
   EMPTY STATE
   =========================== */
.jb-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.jb-empty-state h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.jb-empty-state p {
    color: var(--jb-text-light);
    margin-bottom: 20px;
}

/* ===========================
   FOOTER
   =========================== */
.jb-footer {
    background: var(--jb-secondary);
    color: #e2e8f0;
    padding: 60px 0 0;
}

.jb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.jb-footer-brand h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

.jb-footer-brand p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.jb-footer h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.jb-footer-links {
    list-style: none;
}

.jb-footer-links li {
    margin-bottom: 10px;
}

.jb-footer-links a {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--jb-transition);
}

.jb-footer-links a:hover {
    color: #fff;
}

.jb-footer-bottom {
    border-top: 1px solid #334155;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 10px;
}

.jb-footer-disclaimer {
    background: #1e293b;
    border-radius: var(--jb-radius-sm);
    padding: 16px 20px;
    margin-bottom: 30px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* ===========================
   SEARCH FORM
   =========================== */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form .search-field {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--jb-border);
    border-radius: var(--jb-radius-sm);
    font-size: 14px;
    font-family: var(--jb-font);
    outline: none;
    transition: var(--jb-transition);
}

.search-form .search-field:focus {
    border-color: var(--jb-primary);
    box-shadow: 0 0 0 3px var(--jb-primary-light);
}

.search-form .search-submit {
    padding: 10px 20px;
    background: var(--jb-primary);
    color: #fff;
    border: none;
    border-radius: var(--jb-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--jb-transition);
}

.search-form .search-submit:hover {
    background: var(--jb-primary-dark);
}

/* ===========================
   404 PAGE
   =========================== */
.jb-404-icon {
    font-size: 64px;
    margin-bottom: 10px;
}

/* ===========================
   WP ADMIN BAR FIX
   =========================== */
.admin-bar .jb-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .jb-header {
        top: 46px;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .jb-content-grid {
        grid-template-columns: 1fr;
    }

    .jb-sidebar {
        display: none;
    }

    .jb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .jb-nav-desktop {
        display: none;
    }

    .jb-nav-cta {
        display: none;
    }

    .jb-hamburger {
        display: flex;
    }

    .jb-hero {
        padding: 60px 20px;
    }

    .jb-hero-title {
        font-size: 36px;
    }

    .jb-hero-subtitle {
        font-size: 18px;
    }

    .jb-hero-desc {
        font-size: 16px;
    }

    .jb-section {
        padding: 50px 0;
    }

    .jb-section-title {
        font-size: 26px;
    }

    .jb-posts-grid {
        grid-template-columns: 1fr;
    }

    .jb-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jb-tools-grid {
        grid-template-columns: 1fr;
    }

    .jb-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jb-article-title {
        font-size: 28px;
    }

    .jb-related-grid {
        grid-template-columns: 1fr;
    }

    .jb-post-nav {
        grid-template-columns: 1fr;
    }

    .jb-post-nav-next {
        text-align: left;
    }

    .jb-page-title {
        font-size: 28px;
    }

    .jb-archive-title {
        font-size: 28px;
    }

    .jb-footer-grid {
        grid-template-columns: 1fr;
    }

    .jb-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .jb-hero-title {
        font-size: 28px;
    }

    .jb-hero-actions {
        flex-direction: column;
    }

    .jb-hero-actions .jb-btn {
        width: 100%;
    }

    .jb-categories-grid {
        grid-template-columns: 1fr;
    }

    .jb-benefits-grid {
        grid-template-columns: 1fr;
    }

    .jb-category-filter {
        gap: 6px;
    }

    .jb-filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* =======================================
   Landing Page — Front Page
   ======================================= */

/* --- Hero --- */
.lp-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #fff;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(37,99,235,0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(245,158,11,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-badge-hero {
    display: inline-block;
    background: rgba(37,99,235,0.2);
    border: 1px solid rgba(37,99,235,0.35);
    color: #93bbfd;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.lp-hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.lp-gradient-text {
    background: linear-gradient(135deg, #60a5fa, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.lp-hero-form {
    max-width: 480px;
}

.lp-hero-form .jemail-subscribe-form {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--jb-radius);
    padding: 20px;
}

.lp-hero-form .jemail-subscribe-form input[type="text"],
.lp-hero-form .jemail-subscribe-form input[type="email"] {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.lp-hero-form .jemail-subscribe-form input::placeholder {
    color: #94a3b8;
}

.lp-form-note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 12px;
}

/* --- Profile Card --- */
.lp-profile-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.lp-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jb-primary), var(--jb-accent));
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.3);
}

.lp-profile-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.lp-profile-role {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 24px;
}

.lp-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lp-profile-stats div {
    text-align: center;
}

.lp-profile-stats strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #60a5fa;
}

.lp-profile-stats span {
    font-size: 12px;
    color: #94a3b8;
}

.lp-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.lp-profile-tags span {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 13px;
    color: #cbd5e1;
}

/* --- Social Proof Bar --- */
.lp-proof-bar {
    background: var(--jb-primary);
    padding: 24px 0;
    color: #fff;
}

.lp-proof-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.lp-proof-item {
    text-align: center;
}

.lp-proof-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

.lp-proof-label {
    font-size: 13px;
    opacity: 0.85;
}

.lp-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
}

/* --- Sections --- */
.lp-section {
    padding: 80px 0;
}

.lp-section-dark {
    background: #0f172a;
    color: #fff;
}

.lp-section-light {
    background: var(--jb-bg-light);
}

.lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.lp-section-label {
    display: inline-block;
    background: var(--jb-primary-light);
    color: var(--jb-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.lp-label-light {
    background: rgba(37,99,235,0.2);
    color: #93bbfd;
}

.lp-section-header h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.lp-section-dark .lp-section-header h2 {
    color: #fff;
}

.lp-section-header p {
    font-size: 17px;
    color: var(--jb-text-light);
    line-height: 1.6;
}

.lp-section-dark .lp-section-header p {
    color: #94a3b8;
}

/* --- About Grid --- */
.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.lp-about-card {
    background: var(--jb-bg-light);
    border: 1px solid var(--jb-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
}

.lp-about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jb-primary), var(--jb-accent));
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.lp-about-quote {
    background: #fff;
    border-left: 4px solid var(--jb-primary);
    border-radius: var(--jb-radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.lp-about-quote p {
    font-style: italic;
    color: var(--jb-text);
    font-size: 15px;
    line-height: 1.7;
}

.lp-about-milestones {
    text-align: left;
}

.lp-milestone {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--jb-border);
    font-size: 14px;
    color: var(--jb-text-light);
}

.lp-milestone:last-child {
    border-bottom: 0;
}

.lp-milestone-year {
    background: var(--jb-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.lp-about-text .lp-section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.lp-about-text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.lp-highlight {
    color: var(--jb-primary);
}

.lp-about-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--jb-text-light);
    margin-bottom: 16px;
}

.lp-about-values {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-value {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lp-value-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-value strong {
    display: block;
    font-size: 15px;
    color: var(--jb-text);
    margin-bottom: 2px;
}

.lp-value p {
    font-size: 14px;
    color: var(--jb-text-light);
    margin-bottom: 0;
}

/* --- Features Grid --- */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--jb-transition);
    position: relative;
}

.lp-feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.lp-feature-highlight {
    border-color: rgba(37,99,235,0.4);
    background: rgba(37,99,235,0.1);
}

.lp-feature-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--jb-accent);
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.lp-feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.lp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.lp-feature-card > p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.lp-feature-list {
    list-style: none;
    padding: 0;
}

.lp-feature-list li {
    font-size: 14px;
    color: #cbd5e1;
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
}

.lp-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--jb-success);
    font-weight: 700;
}

/* --- CTA Section --- */
.lp-cta-section {
    background: linear-gradient(135deg, #eff6ff 0%, #fef3c7 100%);
}

.lp-cta-box {
    background: #fff;
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    box-shadow: var(--jb-shadow-lg);
}

.lp-cta-badge {
    display: inline-block;
    background: var(--jb-primary-light);
    color: var(--jb-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.lp-cta-box h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-box > p {
    font-size: 16px;
    color: var(--jb-text-light);
    margin-bottom: 28px;
}

.lp-cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    max-width: 500px;
    margin: 0 auto 32px;
    text-align: left;
}

.lp-cta-benefit {
    font-size: 15px;
    font-weight: 500;
    color: var(--jb-text);
    padding: 4px 0;
}

.lp-cta-form {
    max-width: 460px;
    margin: 0 auto;
}

.lp-cta-privacy {
    font-size: 13px;
    color: var(--jb-text-muted);
    margin-top: 16px;
}

/* --- Testimonials --- */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-testimonial-card {
    background: #fff;
    border: 1px solid var(--jb-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--jb-transition);
}

.lp-testimonial-card:hover {
    box-shadow: var(--jb-shadow-md);
}

.lp-stars {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.lp-testimonial-card > p {
    font-size: 15px;
    color: var(--jb-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--jb-primary-light);
    color: var(--jb-primary);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--jb-text);
}

.lp-testimonial-author span {
    font-size: 13px;
    color: var(--jb-text-muted);
}

/* --- Category Cards (Landing) --- */
.jb-cat-desc {
    display: block;
    font-size: 13px;
    color: var(--jb-text-muted);
    margin-top: 2px;
}

/* --- Final CTA --- */
.lp-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.lp-final-cta h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.lp-final-cta > .jb-container > p {
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-final-form {
    max-width: 460px;
    margin: 0 auto 16px;
}

.lp-final-cta .lp-cta-privacy {
    color: #64748b;
}

.lp-final-cta .jemail-subscribe-form {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--jb-radius);
    padding: 20px;
}

.lp-final-cta .jemail-subscribe-form input[type="text"],
.lp-final-cta .jemail-subscribe-form input[type="email"] {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.lp-final-cta .jemail-subscribe-form input::placeholder {
    color: #94a3b8;
}

/* --- Empty State (landing) --- */
.jb-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--jb-bg-light);
    border-radius: var(--jb-radius);
    border: 2px dashed var(--jb-border);
}

.jb-empty-state p {
    font-size: 16px;
    color: var(--jb-text-light);
}

/* --- Landing Page Responsive --- */
@media (max-width: 1024px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .lp-hero-text h1 {
        font-size: 36px;
    }

    .lp-hero-form {
        max-width: 100%;
        margin: 0 auto;
    }

    .lp-hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .lp-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 70px 0 50px;
    }

    .lp-hero-text h1 {
        font-size: 30px;
    }

    .lp-hero-sub {
        font-size: 16px;
    }

    .lp-section {
        padding: 60px 0;
    }

    .lp-section-header h2 {
        font-size: 26px;
    }

    .lp-about-text h2 {
        font-size: 26px;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lp-cta-box {
        padding: 40px 24px;
    }

    .lp-cta-box h2 {
        font-size: 24px;
    }

    .lp-cta-benefits {
        grid-template-columns: 1fr;
    }

    .lp-proof-items {
        gap: 20px;
    }

    .lp-proof-divider {
        display: none;
    }

    .lp-proof-items {
        justify-content: space-around;
    }

    .lp-final-cta {
        padding: 60px 0;
    }

    .lp-final-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .lp-hero-text h1 {
        font-size: 26px;
    }

    .lp-profile-stats {
        gap: 8px;
    }

    .lp-profile-stats strong {
        font-size: 16px;
    }

    .lp-proof-items {
        flex-direction: column;
        gap: 16px;
    }
}
