/* ═══════════════════════════════════════════════════════════════════
   ProZall — Modern Design System  v2
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --navy: #0B2B5B;
    --navy-dark: #061A38;
    --navy-light: #123D7A;
    --green: #01A46B;
    --green-dark: #008C5A;
    --green-light: #E6F7F1;
    --orange: #EE4710;
    --orange-dark: #CC3A0E;
    --primary: var(--navy);
    --accent: var(--green);
    --cta: var(--orange);
    --success: #00A651;
    --warning: #F59E0B;
    --danger: #EF4444;
    /* Semantic status — separate from brand accent */
    --success-bg: #D1FAE5; --success-fg: #065F46;
    --warning-bg: #FEF3C7; --warning-fg: #92400E;
    --danger-bg:  #FEE2E2; --danger-fg:  #991B1B;
    --info-bg:    #DBEAFE; --info-fg:    #1E40AF;
    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --gray-50:  #F8FAFC;
    --white: #FFFFFF;
    /* Restrained stat-card accent slots — brand hues + one neutral, not decorative candy colors */
    --accent-navy-bg:    #E8EDF6; --accent-navy-fg:    var(--navy);
    --accent-green-bg:   var(--green-light); --accent-green-fg:   var(--green-dark);
    --accent-orange-bg:  #FDEAE2; --accent-orange-fg:  var(--orange-dark);
    --accent-neutral-bg: var(--gray-100); --accent-neutral-fg: var(--gray-600);
    --shadow-sm: 0 1px 3px rgba(11,43,91,0.08);
    --shadow: 0 4px 20px rgba(11,43,91,0.08);
    --shadow-lg: 0 12px 40px rgba(11,43,91,0.14);
    --shadow-xl: 0 24px 64px rgba(11,43,91,0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.has-site-header { padding-top: 88px; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { color: var(--gray-600); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-navy  { color: var(--navy); }
.lead { font-size: 1.125rem; color: var(--gray-700); line-height: 1.75; }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; font-size: 0.9375rem; font-weight: 600;
    border-radius: 50px; border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); text-decoration: none;
    line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,43,91,0.3); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,166,81,0.35); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--gray-100); color: var(--navy); }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-white-outline:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.9); }
.btn-ghost { background: transparent; color: var(--gray-600); border-color: transparent; }
.btn-ghost:hover { color: var(--navy); background: var(--gray-100); }
.btn-sm  { padding: 9px 20px; font-size: 0.875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }

/* ── HEADER ───────────────────────────────────────────────────────── */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000;
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(11,43,91,0.08); }
.header-inner {
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    height: 88px; gap: 24px;
}
.header-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.header-logo .logo-img { height: 50px; }
.nav-main { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: nowrap; }
.nav-main > a {
    padding: 10px 8px; color: #111827; font-weight: 700;
    border-radius: 8px; font-size: 1rem; transition: all var(--transition);
    white-space: nowrap;
}
.nav-main > a:hover { color: var(--green); background: transparent; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.header-login-link {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}
.header-login-link:hover { color: var(--green); }
.header-register-btn {
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 12px;
    font-size: 1.06rem;
    font-weight: 800;
    box-shadow: none;
}
.header-register-btn i { font-size: .95rem; }
.header-user-menu {
    position: relative;
}
.header-user-trigger {
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    color: #111827;
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    min-height: 52px;
    max-width: 240px;
    padding: 6px 12px 6px 6px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.header-user-trigger:hover,
.header-user-trigger:focus-visible,
.header-user-menu.open .header-user-trigger {
    border-color: rgba(0,166,81,.45);
    box-shadow: 0 12px 30px rgba(11,43,91,.12);
    outline: none;
    transform: translateY(-1px);
}
.header-user-avatar,
.header-user-card-avatar {
    border-radius: 50%;
    flex: 0 0 auto;
    object-fit: cover;
}
.header-user-avatar {
    height: 40px;
    width: 40px;
}
.header-user-identity {
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-align: left;
}
.header-user-name {
    color: #111827;
    display: block;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.15;
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-user-role {
    color: var(--gray-500);
    display: block;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.2;
}
.header-user-chevron {
    color: var(--gray-400);
    font-size: .72rem;
    transition: transform var(--transition);
}
.header-user-menu.open .header-user-chevron {
    transform: rotate(180deg);
}
.header-user-dropdown {
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 12px;
    box-shadow: 0 22px 60px rgba(11,43,91,.18);
    min-width: 300px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    visibility: hidden;
    z-index: 1200;
}
.header-user-menu.open .header-user-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.header-user-card {
    align-items: center;
    background: linear-gradient(135deg, rgba(11,43,91,.06), rgba(0,166,81,.08));
    display: flex;
    gap: 12px;
    padding: 16px;
}
.header-user-card-avatar {
    height: 46px;
    width: 46px;
}
.header-user-card-text {
    min-width: 0;
}
.header-user-card-text strong,
.header-user-card-text span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-user-card-text strong {
    color: #111827;
    font-size: .96rem;
    font-weight: 900;
    line-height: 1.2;
}
.header-user-card-text span {
    color: var(--gray-500);
    font-size: .78rem;
    font-weight: 600;
    margin-top: 3px;
    max-width: 220px;
}
.header-user-menu-list {
    max-height: min(70vh, 470px);
    overflow-y: auto;
    padding: 8px;
}
.header-user-menu-item {
    align-items: center;
    border-radius: 8px;
    color: var(--gray-700);
    display: flex;
    font-size: .92rem;
    font-weight: 700;
    gap: 10px;
    line-height: 1.25;
    padding: 11px 12px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.header-user-menu-item i {
    color: var(--green);
    flex: 0 0 18px;
    font-size: .95rem;
    text-align: center;
}
.header-user-menu-item:hover,
.header-user-menu-item:focus-visible {
    background: var(--gray-50);
    color: var(--navy);
    outline: none;
    transform: translateX(2px);
}
.header-user-menu-item--warning {
    color: #b45309;
}
.header-user-menu-item--warning i {
    color: #f59e0b;
}
.header-user-menu-item--logout {
    border-top: 1px solid var(--gray-100);
    color: #dc2626;
    margin-top: 6px;
}
.header-user-menu-item--logout i {
    color: #dc2626;
}
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
    padding: 9px 15px; color: var(--gray-700); font-weight: 500;
    border-radius: var(--radius-sm); font-size: 0.9375rem;
    background: transparent; border: none; cursor: pointer; transition: all var(--transition);
    display: flex; align-items: center; gap: 4px;
}
.nav-dropdown-btn:hover { color: var(--navy); background: var(--gray-50); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0; background: #fff;
    border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 8px;
    min-width: 200px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(-8px); transition: all var(--transition); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block; padding: 10px 14px; border-radius: var(--radius-sm);
    color: var(--gray-700); font-size: 0.9375rem;
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--navy); }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; font-size: 0.875rem; font-weight: 600;
    border: 1.5px solid var(--gray-200); border-radius: 50px;
    background: #fff; color: var(--gray-700); cursor: pointer;
    transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--navy); color: var(--navy); }
.lang-flag { font-size: 1rem; }
.lang-caret { font-size: 0.625rem; color: var(--gray-400); }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; background: #fff;
    border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 6px;
    min-width: 140px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(-8px); transition: all var(--transition); z-index: 200;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    font-size: 0.875rem; font-weight: 500; color: var(--gray-700);
    transition: background var(--transition);
}
.lang-option:hover { background: var(--gray-50); color: var(--navy); }
.lang-option.active { color: var(--green); font-weight: 700; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: transparent; border: none; padding: 6px; cursor: pointer;
}
.hamburger span {
    display: block; width: 22px; height: 2px; background: var(--navy);
    border-radius: 2px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 1001; opacity: 0; transition: opacity var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; }
.mobile-nav {
    position: fixed; top: 0; right: -320px; bottom: 0; width: 300px;
    background: var(--navy-dark); padding: 72px 24px 32px;
    z-index: 1002; transition: right var(--transition); overflow-y: auto;
    display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
    display: block; padding: 12px 16px; color: rgba(255,255,255,0.85);
    font-size: 1rem; font-weight: 500; border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-nav-close {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,255,255,0.1); border: none; color: #fff;
    width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
.lang-mobile {
    padding: 8px 16px; border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.2); transition: all var(--transition);
}
.lang-mobile:hover, .lang-mobile.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
    position: relative; overflow: hidden; min-height: 620px;
    display: flex; align-items: center;
}
.hero-img-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
    transform: scale(1.03);
    transition: transform 8s ease-out;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,26,56,0.93) 0%, rgba(11,43,91,0.88) 55%, rgba(18,61,122,0.80) 100%);
    z-index: 1;
}
.hero-container-centered {
    grid-template-columns: 1fr !important;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 24px 120px !important;
}
.hero-actions-center { justify-content: center; }
.popular-tags-center { justify-content: center; }
.hero-btn-outline-light {
    color: #fff !important;
    border-color: var(--green) !important;
    background: transparent;
}
.hero-btn-outline-light:hover {
    background: var(--green) !important;
    color: #fff !important;
}
.hero-search-btn {
    padding: 11px 22px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}
.hero-centered .hero-search {
    margin-left: auto;
    margin-right: auto;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,166,81,0.18); border: 1px solid rgba(0,166,81,0.3);
    color: #6EE7B7; border-radius: 50px; padding: 8px 18px;
    font-size: 0.8125rem; font-weight: 600; margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.badge-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; box-shadow: 0 0 0 2px rgba(16,185,129,0.3); }
.hero h1 { color: #fff; margin-bottom: 16px; font-weight: 900; }
.hero h1 .highlight { color: var(--green); display: block; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-bottom: 36px; max-width: 560px; line-height: 1.6; }
.hero-centered .hero-sub {
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 .text-green { color: var(--green); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-cta-primary { box-shadow: 0 8px 24px rgba(249,115,22,0.4); }
.hero-search {
    background: #fff; border-radius: 60px; padding: 6px 6px 6px 20px;
    display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-xl); max-width: 600px;
}
.hero-search-icon { color: var(--gray-400); display: flex; align-items: center; flex-shrink: 0; }
.hero-search-icon svg { width: 18px; height: 18px; }
.hero-search input {
    flex: 1; border: none; padding: 12px 0; font-size: 0.9375rem; outline: none; background: transparent; color: var(--gray-800);
}
.hero-search .btn { border-radius: 50px; padding: 12px 28px; }
.popular-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.popular-tags span { color: rgba(255,255,255,0.6); font-size: 0.8125rem; margin-right: 4px; }
.tag-pill {
    padding: 6px 14px; border-radius: 50px; font-size: 0.8125rem;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.18); transition: all var(--transition);
}
.tag-pill:hover { background: var(--green); border-color: var(--green); color: #fff; }

.hero-container {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr auto;
    gap: 48px; align-items: center; padding: 80px 24px 100px;
}

/* Clean category cards (prozall.com style) */
.category-grid-clean { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card-clean {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.category-card-clean:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: inherit;
}
.category-icon-clean {
    width: 56px; height: 56px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 14px;
}
.category-card-clean h4 { font-size: 0.9375rem; color: var(--navy); font-weight: 600; line-height: 1.35; }
.category-card-more-clean {
    background: var(--navy);
    border-color: var(--navy);
}
.category-card-more-clean h4, .category-card-more-clean p { color: rgba(255,255,255,0.9) !important; }
.category-card-more-clean .text-muted { color: rgba(255,255,255,0.65) !important; }
.category-card-more-clean:hover { border-color: var(--navy-light); background: var(--navy-light); }

/* Clean dual CTA */
.dual-cta-clean { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-box-clean {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.cta-box-clean-img { min-height: 220px; }
.cta-box-clean-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-box-clean-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.cta-box-clean-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.cta-box-clean-body p { font-size: 0.9375rem; margin-bottom: 20px; line-height: 1.65; }

/* Clean freelancer cards */
.freelancer-grid-clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.freelancer-card-clean { text-align: center; border: 1px solid var(--gray-100); }
.freelancer-card-clean .avatar {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 auto 12px; object-fit: cover;
    border: 3px solid var(--green-light);
}
.freelancer-card-clean .name {
    font-weight: 700; color: var(--navy);
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 0.9375rem;
}
.freelancer-card-clean .role { font-size: 0.8125rem; color: var(--gray-500); margin: 6px 0; min-height: 36px; }
.freelancer-card-clean .location { font-size: 0.75rem; margin-bottom: 6px; }
.freelancer-card-clean .rating-row { margin: 6px 0; }
.freelancer-card-clean .rate { color: var(--green); font-weight: 700; margin: 8px 0 14px; }

/* Clean steps */
.steps-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.step-card-clean {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.step-card-clean h3 { font-size: 1.125rem; margin: 18px 0 12px; }
.step-card-clean p { font-size: 0.9375rem; line-height: 1.7; }
.step-card-clean .step-number {
    width: 52px; height: 52px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.25rem;
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(0,166,81,0.3);
}

.faq-sidebar h2 { font-size: 1.75rem; line-height: 1.3; }
.hero-cards-stack { position: relative; width: 240px; height: 300px; }
.hero-card-float {
    position: absolute; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 14px 16px;
    display: flex; align-items: center; gap: 10px; width: 210px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2); animation: float 6s ease-in-out infinite;
}
.hero-card-float img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.hero-card-float strong { display: block; color: #fff; font-size: 0.9375rem; }
.hero-card-float span { color: rgba(255,255,255,0.7); font-size: 0.8125rem; }
.hero-card-badge {
    margin-left: auto; background: rgba(255,255,255,0.15); color: #fff;
    padding: 4px 8px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.hero-card-badge-green { background: var(--green); }
.hero-card-1 { top: 20px; left: 0; animation-delay: 0s; }
.hero-card-2 { top: 120px; left: 20px; animation-delay: 1.5s; }
.hero-stat-card {
    position: absolute; bottom: 10px; right: 0;
    background: var(--green); border-radius: var(--radius); padding: 16px 20px;
    text-align: center; box-shadow: 0 8px 24px rgba(0,166,81,0.4);
}
.hero-stat-num { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.85); margin-top: 4px; }
.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
}
.hero-wave svg { display: block; width: 100%; }
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Page hero (inner pages) */
.page-hero {
    position: relative; overflow: hidden; padding: 90px 0 100px;
    background: var(--navy-dark);
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: var(--hero-img, url('')) center/cover no-repeat;
    opacity: 0.25;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,26,56,0.92), rgba(11,43,91,0.85));
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 { color: #fff; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-top: 12px; }

/* ── STATS BAR ───────────────────────────────────────────────────── */
.stats-bar { background: #092B8C; padding: 36px 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
    text-align: center; padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2.25rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat-label  { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 6px; font-weight: 500; }
.stat-item-light { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item-light:last-child { border-right: none; }

/* ── SECTIONS ─────────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt-bg { background: var(--gray-50); }
.section-navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.0625rem; max-width: 620px; margin: 0 auto; color: var(--gray-500); }
.section-eyebrow {
    display: inline-block; color: var(--green); font-weight: 700; font-size: 0.875rem;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}

/* ── CARDS ────────────────────────────────────────────────────────── */
.card {
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--gray-100); overflow: hidden;
    transition: all var(--transition); box-shadow: var(--shadow);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }

/* ── CATEGORIES ──────────────────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: inherit; display: block;
    box-shadow: var(--shadow); transition: all var(--transition);
    min-height: 180px;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.cat-img-wrap { position: absolute; inset: 0; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,26,56,0.85) 0%, rgba(6,26,56,0.3) 60%, transparent 100%);
    transition: background var(--transition);
}
.category-card:hover .cat-overlay {
    background: linear-gradient(to top, rgba(0,140,69,0.85) 0%, rgba(0,140,69,0.3) 60%, transparent 100%);
}
.cat-icon {
    position: absolute; top: 16px; right: 16px;
    width: 44px; height: 44px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
    transition: background var(--transition);
}
.category-card h4 {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.category-card-more {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; text-align: center; padding: 28px 20px;
}
.category-card-more:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.more-icon { font-size: 2rem; color: rgba(255,255,255,0.4); }
.category-card-more h4 { position: static; color: #fff; font-size: 1rem; text-shadow: none; }

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.how-steps { display: flex; flex-direction: column; gap: 80px; }
.how-step {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.how-step-reverse .how-step-media { order: 2; }
.how-step-reverse .how-step-content { order: 1; }
.how-step-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.how-step-media img { width: 100%; height: 360px; object-fit: cover; }
.how-step-num {
    position: absolute; bottom: -16px; right: -16px;
    width: 80px; height: 80px; background: var(--green);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; font-weight: 900; color: #fff; box-shadow: 0 8px 24px rgba(0,166,81,0.4);
    font-family: var(--font);
}
.how-step-content { padding: 8px 0; }
.how-step-content h3 { font-size: 1.75rem; margin-bottom: 16px; }
.how-step-content p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 24px; }
.how-step-content .btn { align-self: flex-start; }

/* How it works dual content */
.how-dual-content { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; }
.how-dual-item { padding: 24px; border-radius: var(--radius); border: 1px solid var(--gray-100); background: #fff; }
.how-dual-label {
    display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
    background: var(--gray-100); color: var(--gray-600);
}
.how-dual-label-green { background: var(--green-light); color: var(--green-dark); }
.how-dual-item h4 { margin-bottom: 8px; font-size: 1rem; }
.how-dual-item p { font-size: 0.9375rem; }
.how-dual-divider { font-weight: 700; color: var(--gray-400); font-size: 0.875rem; padding-top: 40px; }

/* ── DUAL CTA ─────────────────────────────────────────────────────── */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-box {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); transition: all var(--transition);
}
.cta-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.cta-box-img { height: 220px; overflow: hidden; }
.cta-box-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cta-box:hover .cta-box-img img { transform: scale(1.06); }
.cta-box-body { padding: 32px; }
.cta-box-client .cta-box-body { background: linear-gradient(135deg, #EEF4FF, #F8FAFC); }
.cta-box-freelancer .cta-box-body { background: linear-gradient(135deg, var(--green-light), #F0FDF4); }
.cta-label {
    display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
    background: var(--gray-200); color: var(--gray-700);
}
.cta-label-green { background: var(--green-light); color: var(--green-dark); }
.cta-box-body h3 { margin-bottom: 10px; }
.cta-box-body p { margin-bottom: 20px; color: var(--gray-600); }

/* ── FREELANCERS ─────────────────────────────────────────────────── */
.freelancer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.freelancer-card { position: relative; text-align: center; overflow: visible; }
.freelancer-card-bg {
    position: absolute; top: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius) var(--radius) 0 0;
}
.freelancer-card .card-body { position: relative; padding-top: 56px; }
.freelancer-card .avatar {
    width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px;
    object-fit: cover; border: 4px solid #fff; box-shadow: 0 4px 16px rgba(11,43,91,0.15);
    position: relative; margin-top: -44px;
}
.freelancer-card .name { font-weight: 700; color: var(--navy); display: flex; align-items: center; justify-content: center; gap: 6px; }
.verified-check { color: var(--green); font-size: 0.9375rem; }
.freelancer-card .role { font-size: 0.875rem; color: var(--gray-500); margin: 4px 0 10px; }
.freelancer-card .rate { color: var(--green); font-weight: 800; font-size: 1.0625rem; margin: 8px 0 16px; }

/* ── SERVICES ────────────────────────────────────────────────────── */
.service-card-img { height: 180px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,43,91,0.4), transparent);
}
.service-card .price { font-size: 1.375rem; font-weight: 800; color: var(--green); margin: 10px 0 8px; }
.service-freelancer { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.service-freelancer img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.service-freelancer span { font-size: 0.875rem; color: var(--gray-600); }

/* ── TRUST ────────────────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card {
    background: #fff; border-radius: var(--radius); padding: 32px 28px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow);
    transition: all var(--transition); text-align: center;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.trust-icon {
    width: 64px; height: 64px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-icon-blue   { background: #EEF4FF; color: #3B82F6; }
.trust-icon-green  { background: var(--green-light); color: var(--green-dark); }
.trust-icon-orange { background: #FFF7ED; color: var(--orange); }
.trust-icon-purple { background: #FAF5FF; color: #9333EA; }
.trust-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.trust-card p  { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff; border-radius: var(--radius); padding: 32px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow);
    transition: all var(--transition); position: relative;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 20px; right: 28px;
    font-size: 4rem; color: var(--green-light); font-family: serif; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #FBBF24; font-size: 1.0625rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--gray-700); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.9375rem; }
.testimonial-author span  { display: block; color: var(--gray-500); font-size: 0.8125rem; margin-top: 2px; }

/* ── PRICING ──────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.pricing-card {
    background: #fff; border-radius: var(--radius-lg); padding: 40px 32px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow); position: relative;
    display: flex; flex-direction: column; transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
    background: var(--navy); border-color: var(--navy);
    box-shadow: 0 24px 64px rgba(11,43,91,0.3);
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #fff; padding: 6px 20px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,166,81,0.4);
}
.pricing-card .plan-name {
    font-size: 1.125rem; font-weight: 700; margin-bottom: 8px;
    color: var(--navy);
}
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.8); }
.pricing-card .plan-price {
    font-size: 3rem; font-weight: 800; color: var(--navy);
    margin: 20px 0; line-height: 1;
}
.pricing-card.featured .plan-price { color: var(--green); }
.pricing-card .plan-price span { font-size: 0.9375rem; font-weight: 500; color: var(--gray-500); }
.pricing-card.featured .plan-price span { color: rgba(255,255,255,0.6); }
.plan-free { font-size: 1.75rem; font-weight: 800; color: var(--gray-500); }
.pricing-features { list-style: none; flex: 1; margin: 20px 0 28px; }
.pricing-features li {
    padding: 11px 0; border-bottom: 1px solid var(--gray-100);
    display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; color: var(--gray-700);
}
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── STEPS (simple 3-col) ────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 40px 28px; }
.step-number {
    width: 56px; height: 56px; background: var(--green); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; margin: 0 auto 20px; font-size: 1.25rem;
    box-shadow: 0 6px 20px rgba(0,166,81,0.35);
}

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-sidebar-icon {
    width: 72px; height: 72px; background: var(--green-light); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900;
    color: var(--green); margin-bottom: 20px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
    background: #fff; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { border-color: var(--green); }
.faq-question {
    width: 100%; text-align: left; padding: 18px 22px; background: #fff; border: none;
    font-weight: 600; font-size: 0.9375rem; color: var(--navy); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: var(--font); line-height: 1.5; transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question::after {
    content: '+'; font-size: 1.375rem; color: var(--green); font-weight: 300;
    flex-shrink: 0; transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: all var(--transition); color: var(--gray-600); }
.faq-item.open .faq-answer { padding: 0 22px 18px; max-height: 400px; }

/* ── FINAL CTA SECTION ───────────────────────────────────────────── */
.section-navy-cta { position: relative; padding: 100px 0; overflow: hidden; }
.section-navy-cta-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}
.section-navy-cta-bg::after {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1200&q=60') center/cover no-repeat;
    opacity: 0.06;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────── */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-intro-text h2 { margin: 12px 0 20px; }
.about-intro-text .lead { margin-bottom: 16px; }
.about-intro-img { position: relative; }
.about-intro-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.about-img-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--green); color: #fff; border-radius: var(--radius); padding: 18px 24px;
    text-align: center; box-shadow: 0 8px 24px rgba(0,166,81,0.4);
}
.about-badge-num { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.about-img-badge > div:last-child { font-size: 0.8125rem; opacity: 0.9; margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: #fff; border-radius: var(--radius); padding: 32px 24px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow);
    transition: all var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon { width: 60px; height: 60px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.625rem; margin-bottom: 18px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.0625rem; }
.value-card p { font-size: 0.9375rem; color: var(--gray-500); }
.about-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.team-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.team-img-grid img { border-radius: var(--radius); object-fit: cover; height: 180px; width: 100%; }
.team-img-grid img:nth-child(even) { margin-top: 20px; }

/* ── FORMS ────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.875rem; color: var(--gray-700); }
.form-control {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 1rem; font-family: var(--font);
    transition: border-color var(--transition), box-shadow var(--transition);
    color: var(--gray-800); background: #fff;
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,166,81,0.12); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.8125rem; color: var(--gray-500); margin-top: 4px; }

/* ── ALERTS ───────────────────────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.alert-success { background: var(--green-light); color: var(--green-dark); border: 1px solid #BBF7D0; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* ── BADGES ───────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-verified  { background: var(--green-light); color: var(--green-dark); }
.badge-featured  { background: #FEF3C7; color: #D97706; }
.badge-status              { background: var(--gray-100); color: var(--gray-700); }
.badge-status.badge-active          { background: #D1FAE5; color: #065F46; }
.badge-status.badge-revision        { background: #FEF3C7; color: #92400E; }
.badge-status.badge-delivered       { background: #DBEAFE; color: #1E40AF; }
.badge-status.badge-completed       { background: #D1FAE5; color: #065F46; }
.badge-status.badge-pending_payment { background: #F3F4F6; color: #6B7280; }
.badge-status.badge-cancelled       { background: #FEE2E2; color: #991B1B; }
.badge-status.badge-disputed        { background: #FEE2E2; color: #991B1B; }
.badge-status.badge-pending         { background: var(--warning-bg); color: var(--warning-fg); }
.badge-success   { background: var(--green-light); color: var(--green-dark); }
.badge-warning   { background: #FEF3C7; color: #D97706; }
.badge-inactive  { background: #FEE2E2; color: #991B1B; }

.badge-role                  { background: var(--gray-100); color: var(--gray-700); }
.badge-role.badge-role-freelancer { background: var(--accent-green-bg); color: var(--accent-green-fg); }
.badge-role.badge-role-client     { background: var(--info-bg); color: var(--info-fg); }

/* ── DATA TABLE ───────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table thead th {
    text-align: left;
    padding: 12px 16px;
    background: var(--gray-50);
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.8125rem;
    border-bottom: 1px solid var(--gray-200);
    white-space: nowrap;
}
.data-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--gray-50); }
.data-table tbody tr.is-clickable { cursor: pointer; }
.data-table th.num, .data-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.data-table td.truncate { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.data-table td.muted { color: var(--gray-500); }
.data-table td.strong { font-weight: 600; }
.data-table td .btn + .btn { margin-left: 6px; }
.data-table .icon-check { color: var(--green); }
.data-table .icon-check svg, .data-table td svg { display: inline-block; vertical-align: -2px; }

.fl-earn-card-value, .fl-counter-value, .data-table td.num, .fl-history-table td.num {
    font-variant-numeric: tabular-nums;
}

/* ── FOOTER ───────────────────────────────────────────────────────── */
.site-footer {
    background: #061a53;
    color: rgba(255,255,255,.78);
    overflow: hidden;
    padding: 0 0 34px;
}
.site-footer .container {
    max-width: 1540px;
}
.footer-main {
    display: grid;
    gap: 86px;
    grid-template-columns: minmax(280px, 440px) minmax(440px, 1fr) minmax(260px, 380px);
    min-height: 520px;
    padding: 86px 0 138px;
}
.footer-brand {
    max-width: 440px;
}
.footer-logo {
    filter: brightness(0) invert(1);
    height: 52px;
    margin-bottom: 42px;
}
.footer-brand p {
    color: rgba(255,255,255,.78);
    font-size: 1.13rem;
    font-weight: 600;
    line-height: 1.34;
    margin: 0;
}
.footer-links-panel,
.footer-contact {
    padding-top: 2px;
}
.footer-panel-title {
    color: #fff;
    font-size: 1.26rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 42px;
}
.footer-grid {
    display: grid;
    gap: 44px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.03rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.07;
    margin: 0 0 26px;
    text-transform: uppercase;
}
.footer-col a {
    color: rgba(255,255,255,.92);
    display: block;
    font-size: 1.03rem;
    font-weight: 800;
    line-height: 1.14;
    padding: 0 0 14px;
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--green);
}
.footer-contact {
    justify-self: end;
    max-width: 380px;
    width: 100%;
}
.footer-phone {
    align-items: center;
    color: rgba(255,255,255,.78);
    display: inline-flex;
    font-size: 1.08rem;
    font-weight: 700;
    gap: 16px;
    line-height: 1.2;
    text-decoration: none;
}
.footer-phone i {
    color: rgba(255,255,255,.72);
    font-size: 1.24rem;
}
.footer-phone:hover {
    color: #fff;
}
.footer-bottom {
    align-items: center;
    background: rgba(255,255,255,.06);
    border: 0;
    border-radius: 18px;
    display: grid;
    font-size: 1rem;
    gap: 28px;
    grid-template-columns: auto 1fr auto auto;
    margin-top: -96px;
    min-height: 76px;
    padding: 20px 34px;
}
.footer-bottom > span {
    color: rgba(255,255,255,.78);
    font-weight: 500;
}
.footer-legal-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.footer-legal-links a {
    color: rgba(255,255,255,.78);
    font-weight: 500;
    text-decoration: none;
}
.footer-legal-links a:hover {
    color: var(--green);
}
.footer-social {
    align-items: center;
    display: flex;
    gap: 22px;
    justify-content: flex-end;
}
.social-icon {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: #fff;
    display: flex;
    font-size: 1.2rem;
    height: 28px;
    justify-content: center;
    transition: color var(--transition), transform var(--transition);
    width: 28px;
}
.social-icon svg {
    height: 18px;
    width: 18px;
}
.social-icon:hover {
    background: transparent;
    color: var(--green);
    transform: translateY(-2px);
}
.footer-lang-toggle {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.footer-lang-toggle a {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    color: rgba(255,255,255,.72);
    font-size: .85rem;
    font-weight: 800;
    padding: 9px 11px;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.footer-lang-toggle a:hover,
.footer-lang-toggle a.active {
    background: #fff;
    border-color: #fff;
    color: #061a53;
}
@media (max-width: 1180px) {
    .footer-main {
        gap: 52px;
        grid-template-columns: minmax(260px, .9fr) minmax(420px, 1.25fr);
        min-height: 0;
        padding: 72px 0 128px;
    }
    .footer-contact {
        grid-column: 1 / -1;
        justify-self: start;
        max-width: none;
    }
    .footer-panel-title {
        margin-bottom: 26px;
    }
    .footer-bottom {
        grid-template-columns: 1fr auto;
    }
    .footer-legal-links {
        order: 1;
    }
    .footer-bottom > span {
        order: 3;
    }
    .footer-social {
        order: 2;
    }
    .footer-lang-toggle {
        order: 4;
    }
}
@media (max-width: 760px) {
    .site-footer {
        padding-bottom: 22px;
    }
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 38px;
        padding: 56px 0 112px;
    }
    .footer-logo {
        height: 44px;
        margin-bottom: 28px;
    }
    .footer-brand p {
        font-size: 1rem;
    }
    .footer-grid {
        gap: 28px;
    }
    .footer-panel-title {
        font-size: 1.14rem;
        margin-bottom: 22px;
    }
    .footer-col h4 {
        font-size: .96rem;
        margin-bottom: 16px;
    }
    .footer-col a {
        font-size: .98rem;
        padding-bottom: 11px;
    }
    .footer-bottom {
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-top: -78px;
        padding: 22px;
    }
    .footer-social,
    .footer-lang-toggle {
        justify-content: flex-start;
    }
    .footer-legal-links {
        gap: 16px;
    }
}

/* ── STARS ────────────────────────────────────────────────────────── */
.star { color: var(--gray-300); }
.star.filled { color: #FBBF24; }

/* ── GRIDS ────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── PAGE HEADER (inner pages) ────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 56px 0; margin-bottom: 48px;
}
.page-header h1 { color: #fff; font-size: 2rem; }
.page-header p  { color: rgba(255,255,255,0.8); margin-top: 8px; }

/* ── BROWSE ───────────────────────────────────────────────────────── */
.browse-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; }
.filters { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-100); height: fit-content; position: sticky; top: 96px; box-shadow: var(--shadow-sm); }

/* ── PROFILE ──────────────────────────────────────────────────────── */
.profile-header { background: #fff; border-radius: var(--radius); padding: 32px; display: flex; gap: 24px; align-items: center; margin-bottom: 24px; border: 1px solid var(--gray-100); }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--green-light); }

/* ── CHAT ─────────────────────────────────────────────────────────── */
.chat-container { display: flex; flex-direction: column; height: calc(100vh - 200px); background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-100); }
.chat-messages { flex: 1; overflow-y: auto; padding: 24px; }
.chat-message { margin-bottom: 16px; max-width: 72%; }
.chat-message.sent { margin-left: auto; text-align: right; }
.chat-message .bubble { display: inline-block; padding: 12px 16px; border-radius: 18px; background: var(--gray-100); font-size: 0.9375rem; line-height: 1.55; }
.chat-message.sent .bubble { background: var(--navy); color: #fff; }
.chat-input { padding: 16px; border-top: 1px solid var(--gray-100); display: flex; gap: 12px; }

/* ── DASHBOARD ────────────────────────────────────────────────────── */
.dashboard-layout { display: flex; min-height: 100vh; }
.dashboard-sidebar {
    width: 260px; background: var(--navy-dark); color: #fff;
    padding: 24px 0; flex-shrink: 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto;
}
.dashboard-sidebar .sidebar-logo { padding: 0 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 12px; }
.dashboard-sidebar .sidebar-logo img { height: 32px; filter: brightness(0) invert(1); }
.sidebar-nav a {
    display: flex; align-items: center; gap: 10px; padding: 11px 24px;
    color: rgba(255,255,255,0.72); font-weight: 500; font-size: 0.9rem;
    border-left: 3px solid transparent; transition: all var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,0.08); color: #fff; border-left-color: var(--green); }
.dashboard-main { flex: 1; margin-left: 260px; background: var(--gray-50); min-height: 100vh; }
.dashboard-topbar { background: #fff; border-bottom: 1px solid var(--gray-100); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.dashboard-topbar h3 { color: var(--navy); font-size: 1.125rem; }
.dashboard-content { padding: 32px; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.stat-card .stat-value { font-size: 1.875rem; font-weight: 800; color: var(--green); }
.stat-card .stat-label { color: var(--gray-500); font-size: 0.875rem; margin-top: 4px; }

/* ── TABLES ───────────────────────────────────────────────────────── */
.table-wrap { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-100); overflow: hidden; box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; }
th,td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 0.9375rem; }
th { background: var(--gray-50); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); }
tr:last-child td { border-bottom: none; }
.table-actions { display: flex; gap: 6px; flex-wrap: wrap; }

/* ── ADMIN PANELS ─────────────────────────────────────────────────── */
.admin-panel { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-100); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.admin-panel h3 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }

/* ── CSS TOGGLE SWITCH ────────────────────────────────────────────── */
.toggle-switch { display: inline-flex; align-items: center; cursor: pointer; user-select: none; }
.toggle-input  { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-track  {
    display: block; width: 44px; height: 24px; border-radius: 12px;
    background: #cbd5e1; position: relative; transition: background 0.2s;
}
.toggle-track::after {
    content: ''; position: absolute; left: 3px; top: 3px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    transition: left 0.2s;
}
.toggle-input:checked + .toggle-track { background: #00A651; }
.toggle-input:checked + .toggle-track::after { left: 23px; }

/* ── HTML EDITOR (pages) ──────────────────────────────────────────── */
.html-editor-toolbar {
    display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
    background: var(--gray-50); border: 1px solid var(--gray-300);
    border-bottom: none; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    padding: 8px 10px;
}
.html-editor-toolbar button {
    padding: 4px 10px; border: 1.5px solid var(--gray-300); border-radius: 4px;
    background: #fff; font-size: 0.8125rem; cursor: pointer; font-family: inherit;
    transition: all 0.15s;
}
.html-editor-toolbar button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.html-editor-toolbar .sc-btn { background: #e0f2fe; border-color: #7dd3fc; color: #0369a1; }
.html-editor-toolbar .sc-btn:hover { background: #0369a1; color: #fff; border-color: #0369a1; }
.toolbar-sep { width: 1px; height: 24px; background: var(--gray-300); margin: 0 4px; }
.html-editor-visual {
    min-height: 240px; padding: 16px; background: #fff;
    border: 1.5px solid var(--gray-300); border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.9375rem; line-height: 1.7; outline: none;
}
.html-editor-visual:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,43,91,0.08); }
.html-editor-source { border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-family: monospace; font-size: 0.85rem; }

/* ── PAGE CONTENT (public) ────────────────────────────────────────── */
.prose h1,.prose h2,.prose h3 { margin: 1.25em 0 0.5em; color: var(--navy); font-weight: 700; }
.prose h2 { font-size: 1.5rem; } .prose h3 { font-size: 1.25rem; }
.prose p  { margin-bottom: 1em; line-height: 1.75; }
.prose a  { color: var(--green); text-decoration: underline; }
.prose ul,.prose ol { padding-left: 1.5em; margin-bottom: 1em; }
.prose li { margin-bottom: 0.4em; line-height: 1.7; }
.page-content { max-width: 860px; margin: 0 auto; }

/* ── SHORTCODE OUTPUTS ────────────────────────────────────────────── */
.shortcode-categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin: 24px 0; }
.sc-cat-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 16px; border-radius: var(--radius); border: 1.5px solid var(--gray-200); text-align: center; text-decoration: none; color: var(--navy); background: #fff; transition: all 0.2s; }
.sc-cat-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sc-cat-icon { font-size: 2rem; }
.sc-cat-name { font-weight: 600; font-size: 0.875rem; }
.shortcode-plans { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 24px 0; }
.sc-plan-card { padding: 24px; border-radius: var(--radius); border: 1.5px solid var(--gray-200); background: #fff; text-align: center; }
.sc-plan-price { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 12px 0; }
.sc-plan-price small { font-size: 1rem; font-weight: 400; color: var(--gray-500); }
.color-preview { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--gray-300); display: inline-block; vertical-align: middle; }

/* ── PAGINATION ───────────────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span { padding: 9px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-300); font-weight: 500; font-size: 0.9375rem; }
.pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════════
   CHATBOT WIDGET
   ═══════════════════════════════════════════════════════════════════ */
.chatbot-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9000; }
.chatbot-bubble {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border: none; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(11,43,91,0.35), 0 0 0 0 rgba(11,43,91,0);
    transition: all var(--transition);
    animation: pulse-ring 3s infinite;
}
.chatbot-bubble:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(11,43,91,0.45); }
.chatbot-bubble svg { width: 24px; height: 24px; }
.chat-badge {
    position: absolute; top: -4px; right: -4px;
    width: 20px; height: 20px; background: var(--orange);
    border-radius: 50%; font-size: 0.6875rem; font-weight: 700; color: #fff;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff; animation: bounce-badge 1s ease-in-out infinite;
}
.hidden { display: none !important; }
@keyframes pulse-ring {
    0%   { box-shadow: 0 8px 32px rgba(11,43,91,0.35), 0 0 0 0 rgba(11,43,91,0.3); }
    70%  { box-shadow: 0 8px 32px rgba(11,43,91,0.35), 0 0 0 14px rgba(11,43,91,0); }
    100% { box-shadow: 0 8px 32px rgba(11,43,91,0.35), 0 0 0 0 rgba(11,43,91,0); }
}
@keyframes bounce-badge {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.chatbot-panel {
    position: absolute; bottom: 72px; right: 0;
    width: 360px; background: #fff; border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(11,43,91,0.2), 0 0 0 1px var(--gray-100);
    overflow: hidden; display: none; flex-direction: column;
    max-height: 540px; transform-origin: bottom right;
    animation: panel-in 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.chatbot-panel.open { display: flex; }
@keyframes panel-in {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.chatbot-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.chatbot-name   { color: #fff; font-weight: 700; font-size: 0.9375rem; }
.chatbot-status { color: rgba(255,255,255,0.7); font-size: 0.75rem; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.status-dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; box-shadow: 0 0 0 2px rgba(34,197,94,0.3); }
.chatbot-header-actions button {
    background: rgba(255,255,255,0.15); border: none; color: rgba(255,255,255,0.8);
    width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.chatbot-header-actions button:hover { background: rgba(255,255,255,0.25); }
.chatbot-body { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.chatbot-messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
    scroll-behavior: smooth; max-height: 280px;
}
.chat-msg {
    max-width: 85%; padding: 10px 14px; border-radius: 16px;
    font-size: 0.875rem; line-height: 1.55; word-break: break-word;
}
.chat-msg a { color: var(--green); text-decoration: underline; }
.chat-msg-bot {
    background: var(--gray-100); color: var(--gray-800);
    border-radius: 4px 16px 16px 16px; align-self: flex-start;
}
.chat-msg-user {
    background: var(--navy); color: #fff;
    border-radius: 16px 4px 16px 16px; align-self: flex-end;
}
.chat-msg-bot.typing { display: flex; align-items: center; gap: 4px; }
.typing-dot { width: 7px; height: 7px; background: var(--gray-400); border-radius: 50%; animation: typing-bounce 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce { 0%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-6px); } }

.quick-questions {
    padding: 0 16px 12px;
    display: flex; flex-direction: column; gap: 6px;
}
.quick-q {
    background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    padding: 9px 14px; font-size: 0.8125rem; color: var(--navy); font-weight: 500;
    cursor: pointer; text-align: left; transition: all var(--transition); font-family: var(--font);
    line-height: 1.4;
}
.quick-q:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.chatbot-input-row {
    padding: 12px 16px; border-top: 1px solid var(--gray-100);
    display: flex; gap: 8px; align-items: center; background: #fff;
}
.chatbot-input {
    flex: 1; border: 1.5px solid var(--gray-200); border-radius: 50px; padding: 10px 16px;
    font-size: 0.875rem; outline: none; font-family: var(--font); transition: border-color var(--transition);
}
.chatbot-input:focus { border-color: var(--green); }
.chatbot-send {
    background: var(--navy); color: #fff; border: none; border-radius: 50px;
    padding: 10px 18px; font-size: 0.8125rem; font-weight: 600; cursor: pointer; white-space: nowrap;
    transition: background var(--transition); font-family: var(--font);
}
.chatbot-send:hover { background: var(--navy-dark); }
.live-chat-btn {
    width: 100%; padding: 12px; background: transparent; border: none;
    color: var(--green); font-weight: 600; font-size: 0.875rem; cursor: pointer;
    font-family: var(--font); transition: color var(--transition);
    border-top: 1px solid var(--gray-100);
}
.live-chat-btn:hover { color: var(--green-dark); }
.live-intro-text {
    padding: 16px 16px 8px; font-size: 0.9375rem; color: var(--gray-700); line-height: 1.6;
}
.live-form { padding: 0 16px 16px; display: flex; flex-direction: column; }
.live-form label { font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.chat-status-msg {
    text-align: center; padding: 16px; font-size: 0.875rem; color: var(--gray-500);
    background: var(--gray-50); border-radius: var(--radius-sm); margin: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.animate-fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.7s ease;
}
.animate-fade-up.in-view,
.animate-fade-in.in-view { opacity: 1; transform: translateY(0); }

/* Stagger children */
.animate-fade-up:nth-child(1) { transition-delay: 0s; }
.animate-fade-up:nth-child(2) { transition-delay: 0.1s; }
.animate-fade-up:nth-child(3) { transition-delay: 0.2s; }
.animate-fade-up:nth-child(4) { transition-delay: 0.3s; }
.animate-fade-up:nth-child(5) { transition-delay: 0.4s; }
.animate-fade-up:nth-child(6) { transition-delay: 0.5s; }
.animate-fade-up:nth-child(7) { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .category-grid, .category-grid-clean { grid-template-columns: repeat(3, 1fr); }
    .freelancer-grid, .freelancer-grid-clean { grid-template-columns: repeat(3, 1fr); }
    .trust-grid        { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid       { grid-template-columns: repeat(2, 1fr); }
    .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.12); }
}
@media (max-width: 1024px) {
    .pricing-grid    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .dual-cta, .dual-cta-clean { grid-template-columns: 1fr; }
    .cta-box-clean { grid-template-columns: 1fr; }
    .cta-box-clean-img { min-height: 180px; }
    .footer-grid     { grid-template-columns: 1fr 1fr; }
    .faq-layout      { grid-template-columns: 1fr; gap: 32px; }
    .hero-visual     { display: none; }
    .hero-container  { grid-template-columns: 1fr; }
    .about-intro-grid, .about-team-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-badge { left: 20px; bottom: -10px; }
    .grid-4          { grid-template-columns: repeat(2, 1fr); }
    .how-step        { grid-template-columns: 1fr; gap: 32px; }
    .how-step-reverse .how-step-media, .how-step-reverse .how-step-content { order: unset; }
    .how-dual-content { grid-template-columns: 1fr; }
    .how-dual-divider { display: none; }
}
@media (max-width: 768px) {
    .header-inner { display: flex; justify-content: space-between; }
    .nav-main  { display: none; }
    .hamburger { display: flex; }
    .mobile-nav-overlay { display: none; }
    .header-user-trigger {
        max-width: 190px;
        min-height: 46px;
        padding-right: 10px;
    }
    .header-user-avatar {
        height: 34px;
        width: 34px;
    }
    .header-user-role {
        display: none;
    }
    .header-user-dropdown {
        min-width: min(300px, calc(100vw - 32px));
    }
    .hero { padding: 0; }
    .hero-container { padding: 60px 24px 80px; }
    .category-grid, .category-grid-clean { grid-template-columns: repeat(2, 1fr); }
    .freelancer-grid, .freelancer-grid-clean { grid-template-columns: repeat(2, 1fr); }
    .trust-grid        { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .values-grid       { grid-template-columns: 1fr; }
    .steps, .steps-clean { grid-template-columns: 1fr; }
    .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
    .stats-grid        { grid-template-columns: repeat(2, 1fr); }
    .dashboard-sidebar { transform: translateX(-100%); z-index: 1001; }
    .dashboard-main    { margin-left: 0; }
    .form-row          { grid-template-columns: 1fr; }
    .browse-layout     { grid-template-columns: 1fr; }
    .filters           { position: static; }
    .profile-header    { flex-direction: column; text-align: center; }
    .chatbot-panel     { width: 320px; right: -8px; }
    .footer-grid       { grid-template-columns: 1fr; }
    .team-img-grid     { grid-template-columns: repeat(2, 1fr); }
    .team-img-grid img { height: 140px; }
    .team-img-grid img:nth-child(even) { margin-top: 0; }
}
@media (max-width: 480px) {
    .category-grid, .category-grid-clean { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .chatbot-widget { bottom: 16px; right: 16px; }
    .header-user-trigger {
        max-width: 164px;
    }
    .header-user-name {
        max-width: 78px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ProZall Live-site Design Components  (added)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Mega Menu ─────────────────────────────────────────────────── */
.nav-mega { position: static; }
.nav-mega-trigger {
    padding: 10px 8px; color: #111827; font-weight: 700;
    border-radius: 8px; font-size: 1rem;
    background: transparent; border: none; cursor: pointer;
    transition: all var(--transition);
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.nav-mega-trigger:hover,
.nav-mega.open .nav-mega-trigger { color: var(--green); background: transparent; }
.mega-chevron { transition: transform 0.2s ease; flex-shrink: 0; font-size: .78rem; }
.nav-mega.open .mega-chevron { transform: rotate(180deg); }
.nav-mega-panel {
    position: fixed; top: 88px; left: 0; right: 0; width: 100%;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11,43,91,.14);
    border-top: 1px solid var(--gray-100);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 999; pointer-events: none;
}
.nav-mega.open .nav-mega-panel {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.mega-panel-shell { padding: 24px 0 18px; }
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    padding: 0 0 18px;
}
.mega-col {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mega-col-title {
    font-size: .9rem; font-weight: 800; color: var(--navy);
    letter-spacing: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
    display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px;
    line-height: 1.25;
}
.mega-col-title:hover { color: var(--green); }
.mega-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--green-light);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.mega-link-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mega-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: .86rem;
    color: var(--gray-600);
    padding: 5px 0;
    line-height: 1.35;
    transition: color var(--transition);
}
.mega-link-list a:hover { color: var(--green); }
.mega-footer-bar {
    border-top: 1px solid var(--gray-100); padding: 16px 0 0;
    display: flex; align-items: center; gap: 10px;
}

/* Mobile mega nav */
.mobile-nav-hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 12px 0; }
.mobile-nav-section { padding: 0 0 4px; }
.mobile-nav-heading {
    font-size: 10px; font-weight: 800; color: var(--green); letter-spacing: .1em;
    text-transform: uppercase; padding: 8px 16px;
}
.mobile-nav-cat-group { padding: 4px 16px 8px; }
.mobile-nav-cat-parent {
    display: block; font-size: 12px; color: rgba(255,255,255,.5);
    text-transform: uppercase; letter-spacing: .05em; font-weight: 700;
    margin-bottom: 4px;
}
.mobile-nav-cat-child {
    display: block; color: rgba(255,255,255,.82) !important;
    font-size: 0.9rem; padding: 4px 0 !important;
}
.mobile-nav-icon-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding-left: 28px !important;
}
.mobile-nav-icon-link i {
    width: 16px;
    color: var(--green);
}
.mobile-nav-more {
    display: block; padding: 10px 16px !important;
    font-size: 0.875rem; color: var(--green) !important; font-weight: 600;
}
.mobile-register-btn {
    margin-top: 8px;
    display: flex !important;
    justify-content: center;
    color: #fff !important;
    border-radius: 12px !important;
}
.mobile-user-card {
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    display: flex;
    gap: 12px;
    margin: 4px 0 12px;
    padding: 14px 16px;
}
.mobile-user-card img {
    border-radius: 50%;
    height: 44px;
    object-fit: cover;
    width: 44px;
}
.mobile-user-card strong,
.mobile-user-card span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mobile-user-card strong {
    color: #fff;
    font-size: .98rem;
    font-weight: 900;
    line-height: 1.2;
    max-width: 170px;
}
.mobile-user-card span {
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    font-weight: 700;
    margin-top: 3px;
}
.mobile-user-logout {
    color: #fecaca !important;
}
.mobile-user-logout i {
    color: #fca5a5 !important;
}

/* ── Hero (prozall.com style) ──────────────────────────────────── */
.hero-prozall {
    position: relative; overflow: hidden;
    min-height: 680px; display: flex; align-items: center;
}
.hero-prozall-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
    transform: scale(1.03); transition: transform 8s ease-out;
}
.hero-prozall-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,26,83,0.95) 0%, rgba(9,43,140,0.88) 50%, rgba(11,43,91,0.85) 100%);
    z-index: 1;
}
.hero-prozall-inner {
    position: relative; z-index: 2;
    padding: 100px 24px 130px;
    max-width: 720px;
}
.hero-prozall-title {
    color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900; line-height: 1.12; letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.hero-prozall-highlight { color: var(--green); display: block; }
.hero-prozall-sub {
    color: rgba(255,255,255,.82); font-size: 1.15rem;
    margin-bottom: 36px; line-height: 1.65; max-width: 560px;
}
/* Hero search tabs */
.hero-prozall-tabs { max-width: 620px; }
.hero-tab-btns {
    display: flex; background: rgba(255,255,255,.12);
    border-radius: 12px 12px 0 0; overflow: hidden;
    border-bottom: 2px solid rgba(255,255,255,.08);
}
.hero-tab-btn {
    flex: 1; padding: 12px 20px; font-size: 0.9375rem; font-weight: 600;
    color: rgba(255,255,255,.65); background: transparent;
    border: none; cursor: pointer; transition: all 0.2s;
    font-family: var(--font);
}
.hero-tab-btn.active { color: #fff; background: rgba(255,255,255,.15); }
.hero-tab-btn:hover:not(.active) { color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.hero-tab-panel { display: none; background: rgba(255,255,255,.08); padding: 20px; border-radius: 0 0 12px 12px; }
.hero-tab-panel.active { display: block; }
.hero-prozall-project-text {
    color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.7;
    margin-bottom: 20px; max-width: 480px;
}
.hero-tab-panel .hero-search {
    background: #fff; border-radius: 50px; padding: 6px 6px 6px 20px;
    display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.2);
    margin-bottom: 14px;
}
.hero-tab-panel .hero-search input {
    flex: 1; border: none; padding: 12px 0; font-size: 0.9375rem;
    outline: none; background: transparent; color: var(--gray-800);
}
.hero-tab-panel .hero-search .btn { border-radius: 50px; padding: 11px 22px; font-size: 0.875rem; }
.hero-prozall-wave { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; line-height: 0; }
.hero-prozall-wave svg { width: 100%; height: 72px; display: block; }
.text-green-light { color: #6ee7b7; }

/* ── Search shortcode hero ──────────────────────────────────────── */
.sc-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background: #061A53;
    display: flex;
    align-items: center;
}
.sc-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80') center/cover no-repeat;
}
.sc-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6,26,56,.14) 0%, rgba(6,26,56,.62) 100%),
        linear-gradient(90deg, rgba(6,26,56,.94) 0%, rgba(9,43,140,.84) 48%, rgba(1,164,107,.30) 100%);
}
.sc-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 112px 20px 146px;
}
.sc-hero-title {
    max-width: 920px;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}
.sc-hero-hl {
    color: var(--green, #01A46B);
    display: block;
}
.sc-hero-sub {
    max-width: 720px;
    margin: 0 auto 38px;
    color: rgba(255,255,255,.86);
    font-size: 1.2rem;
    line-height: 1.65;
}
.sc-tabs-wrap {
    max-width: 720px;
    margin: 0 auto;
}
.sc-tab-btns {
    display: flex;
    gap: 2px;
    margin-bottom: 0;
}
.sc-tab-btn {
    padding: 11px 22px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.65);
    font-weight: 600;
    font-size: .9rem;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
    border-bottom: 2px solid transparent;
}
.sc-tab-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}
.sc-tab-btn.active {
    color: #fff;
    background: rgba(255,255,255,.15);
    border-bottom: 2px solid var(--green, #01A46B);
}
.sc-tab-panel {
    display: none;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0 12px 12px 12px;
    padding: 20px 20px 18px;
}
.sc-tab-panel.active { display: block; }
.sc-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 6px 6px 6px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    gap: 8px;
}
.sc-search-icon {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    flex-shrink: 0;
}
.sc-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1e293b;
    background: transparent;
    padding: 8px 0;
    min-width: 0;
}
.sc-search-input::placeholder { color: #94a3b8; }
.sc-search-btn {
    padding: 10px 24px;
    background: var(--green, #01A46B);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s;
    font-family: inherit;
}
.sc-search-btn:hover { background: var(--green-dark, #008C5A); }
.sc-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    align-items: center;
}
.sc-tags-row>span {
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    white-space: nowrap;
}
.sc-tag-pill {
    padding: 4px 13px;
    background: rgba(255,255,255,.18);
    color: #fff;
    border-radius: 20px;
    font-size: .78rem;
    text-decoration: none;
    transition: background .18s;
    border: 1px solid rgba(255,255,255,.2);
}
.sc-tag-pill:hover {
    background: rgba(255,255,255,.32);
    color: #fff;
}
.sc-hero-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    line-height: 0;
}
.sc-hero-wave svg {
    width: 100%;
    height: 72px;
    display: block;
}

/* ── Categories (prozall.com card style) ───────────────────────── */
.cat-prozall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cat-prozall-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    text-decoration: none; color: inherit;
    transition: all var(--transition);
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 2px 8px rgba(11,43,91,.06);
}
.cat-prozall-card:hover {
    border-color: var(--green); transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(1,164,107,.14); color: inherit;
}
.cat-prozall-icon {
    width: 60px; height: 60px; background: var(--green-light);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.625rem; margin-bottom: 14px; transition: background var(--transition);
}
.cat-prozall-card:hover .cat-prozall-icon { background: var(--green); filter: brightness(0) invert(1); }
.cat-prozall-card h4 { font-size: 0.9375rem; color: var(--navy); font-weight: 700; line-height: 1.3; }
.cat-prozall-desc { font-size: 0.8125rem; color: var(--gray-500); margin-top: 6px; line-height: 1.5; }
.cat-prozall-more {
    background: linear-gradient(135deg, var(--navy) 0%, #092B8C 100%);
    border-color: var(--navy);
}
.cat-prozall-more h4 { color: #fff; }
.cat-prozall-more .cat-prozall-desc { color: rgba(255,255,255,.7); }
.cat-prozall-more:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,43,91,.25); }
.cat-prozall-card--img {
    background-size: cover; background-position: center; border: none;
    position: relative; overflow: hidden; min-height: 180px; justify-content: flex-end;
    padding: 0; align-items: stretch;
}
.cat-prozall-card--img::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 60%, transparent 100%);
    transition: background var(--transition);
}
.cat-prozall-card--img:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.25); }
.cat-prozall-card--img:hover::before { background: linear-gradient(to top, rgba(1,164,107,.88) 0%, rgba(1,164,107,.35) 60%, transparent 100%); }
.cat-prozall-card--img h4 { color: #fff; position: relative; z-index: 1; padding: 0 16px 20px; text-align: left; font-size: 1rem; font-weight: 700; margin-top: auto; line-height: 1.3; }
.cat-prozall-card--img .cat-prozall-desc { display: none; }

/* ── Dual CTA ──────────────────────────────────────────────────── */
.dual-cta-prozall { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dcp-box {
    border-radius: 20px; overflow: hidden; position: relative;
    box-shadow: 0 8px 32px rgba(11,43,91,.1);
    display: grid; grid-template-columns: 1fr 1fr;
}
.dcp-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dcp-body { padding: 36px 28px; display: flex; flex-direction: column; justify-content: center; }
.dcp-body h3 { font-size: 1.25rem; margin: 8px 0 10px; }
.dcp-body p  { font-size: 0.9375rem; line-height: 1.65; margin-bottom: 20px; }
.dcp-box-client .dcp-body { background: #fff; }
.dcp-box-freelancer { background: var(--navy); }
.dcp-box-freelancer .dcp-body { background: transparent; }

/* ── Freelancer cards (prozall.com) ────────────────────────────── */
.freelancer-grid-prozall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fp-card {
    background: #fff; border-radius: 20px; padding: 28px 20px 24px;
    text-align: center; border: 1px solid var(--gray-100);
    box-shadow: 0 4px 16px rgba(11,43,91,.07);
    transition: all var(--transition); position: relative;
}
.fp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,43,91,.12); }
.fp-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px; object-fit: cover; border: 3px solid var(--green-light); }
.fp-verified {
    position: absolute; top: 24px; right: 20px;
    background: var(--green); color: #fff; width: 22px; height: 22px;
    border-radius: 50%; font-size: 11px; display: flex; align-items: center; justify-content: center;
}
.fp-name { font-weight: 700; color: var(--navy); font-size: 0.9375rem; margin-bottom: 4px; }
.fp-role { font-size: 0.8125rem; color: var(--gray-500); min-height: 36px; line-height: 1.55; margin-bottom: 8px; }
.fp-meta { display: flex; justify-content: center; gap: 12px; font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 6px; }
.fp-rate { color: var(--green); font-weight: 700; }
.fp-stars { font-size: 0.875rem; }

/* ── How it works (dark bg like live site) ─────────────────────── */
.section-how-prozall { background: #092B8C; }
.how-grid-prozall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-card-prozall {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 36px 28px;
    text-align: center; transition: all var(--transition);
}
.how-card-prozall:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.how-icon-prozall {
    width: 64px; height: 64px; background: rgba(1,164,107,.2);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--green);
}
.how-step-num { font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,.1); line-height: 1; margin-bottom: 8px; }
.how-card-prozall h3 { color: #fff; font-size: 1.125rem; margin-bottom: 12px; }
.how-card-prozall p  { color: rgba(255,255,255,.7); font-size: 0.9375rem; line-height: 1.7; }

/* ── Pricing (prozall.com style) ──────────────────────────────── */
.pricing-grid-prozall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ppc {
    background: #fff; border-radius: 20px; padding: 40px 32px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 32px 64px -12px rgba(16,24,40,.06);
    position: relative; display: flex; flex-direction: column;
    transition: all var(--transition);
}
.ppc:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -12px rgba(16,24,40,.12); }
.ppc-featured {
    background: var(--navy); border-color: var(--navy);
    box-shadow: 0 32px 64px -12px rgba(9,43,140,.3);
}
.ppc-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #fff; padding: 6px 22px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(1,164,107,.4);
}
.ppc-name { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.ppc-featured .ppc-name { color: rgba(255,255,255,.8); }
.ppc-price {
    font-size: 3rem; font-weight: 900; color: var(--navy);
    margin: 20px 0; line-height: 1;
}
.ppc-featured .ppc-price { color: var(--green); }
.ppc-price sup { font-size: 1.5rem; font-weight: 700; vertical-align: top; margin-top: 8px; }
.ppc-price sub { font-size: 0.9375rem; font-weight: 500; color: var(--gray-500); }
.ppc-featured .ppc-price sub { color: rgba(255,255,255,.55); }
.ppc-free { font-size: 2rem; font-weight: 800; color: var(--gray-400); }
.ppc-features { list-style: none; flex: 1; margin: 20px 0 28px; }
.ppc-features li {
    padding: 10px 0; border-bottom: 1px solid var(--gray-100);
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9375rem; color: var(--gray-700);
}
.ppc-featured .ppc-features li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.ppc-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Final CTA ─────────────────────────────────────────────────── */
.section-cta-prozall { position: relative; padding: 100px 0; overflow: hidden; }
.section-cta-prozall-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #061A53 0%, #092B8C 60%, #0B2B5B 100%);
}
.section-cta-prozall-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(1,164,107,.25) 0%, transparent 60%);
}

/* ── Responsive additions ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-mega { display: none; }
    .hamburger { display: flex; }
}
@media (max-width: 900px) {
    .cat-prozall-grid { grid-template-columns: repeat(2, 1fr); }
    .dual-cta-prozall { grid-template-columns: 1fr; }
    .dcp-box { grid-template-columns: 1fr; }
    .dcp-img { height: 200px; }
    .freelancer-grid-prozall { grid-template-columns: repeat(2, 1fr); }
    .how-grid-prozall { grid-template-columns: 1fr; }
    .pricing-grid-prozall { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .hero-prozall-inner { padding: 80px 24px 110px; }
    .sc-hero { min-height: 660px; }
    .sc-hero-inner { padding: 92px 20px 124px; }
    .sc-hero-title { font-size: 3rem; }
    .sc-hero-sub { font-size: 1.08rem; }
}
@media (max-width: 640px) {
    .cat-prozall-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .freelancer-grid-prozall { grid-template-columns: 1fr; }
    .hero-prozall-title { font-size: 2rem; }
    .hero-tab-btns { flex-direction: column; }
    .sc-hero { min-height: 620px; }
    .sc-hero-inner { padding: 78px 16px 112px; }
    .sc-hero-title { font-size: 2.25rem; }
    .sc-hero-sub { font-size: 1rem; margin-bottom: 30px; }
    .sc-tab-btn { padding: 10px 14px; font-size: .82rem; }
    .sc-search-btn { padding: 10px 14px; font-size: .82rem; }
    .sc-tab-panel { border-radius: 0 0 12px 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SPLIT-SCREEN AUTH  (login / register)
   ═══════════════════════════════════════════════════════════════════ */
.auth-split {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 76px); overflow: hidden;
}
.auth-split-brand {
    background: linear-gradient(150deg, #061A53 0%, #092B8C 60%, #0B2B5B 100%);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 48px;
}
.auth-split-brand::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 110%, rgba(1,164,107,.3) 0%, transparent 60%);
}
.auth-brand-logo { position: relative; z-index: 1; }
.auth-brand-logo img { height: 36px; filter: brightness(0) invert(1); }
.auth-brand-content { position: relative; z-index: 1; }
.auth-brand-content h2 {
    color: #fff; font-size: 2rem; font-weight: 800;
    line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em;
}
.auth-brand-content h2 span { color: var(--green); }
.auth-brand-content p { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; max-width: 380px; }
.auth-brand-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 40px; position: relative; z-index: 1;
}
.auth-brand-stat {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: 18px 14px; text-align: center;
}
.auth-brand-stat-num { font-size: 1.625rem; font-weight: 800; color: var(--green); line-height: 1; }
.auth-brand-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.auth-brand-testimonial {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 22px 24px; position: relative; z-index: 1;
}
.auth-brand-testimonial::before {
    content: '\201C'; font-size: 3rem; color: var(--green); font-family: serif;
    line-height: 1; display: block; margin-bottom: 6px;
}
.auth-brand-testimonial p { color: rgba(255,255,255,.85); font-size: 0.9375rem; line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.auth-brand-testimonial-author { display: flex; align-items: center; gap: 12px; }
.auth-brand-testimonial-author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.2); }
.auth-brand-testimonial-author strong { display: block; color: #fff; font-size: 0.875rem; }
.auth-brand-testimonial-author span { color: rgba(255,255,255,.55); font-size: 0.75rem; }
.auth-split-form {
    background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    padding: 48px 40px; overflow-y: auto;
}
.auth-form-inner { width: 100%; max-width: 420px; }
.auth-form-inner h1 { font-size: 1.75rem; color: var(--navy); margin-bottom: 6px; }
.auth-form-inner > p { color: var(--gray-500); margin-bottom: 32px; }
.auth-form-inner .form-control { background: #fff; }
.auth-form-inner .btn-block { padding: 14px; font-size: 1rem; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--gray-400); font-size: 0.875rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.auth-role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.auth-role-card {
    border: 2px solid var(--gray-200); border-radius: 14px; padding: 18px 14px;
    cursor: pointer; transition: all var(--transition); text-align: center;
    background: #fff; display: flex; flex-direction: column; align-items: center; gap: 8px;
    position: relative;
}
.auth-role-card:hover { border-color: var(--green); }
.auth-role-card.selected { border-color: var(--green); background: var(--green-light); }
.auth-role-card.selected .auth-role-check { display: flex; }
.auth-role-check {
    display: none; position: absolute; top: 10px; right: 10px;
    width: 20px; height: 20px; background: var(--green); border-radius: 50%;
    color: #fff; font-size: 10px; font-weight: 700;
    align-items: center; justify-content: center;
}
.auth-role-icon { font-size: 2rem; margin-bottom: 2px; }
.auth-role-card h4 { font-size: 0.9375rem; color: var(--navy); font-weight: 700; margin-bottom: 2px; }
.auth-role-card p { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.5; }
.auth-role-card input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.auth-bottom-link { text-align: center; margin-top: 24px; font-size: 0.9375rem; color: var(--gray-600); }
.auth-bottom-link a { color: var(--green); font-weight: 600; }
.auth-remember-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.auth-remember { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--gray-600); cursor: pointer; }
.auth-remember input { accent-color: var(--green); width: 16px; height: 16px; }
.auth-forgot { font-size: 0.875rem; color: var(--green); font-weight: 600; }
@media (max-width: 900px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-split-brand { display: none; }
    .auth-split-form { min-height: 100vh; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG / NEWS  (Conseils & Actus)
   ═══════════════════════════════════════════════════════════════════ */
.blog-redesign-hero {
    align-items: center;
    background: #05070b;
    display: flex;
    min-height: 520px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.blog-redesign-hero::before {
    background-image: var(--blog-hero-img);
    background-position: center right;
    background-size: cover;
    content: "";
    filter: blur(2px);
    inset: -8px;
    opacity: 1;
    position: absolute;
    transform: scale(1.02);
    z-index: 0;
}
.blog-redesign-hero::after {
    background:
        linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.44) 48%, rgba(0,0,0,.56) 100%),
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}
.blog-redesign-hero .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1040px;
    min-height: 520px;
    padding-bottom: 52px;
    padding-top: 52px;
    position: relative;
    z-index: 2;
}
.blog-redesign-hero h1 {
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 4.35rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 28px;
}
.blog-redesign-hero p {
    color: #fff;
    font-size: clamp(1rem, 1.35vw, 1.24rem);
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
    max-width: 980px;
    opacity: .96;
}
.blog-redesign-breadcrumb {
    align-items: center;
    background: rgba(13,50,146,.92);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 600;
    gap: 7px;
    justify-content: center;
    line-height: 1;
    margin-top: 58px;
    padding: 17px 21px;
}
.blog-redesign-breadcrumb a {
    color: #08a86f;
    font-weight: 700;
    text-decoration: none;
}
.blog-redesign-breadcrumb a:hover {
    color: #10c985;
}
.blog-redesign-breadcrumb strong {
    color: #fff;
    font-weight: 700;
}
.blog-hero {
    background: linear-gradient(135deg, #061A53 0%, #092B8C 60%, #0B2B5B 100%);
    padding: 80px 0 100px; position: relative; overflow: hidden;
}
.blog-hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 120%, rgba(1,164,107,.25) 0%, transparent 60%);
}
.blog-hero-inner { position: relative; z-index: 1; text-align: center; }
.blog-hero-inner h1 { color: #fff; margin-bottom: 14px; }
.blog-hero-inner p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }
.blog-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; line-height: 0; }
.blog-hero-wave svg { display: block; width: 100%; }
.blog-categories { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 40px 0 52px; }
.blog-cat-btn {
    padding: 8px 18px; border-radius: 50px; font-size: 0.875rem; font-weight: 600;
    border: 1.5px solid var(--gray-200); background: #fff; color: var(--gray-600);
    cursor: pointer; transition: all var(--transition);
}
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--gray-100); box-shadow: 0 4px 16px rgba(11,43,91,.06);
    transition: all var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(11,43,91,.12); }
.blog-card-img { height: 200px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--green); color: #fff; padding: 4px 12px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-card-date { font-size: 0.8125rem; color: var(--gray-400); }
.blog-card-readtime { font-size: 0.8125rem; color: var(--gray-400); }
.blog-card-body h3 { font-size: 1.0625rem; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; flex: 1; }
.blog-card-footer { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.blog-card-author { display: flex; align-items: center; gap: 8px; }
.blog-card-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.blog-card-author span { font-size: 0.8125rem; color: var(--gray-600); font-weight: 500; }
.blog-read-link { font-size: 0.8125rem; color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.blog-read-link:hover { color: var(--green-dark); }
.blog-redesign-section {
    background: #f7f7f7;
    padding: 70px 0 92px;
}
.blog-redesign-section .container {
    max-width: 1480px;
}
.blog-redesign-section .blog-categories {
    justify-content: flex-start;
    margin: 0 0 34px;
}
.blog-redesign-section .blog-cat-btn {
    background: #fff;
    border-color: #e4e8f5;
    border-radius: 7px;
    color: #0d3292;
    font-weight: 800;
}
.blog-redesign-section .blog-cat-btn:hover,
.blog-redesign-section .blog-cat-btn.active {
    background: #0d3292;
    border-color: #0d3292;
    color: #fff;
}
.blog-redesign-section .blog-grid {
    align-items: start;
    gap: 34px 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-redesign-section .blog-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
.blog-redesign-section .blog-card:hover {
    box-shadow: none;
    transform: none;
}
.blog-redesign-section .blog-card-img {
    aspect-ratio: 1.9 / 1;
    background: #e8eaef;
    border-radius: 18px;
    height: auto;
    margin-bottom: 16px;
    overflow: hidden;
}
.blog-redesign-section .blog-card-img a {
    display: block;
    height: 100%;
}
.blog-redesign-section .blog-card-img img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}
.blog-redesign-section .blog-card:hover .blog-card-img img {
    transform: scale(1.035);
}
.blog-redesign-section .blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0;
}
.blog-redesign-section .blog-card-meta {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 8px;
    min-height: 26px;
}
.blog-redesign-section .blog-card-tag {
    background: #fff;
    border: 1px solid #e4e8f5;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(13,50,146,.06);
    color: #0d3292;
    display: inline-flex;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    max-width: 58%;
    overflow: hidden;
    padding: 5px 8px;
    position: static;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
}
.blog-redesign-section .blog-card-date {
    color: #0d3292;
    flex-shrink: 0;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.15;
}
.blog-redesign-section .blog-card-body h3 {
    color: #242424;
    display: -webkit-box;
    font-size: 1.43rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.blog-redesign-section .blog-card-body h3 a {
    color: inherit;
    text-decoration: none;
}
.blog-redesign-section .blog-card-body h3 a:hover {
    color: #0d3292;
}
.blog-redesign-section .blog-card-body p {
    color: #555;
    display: -webkit-box;
    flex: 0 0 auto;
    font-size: 1.09rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.blog-redesign-section .blog-card-footer {
    display: none;
}
.blog-featured {
    grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr;
    border-radius: 20px; overflow: hidden; background: #fff;
    border: 1px solid var(--gray-100); box-shadow: 0 4px 16px rgba(11,43,91,.06);
    transition: all var(--transition);
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(11,43,91,.12); }
.blog-featured .blog-card-img { height: 100%; min-height: 280px; }
.blog-featured .blog-card-body { padding: 40px 36px; justify-content: center; }
.blog-featured .blog-card-body h3 { font-size: 1.5rem; margin-bottom: 14px; }
.blog-featured .blog-card-body p { font-size: 1rem; }
@media (max-width: 900px) {
    .blog-redesign-hero {
        min-height: 430px;
    }
    .blog-redesign-hero::before {
        background-position: center;
    }
    .blog-redesign-hero .container {
        min-height: 430px;
        padding-bottom: 42px;
        padding-top: 42px;
    }
    .blog-redesign-hero h1 {
        margin-bottom: 18px;
    }
    .blog-redesign-breadcrumb {
        margin-top: 34px;
    }
    .blog-redesign-section {
        padding: 54px 0 72px;
    }
    .blog-redesign-section .blog-grid {
        gap: 30px 24px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .blog-redesign-section .blog-card-body h3 {
        font-size: 1.3rem;
    }
    .blog-redesign-section .blog-card-body p {
        font-size: 1rem;
    }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-featured { grid-column: span 2; grid-template-columns: 1fr; }
    .blog-featured .blog-card-img { min-height: 220px; }
}
@media (max-width: 640px) {
    .blog-redesign-hero {
        min-height: 390px;
    }
    .blog-redesign-hero .container {
        min-height: 390px;
        padding-bottom: 34px;
        padding-top: 34px;
    }
    .blog-redesign-hero p {
        max-width: 94%;
    }
    .blog-redesign-breadcrumb {
        font-size: .95rem;
        padding: 14px 16px;
    }
    .blog-redesign-section {
        padding: 42px 0 58px;
    }
    .blog-redesign-section .blog-categories {
        margin-bottom: 26px;
    }
    .blog-redesign-section .blog-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .blog-redesign-section .blog-card-img {
        border-radius: 14px;
    }
    .blog-redesign-section .blog-card-meta {
        gap: 12px;
    }
    .blog-redesign-section .blog-card-tag {
        font-size: .78rem;
        max-width: 52%;
    }
    .blog-redesign-section .blog-card-date {
        font-size: .96rem;
    }
    .blog-redesign-section .blog-card-body h3 {
        font-size: 1.22rem;
    }
    .blog-redesign-section .blog-card-body p {
        font-size: .96rem;
    }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESOURCES NAV DROPDOWN
   ═══════════════════════════════════════════════════════════════════ */
.nav-dropdown-resources { position: relative; }
.nav-dropdown-resources-btn {
    padding: 10px 8px; color: #111827; font-weight: 700;
    border-radius: 8px; font-size: 1rem;
    background: transparent; border: none; cursor: pointer;
    display: flex; align-items: center; gap: 8px; transition: all var(--transition);
    font-family: var(--font);
}
.nav-dropdown-resources-btn:hover,
.nav-dropdown-resources.open .nav-dropdown-resources-btn { color: var(--green); background: transparent; }
.nav-dropdown-resources-btn .res-chevron { transition: transform 0.2s ease; font-size: .78rem; }
.nav-dropdown-resources.open .res-chevron { transform: rotate(180deg); }
.nav-dropdown-resources-menu {
    position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px);
    background: #fff; border: 1px solid var(--gray-100); border-radius: 16px;
    padding: 8px; min-width: 220px; box-shadow: 0 20px 60px rgba(11,43,91,.14);
    opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 200;
    pointer-events: none;
}
.nav-dropdown-resources.open .nav-dropdown-resources-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.nav-res-item {
    display: flex; align-items: center; gap: 12px; padding: 11px 14px;
    border-radius: 10px; color: var(--gray-700); font-size: 0.9rem;
    transition: background var(--transition); text-decoration: none;
}
.nav-res-item:hover { background: var(--gray-50); color: var(--navy); }
.nav-res-icon {
    width: 34px; height: 34px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.nav-res-icon-blue { background: #EEF4FF; color: var(--navy); }
.nav-res-icon-green { background: var(--green-light); color: var(--green); }
.nav-res-icon-orange { background: #FFF7ED; color: var(--orange); }
.nav-res-text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.nav-res-text span { font-size: 0.75rem; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════════════
   PLANS PAGE  (standalone full-featured)
   ═══════════════════════════════════════════════════════════════════ */
.plans-hero {
    background: linear-gradient(135deg, #061A53 0%, #092B8C 55%, #0B2B5B 100%);
    padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.plans-hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(1,164,107,.28) 0%, transparent 60%);
}
.plans-hero-inner { position: relative; z-index: 1; }
.plans-hero-inner h1 { color: #fff; margin-bottom: 12px; }
.plans-hero-inner p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 28px; }
.plans-hero-badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.plans-hero-badge {
    display: flex; align-items: center; gap: 7px; padding: 8px 16px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px; color: rgba(255,255,255,.9); font-size: 0.8125rem; font-weight: 500;
}
.plans-hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.plans-compare-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.plans-compare-table th { text-align: center; padding: 18px 16px; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.plans-compare-table th:first-child { text-align: left; }
.plans-compare-table td { padding: 14px 16px; border-top: 1px solid var(--gray-100); font-size: 0.9375rem; color: var(--gray-700); }
.plans-compare-table td:not(:first-child) { text-align: center; }
.plans-compare-table tr:last-child td { border-bottom: none; }
.plans-compare-table .check-yes { color: var(--green); font-size: 1.125rem; font-weight: 700; }
.plans-compare-table .check-no  { color: var(--gray-300); font-size: 1.125rem; }
.plans-compare-table .col-featured { background: rgba(9,43,140,.04); }
.plans-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plans-faq-item {
    background: #fff; border-radius: var(--radius); padding: 24px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.plans-faq-item h4 { font-size: 0.9375rem; color: var(--navy); margin-bottom: 8px; }
.plans-faq-item p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }
@media (max-width: 900px) {
    .plans-faq-grid { grid-template-columns: 1fr; }
    .plans-compare-table { font-size: 0.8125rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ PAGE (standalone full-featured)
   ═══════════════════════════════════════════════════════════════════ */
.faq-page-hero {
    background: linear-gradient(135deg, #061A53 0%, #092B8C 55%, #0B2B5B 100%);
    padding: 80px 0 100px; text-align: center; position: relative; overflow: hidden;
}
.faq-page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(1,164,107,.25) 0%, transparent 60%);
}
.faq-page-hero-inner { position: relative; z-index: 1; }
.faq-page-hero-inner h1 { color: #fff; margin-bottom: 14px; }
.faq-page-hero-inner p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 32px; }
.faq-search-bar {
    display: flex; align-items: center; background: #fff; border-radius: 50px;
    padding: 6px 6px 6px 22px; max-width: 500px; margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.faq-search-bar input {
    flex: 1; border: none; outline: none; font-size: 0.9375rem;
    font-family: var(--font); color: var(--gray-800); background: transparent; padding: 10px 0;
}
.faq-search-bar button { background: var(--green); color: #fff; border: none; border-radius: 50px; padding: 10px 22px; font-weight: 600; font-size: 0.875rem; cursor: pointer; font-family: var(--font); transition: background var(--transition); }
.faq-search-bar button:hover { background: var(--green-dark); }
.faq-page-wave { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; line-height: 0; }
.faq-page-wave svg { display: block; width: 100%; }
.faq-page-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.faq-tab-btn {
    padding: 9px 20px; border-radius: 50px; font-size: 0.875rem; font-weight: 600;
    border: 1.5px solid var(--gray-200); background: #fff; color: var(--gray-600);
    cursor: pointer; transition: all var(--transition); font-family: var(--font);
}
.faq-tab-btn:hover, .faq-tab-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.faq-page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.faq-page-sidebar {
    background: #fff; border-radius: var(--radius); padding: 24px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
    position: sticky; top: 96px;
}
.faq-page-sidebar h4 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-400); margin-bottom: 12px; }
.faq-sidebar-link {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    border-radius: 10px; color: var(--gray-700); font-size: 0.9rem; font-weight: 500;
    transition: background var(--transition); text-decoration: none; cursor: pointer;
    background: transparent; border: none; width: 100%; text-align: left; font-family: var(--font);
}
.faq-sidebar-link:hover, .faq-sidebar-link.active { background: var(--green-light); color: var(--green-dark); }
.faq-sidebar-link-icon { font-size: 1.125rem; width: 24px; text-align: center; flex-shrink: 0; }
.faq-group { margin-bottom: 40px; }
.faq-group-title {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 2px solid var(--gray-100);
}
.faq-group-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.faq-group-title h3 { font-size: 1.0625rem; color: var(--navy); }
.faq-cta-box {
    background: linear-gradient(135deg, var(--navy), #092B8C);
    border-radius: var(--radius); padding: 32px; text-align: center; margin-top: 48px;
}
.faq-cta-box h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.faq-cta-box p  { color: rgba(255,255,255,.7); font-size: 0.9375rem; margin-bottom: 20px; }
@media (max-width: 900px) {
    .faq-page-layout { grid-template-columns: 1fr; }
    .faq-page-sidebar { position: static; }
}

/* FAQ page redesign */
.faq-redesign-hero {
    align-items: center;
    background: #05070b;
    display: flex;
    min-height: 410px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.faq-redesign-hero::before {
    background-image: var(--faq-hero-img);
    background-position: center;
    background-size: cover;
    content: "";
    filter: blur(2px);
    inset: -8px;
    opacity: 1;
    position: absolute;
    transform: scale(1.02);
    z-index: 0;
}
.faq-redesign-hero::after {
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.46) 48%, rgba(0,0,0,.58) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}
.faq-redesign-hero .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1010px;
    min-height: 410px;
    padding-bottom: 44px;
    padding-top: 44px;
    position: relative;
    z-index: 2;
}
.faq-redesign-hero h1 {
    color: #fff;
    font-size: 2.72rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 26px;
}
.faq-redesign-hero p {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
    max-width: 895px;
    opacity: .96;
}
.faq-redesign-breadcrumb {
    align-items: center;
    background: rgba(13,50,146,.9);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 600;
    gap: 7px;
    justify-content: center;
    line-height: 1;
    margin-top: 48px;
    padding: 15px 20px;
}
.faq-redesign-breadcrumb a {
    color: #08a86f;
    font-weight: 700;
    text-decoration: none;
}
.faq-redesign-breadcrumb a:hover {
    color: #10c985;
}
.faq-redesign-breadcrumb strong {
    color: #fff;
    font-weight: 700;
}
.faq-redesign-section {
    background: #fff;
    border-radius: 28px 28px 0 0;
    margin-top: -1px;
    padding: 78px 0 104px;
    position: relative;
    z-index: 2;
}
.faq-redesign-section .container {
    max-width: 1320px;
}
.faq-redesign-layout {
    align-items: start;
    display: grid;
    gap: 92px;
    grid-template-columns: minmax(300px, .82fr) minmax(560px, 1.35fr);
}
.faq-redesign-intro {
    padding-top: 22px;
}
.faq-redesign-eyebrow {
    color: #0d3292;
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.faq-redesign-intro h2 {
    color: #232323;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0;
    max-width: 520px;
}
.faq-redesign-intro p {
    color: #777;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.36;
    margin: 38px 0 0;
    max-width: 565px;
}
.faq-redesign-contact {
    align-items: center;
    background: #0d3292;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.08rem;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    margin-top: 52px;
    min-height: 64px;
    min-width: 285px;
    padding: 18px 34px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.faq-redesign-contact:hover,
.faq-redesign-contact:focus-visible {
    background: #092878;
    color: #fff;
    transform: translateY(-1px);
}
.faq-redesign-main {
    min-width: 0;
}
.faq-redesign-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-redesign-item {
    background: #f4f4f5;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
}
.faq-redesign-item:hover,
.faq-redesign-item.open {
    border-color: transparent;
    box-shadow: none;
}
.faq-redesign-question {
    align-items: center;
    background: transparent;
    border: 0;
    color: #242424;
    display: flex;
    font-size: 1.35rem;
    font-weight: 900;
    gap: 24px;
    justify-content: space-between;
    line-height: 1.25;
    min-height: 82px;
    padding: 24px 28px;
    text-align: left;
    width: 100%;
}
.faq-redesign-question:hover {
    background: transparent;
}
.faq-redesign-section .faq-question::after,
.faq-redesign-section .faq-item.open .faq-question::after {
    content: none;
}
.faq-redesign-question-text {
    display: block;
    min-width: 0;
}
.faq-redesign-number {
    white-space: nowrap;
}
.faq-redesign-toggle {
    color: #242424;
    flex-shrink: 0;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
}
.faq-redesign-toggle::before {
    content: '+';
}
.faq-redesign-item.open .faq-redesign-toggle::before {
    content: '-';
}
.faq-redesign-section .faq-answer {
    color: #777;
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height var(--transition), padding var(--transition);
}
.faq-redesign-section .faq-item.open .faq-answer {
    max-height: 1200px;
    padding: 0 28px 30px;
}
.faq-redesign-section .faq-answer p {
    color: #777;
    font-size: 1.22rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
    max-width: 760px;
}

@media (max-width: 1100px) {
    .faq-redesign-layout {
        gap: 52px;
        grid-template-columns: .9fr 1.2fr;
    }
    .faq-redesign-intro h2 {
        font-size: 2.45rem;
    }
    .faq-redesign-intro p,
    .faq-redesign-section .faq-answer p {
        font-size: 1.08rem;
    }
    .faq-redesign-question {
        font-size: 1.12rem;
    }
}

@media (max-width: 900px) {
    .faq-redesign-hero,
    .faq-redesign-hero .container {
        min-height: 380px;
    }
    .faq-redesign-hero h1 {
        font-size: 2.28rem;
        margin-bottom: 18px;
    }
    .faq-redesign-hero p {
        font-size: 1rem;
        max-width: 720px;
    }
    .faq-redesign-breadcrumb {
        font-size: .98rem;
        margin-top: 32px;
        padding: 14px 18px;
    }
    .faq-redesign-section {
        padding: 72px 0;
    }
    .faq-redesign-layout {
        gap: 34px;
        grid-template-columns: 1fr;
    }
    .faq-redesign-intro {
        padding-top: 0;
    }
    .faq-redesign-intro h2 {
        max-width: 680px;
    }
    .faq-redesign-intro p {
        margin-top: 22px;
        max-width: 760px;
    }
    .faq-redesign-contact {
        margin-top: 28px;
    }
}

@media (max-width: 480px) {
    .faq-redesign-hero,
    .faq-redesign-hero .container {
        min-height: 430px;
    }
    .faq-redesign-hero h1 {
        font-size: 2rem;
    }
    .faq-redesign-hero p {
        font-size: .95rem;
        line-height: 1.5;
    }
    .faq-redesign-breadcrumb {
        border-radius: 8px;
        font-size: .9rem;
        margin-top: 24px;
        padding: 13px 16px;
    }
    .faq-redesign-section {
        padding: 54px 0 58px;
    }
    .faq-redesign-eyebrow {
        font-size: .95rem;
    }
    .faq-redesign-intro h2 {
        font-size: 2rem !important;
    }
    .faq-redesign-intro p {
        font-size: 1rem;
        line-height: 1.45;
    }
    .faq-redesign-contact {
        font-size: .95rem;
        min-height: 54px;
        min-width: 0;
        width: 100%;
    }
    .faq-redesign-list {
        gap: 12px;
    }
    .faq-redesign-question {
        font-size: 1rem;
        gap: 14px;
        min-height: 68px;
        padding: 18px;
    }
    .faq-redesign-section .faq-answer {
        padding: 0 18px;
    }
    .faq-redesign-section .faq-item.open .faq-answer {
        padding: 0 18px 22px;
    }
    .faq-redesign-section .faq-answer p {
        font-size: .96rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FREELANCER SEARCH PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Search bar strip ─────────────────────────────────────────── */
.pz-search-bar-wrap {
    background: #f7f8fa;
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 0;
}
.pz-search-form { width: 100%; }
.pz-search-inner {
    display: flex; align-items: center; gap: 0;
    background: #fff; border: 1px solid #d1d5db; border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06); overflow: visible;
}
.pz-search-field {
    display: flex; align-items: center; gap: 10px; flex: 1;
    padding: 0 16px; height: 52px; min-width: 0;
}
.pz-search-field svg { color: #9ca3af; flex-shrink: 0; }
.pz-search-field input {
    border: none; outline: none; background: transparent;
    font-size: 0.9375rem; color: #374151; width: 100%; font-family: inherit;
}
.pz-search-field input::placeholder { color: #9ca3af; }
.pz-search-cat { border-left: 1px solid #e5e7eb; position: relative; }
.pz-typeahead-input { border: none; outline: none; background: transparent; font-size: 0.9375rem; color: #374151; width: 100%; font-family: inherit; }
.pz-typeahead-dropdown {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 300;
    background: #fff; border: 1px solid #d1d5db; border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12); max-height: 220px; overflow-y: auto;
}
.pz-typeahead-opt {
    padding: 10px 16px; font-size: 0.875rem; color: #374151; cursor: pointer;
}
.pz-typeahead-opt:hover { background: #f3f4f6; color: var(--green); }
.pz-search-btns {
    display: flex; gap: 0; flex-shrink: 0; padding: 6px 8px 6px 0;
}
.pz-btn-search {
    border-radius: 8px; padding: 10px 22px; font-size: 0.9rem; font-weight: 600;
    white-space: nowrap;
}
.pz-btn-advanced {
    display: flex; align-items: center; gap: 6px; padding: 10px 16px;
    background: transparent; border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 0.875rem; font-weight: 600; color: #374151; cursor: pointer;
    margin-left: 8px; white-space: nowrap; transition: all .15s;
}
.pz-btn-advanced:hover, .pz-btn-advanced.active {
    border-color: var(--navy); color: var(--navy); background: #f0f4ff;
}

/* ── Advanced panel ───────────────────────────────────────────── */
.pz-adv-panel {
    background: #fff; border: 1px solid #d1d5db; border-top: none;
    border-radius: 0 0 10px 10px; padding: 20px 20px 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.pz-adv-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 20px; }
.pz-adv-label { font-size: 0.8125rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; display: block; }
.pz-adv-group label:not(.pz-adv-label) { font-size: 0.8125rem; color: #374151; }
.pz-adv-range { display: flex; align-items: center; gap: 8px; }
.pz-adv-range input, .pz-adv-group select {
    border: 1px solid #d1d5db; border-radius: 6px; padding: 7px 10px;
    font-size: 0.875rem; background: #fff; color: #374151; font-family: inherit; outline: none; width: 100%;
}
.pz-adv-range input { width: 80px; text-align: center; }
.pz-adv-range span { color: #9ca3af; font-size: 0.875rem; flex-shrink: 0; }
.pz-adv-radios, .pz-adv-checks { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.pz-adv-radios label, .pz-adv-checks label { display: flex; align-items: center; gap: 5px; cursor: pointer; font-size: 0.8125rem; color: #374151; }
.pz-adv-radios input, .pz-adv-checks input { accent-color: var(--green); }
.pz-adv-skills-row { margin-bottom: 16px; }
.pz-adv-skills-row > input {
    border: 1px solid #d1d5db; border-radius: 6px; padding: 7px 12px;
    font-size: 0.875rem; margin-bottom: 10px; width: 280px; max-width: 100%; outline: none; font-family: inherit;
}
.pz-skills-cloud { display: flex; flex-wrap: wrap; gap: 6px; max-height: 140px; overflow-y: auto; padding: 2px; }
.pz-skill-pill {
    display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; font-weight: 500;
    padding: 5px 12px; border-radius: 20px; border: 1px solid #d1d5db;
    background: #f9fafb; color: #374151; cursor: pointer; transition: all .12s; user-select: none;
}
.pz-skill-pill input { display: none; }
.pz-skill-pill:hover { border-color: var(--green); color: var(--green); background: #f0fdf4; }
.pz-skill-pill.selected { border-color: var(--green); color: var(--green); background: #f0fdf4; font-weight: 600; }
.pz-skill-pill.pz-hidden { display: none; }
.pz-adv-footer { display: flex; justify-content: flex-end; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid #f3f4f6; }
.pz-clear-link { font-size: 0.875rem; color: #6b7280; text-decoration: underline; cursor: pointer; }
.pz-clear-link:hover { color: var(--navy); }

/* ── Results header ───────────────────────────────────────────── */
.pz-results-wrap { padding: 32px 20px 80px; }
.pz-results-hdr {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.pz-results-hdr h2 { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.pz-sort { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: #6b7280; }
.pz-sort select {
    border: 1px solid #d1d5db; border-radius: 6px; padding: 7px 12px;
    font-size: 0.875rem; color: #374151; background: #fff; outline: none; cursor: pointer; font-family: inherit;
}

/* ── Freelancer grid ──────────────────────────────────────────── */
.pz-fl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ── Freelancer card ──────────────────────────────────────────── */
.pz-fl-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
    overflow: hidden; position: relative; transition: box-shadow .2s, border-color .2s;
    display: flex; flex-direction: column;
}
.pz-fl-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(0,166,81,.13); }

/* Plan badges */
.pz-plan-badge {
    position: absolute; top: 10px; left: 10px; z-index: 3;
    font-size: 0.65rem; font-weight: 800; padding: 3px 9px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: .4px;
}
.pz-badge-gold { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.pz-badge-money { background: #ede9fe; color: #5b21b6; border: 1px solid #ddd6fe; }

/* Media (image/avatar area) */
.pz-fl-media {
    display: block; position: relative; width: 100%;
    padding-top: 65%; /* ~4:3 ratio */ overflow: hidden; background: #f3f4f6;
}
.pz-fl-media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.pz-fl-initials {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
}
.pz-fl-initials span { font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: 2px; }
.pz-status-dot {
    position: absolute; bottom: 10px; right: 10px; width: 11px; height: 11px;
    border-radius: 50%; background: #9ca3af; border: 2px solid #fff;
}

/* Card body */
.pz-fl-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.pz-fl-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.pz-fl-name { display: flex; align-items: center; gap: 5px; flex: 1; min-width: 0; }
.pz-fl-name a {
    font-size: 0.9375rem; font-weight: 700; color: var(--navy); text-decoration: none;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pz-fl-name a:hover { color: var(--green); }
.pz-check { color: var(--green); flex-shrink: 0; }
.pz-fl-views { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: #9ca3af; white-space: nowrap; flex-shrink: 0; }
.pz-fl-views svg { color: #9ca3af; }

.pz-fl-rating { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; }
.pz-stars { letter-spacing: -1px; font-size: 0.9rem; }
.pz-star-on { color: #f59e0b; font-style: normal; }
.pz-star-off { color: #d1d5db; font-style: normal; }
.pz-fl-rating em { font-style: normal; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.pz-fl-rating span { color: #9ca3af; font-size: 0.8125rem; }

.pz-fl-meta {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.8125rem; padding: 7px 0; border-top: 1px solid #f3f4f6;
}
.pz-meta-lbl { display: flex; align-items: center; gap: 5px; color: #6b7280; }
.pz-meta-lbl svg { flex-shrink: 0; }
.pz-fl-meta strong, .pz-fl-meta span:last-child { color: var(--navy); font-size: 0.875rem; font-weight: 600; text-align: right; }

.pz-fl-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.pz-tag {
    font-size: 0.75rem; padding: 3px 10px; border-radius: 20px;
    background: #f3f4f6; color: #374151; border: 1px solid #e5e7eb; white-space: nowrap;
}
.pz-tag-more { background: #e0f2fe; color: #0369a1; border-color: #bae6fd; }

.pz-fl-actions { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px; }
.pz-fl-cta { flex: 1; text-align: center; padding: 10px; font-size: 0.9rem; }
.pz-heart {
    width: 38px; height: 38px; border-radius: 50%; background: #f9fafb;
    border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0; color: #9ca3af; transition: all .2s;
}
.pz-heart:hover { background: #fff1f2; border-color: #fca5a5; color: #ef4444; }
.pz-heart.saved {
    background: #fff1f2;
    border-color: #fca5a5;
    color: #ef4444;
}
.pz-heart.saved svg { fill: #ef4444; stroke: #ef4444; }
.pz-heart.saved i { color: #ef4444; }
.pz-heart.is-loading,
.pz-favorite-wide.is-loading {
    opacity: .65;
    pointer-events: none;
}
.pz-heart.has-error,
.pz-favorite-wide.has-error {
    animation: pz-favorite-shake .28s ease;
}
@keyframes pz-favorite-shake {
    0%, 100% { transform: translateX(0); }
    35% { transform: translateX(-3px); }
    70% { transform: translateX(3px); }
}
.pz-favorite-wide {
    cursor: pointer;
    margin-bottom: 12px;
}
.pz-favorite-wide.saved {
    background: #fff1f2 !important;
    border-color: #fecaca !important;
    color: #dc2626 !important;
}
.pz-favorite-wide.saved i {
    color: #ef4444;
}

/* ── Empty state ──────────────────────────────────────────────── */
.pz-empty { text-align: center; padding: 80px 20px; }
.pz-empty svg { margin-bottom: 16px; }
.pz-empty h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pz-empty p { color: #6b7280; margin-bottom: 24px; }

/* ── Pagination ───────────────────────────────────────────────── */
.pz-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pz-page-btn {
    width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center;
    justify-content: center; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    color: var(--navy); border: 1px solid #e5e7eb; transition: all .15s;
}
.pz-page-btn:hover { border-color: var(--green); color: var(--green); }
.pz-page-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) { .pz-fl-grid { grid-template-columns: repeat(2,1fr); } .pz-adv-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) {
    .pz-fl-grid { grid-template-columns: 1fr; }
    .pz-adv-row { grid-template-columns: 1fr; }
    .pz-search-inner { flex-direction: column; border-radius: 10px; gap: 0; }
    .pz-search-field { border-left: none !important; border-bottom: 1px solid #e5e7eb; width: 100%; }
    .pz-search-btns { padding: 8px; width: 100%; flex-direction: column; }
    .pz-btn-search, .pz-btn-advanced { width: 100%; justify-content: center; }
    .pz-btn-advanced { margin-left: 0; }
}

/* ── Public freelancer profile ───────────────────────────────── */
.public-fl-profile {
    background: #f8f9fc;
    padding: 34px 0 88px;
}
.public-fl-profile .container {
    max-width: 1180px;
}
.public-fl-back {
    align-items: center;
    color: #64748b;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 700;
    gap: 8px;
    margin-bottom: 18px;
}
.public-fl-back:hover {
    color: #08a86f;
}
.public-fl-hero {
    background: #0d3292;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(13,50,146,.16);
    color: #fff;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 330px;
    margin-bottom: 22px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}
.public-fl-hero::after {
    background: linear-gradient(135deg, rgba(8,168,111,.24), rgba(255,255,255,0));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}
.public-fl-identity,
.public-fl-contact-card {
    position: relative;
    z-index: 1;
}
.public-fl-identity {
    align-items: flex-start;
    display: flex;
    gap: 22px;
    min-width: 0;
}
.public-fl-avatar {
    background: #fff;
    border: 4px solid rgba(255,255,255,.35);
    border-radius: 50%;
    flex: 0 0 auto;
    height: 118px;
    object-fit: cover;
    width: 118px;
}
.public-fl-main-info {
    min-width: 0;
}
.public-fl-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.public-fl-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: .76rem;
    font-weight: 800;
    gap: 6px;
    line-height: 1;
    padding: 7px 11px;
}
.public-fl-badge--verified,
.public-fl-badge--available {
    background: #08a86f;
    color: #fff;
}
.public-fl-badge--plan {
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
}
.public-fl-main-info h1 {
    color: #fff;
    font-size: 2.28rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 14px;
}
.public-fl-bio {
    color: rgba(255,255,255,.88);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.62;
    margin: 0;
    max-width: 680px;
}
.public-fl-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
}
.public-fl-meta span {
    align-items: center;
    color: rgba(255,255,255,.82);
    display: inline-flex;
    font-size: .9rem;
    font-weight: 700;
    gap: 7px;
}
.public-fl-contact-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0,0,0,.1);
    color: #232323;
    padding: 22px;
}
.public-fl-rate {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.public-fl-rate span,
.public-fl-mini-stats span,
.public-fl-contact-note,
.public-fl-service-link {
    color: #777;
    font-size: .86rem;
    font-weight: 700;
}
.public-fl-rate strong {
    color: #0d3292;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}
.public-fl-mini-stats {
    border-bottom: 1px solid #eef0f4;
    border-top: 1px solid #eef0f4;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 18px;
    padding: 14px 0;
}
.public-fl-mini-stats div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.public-fl-mini-stats strong {
    color: #232323;
    font-size: 1.24rem;
    font-weight: 900;
}
.public-fl-message-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.public-fl-message-form label {
    color: #0d3292;
    font-size: .9rem;
    font-weight: 900;
}
.public-fl-message-form textarea {
    border: 1px solid #d9dee8;
    border-radius: 8px;
    color: #232323;
    font-family: var(--font);
    font-size: .92rem;
    line-height: 1.45;
    min-height: 108px;
    outline: none;
    padding: 12px;
    resize: vertical;
    width: 100%;
}
.public-fl-message-form textarea:focus {
    border-color: #08a86f;
    box-shadow: 0 0 0 4px rgba(8,168,111,.12);
}
.public-fl-primary-btn,
.public-fl-secondary-btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: .98rem;
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    line-height: 1.1;
    min-height: 50px;
    padding: 14px 18px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.public-fl-primary-btn {
    background: #08a86f;
    border: 0;
    color: #fff;
}
.public-fl-primary-btn:hover,
.public-fl-primary-btn:focus-visible {
    background: #078f60;
    color: #fff;
}
.public-fl-secondary-btn {
    background: #f4f6fb;
    color: #0d3292;
    margin-top: 10px;
}
.public-fl-secondary-btn:hover,
.public-fl-secondary-btn:focus-visible {
    background: #eaf0ff;
    color: #0d3292;
}
.public-fl-contact-note {
    line-height: 1.45;
    margin: 12px 0 0;
}
.public-fl-service-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
    text-decoration: underline;
    width: 100%;
}
.public-fl-service-link:hover {
    color: #08a86f;
}
.public-fl-info-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}
.public-fl-info-card {
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8ebf2;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    min-width: 0;
    padding: 18px;
}
.public-fl-info-card > span {
    align-items: center;
    background: #eef4ff;
    border-radius: 8px;
    color: #0d3292;
    display: inline-flex;
    flex: 0 0 auto;
    height: 42px;
    justify-content: center;
    width: 42px;
}
.public-fl-info-card strong {
    color: #232323;
    display: block;
    font-size: .98rem;
    font-weight: 900;
    margin-bottom: 6px;
}
.public-fl-info-card p,
.public-fl-info-card small {
    color: #777;
    display: block;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}
.public-fl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.public-fl-tags em {
    background: #f4f4f5;
    border-radius: 8px;
    color: #4b5563;
    font-size: .78rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    padding: 8px 10px;
}
.public-fl-tabs {
    align-items: center;
    background: #fff;
    border: 1px solid #e8ebf2;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    overflow-x: auto;
    padding: 8px;
}
.public-fl-tab {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: #64748b;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: var(--font);
    font-size: .98rem;
    font-weight: 900;
    gap: 9px;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
}
.public-fl-tab span {
    align-items: center;
    background: #eef0f4;
    border-radius: 999px;
    color: #64748b;
    display: inline-flex;
    font-size: .78rem;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    padding: 0 7px;
}
.public-fl-tab.active {
    background: #0d3292;
    color: #fff;
}
.public-fl-tab.active span {
    background: #08a86f;
    color: #fff;
}
.public-fl-panels {
    background: #fff;
    border: 1px solid #e8ebf2;
    border-radius: 8px;
    padding: 22px;
}
.public-fl-panel[hidden] {
    display: none;
}
.public-fl-services-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.public-fl-service-card {
    border: 1px solid #e8ebf2;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
}
.public-fl-service-media {
    align-items: center;
    background: #eef4ff;
    color: #0d3292;
    display: flex;
    justify-content: center;
    min-height: 180px;
}
.public-fl-service-media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.public-fl-service-media span {
    align-items: center;
    display: inline-flex;
    font-size: 2rem;
    justify-content: center;
}
.public-fl-service-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 18px;
}
.public-fl-service-category {
    color: #08a86f;
    font-size: .76rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 9px;
    text-transform: uppercase;
}
.public-fl-service-body h3 {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0 0 10px;
}
.public-fl-service-body h3 a {
    color: #0d3292;
}
.public-fl-service-body h3 a:hover {
    color: #08a86f;
}
.public-fl-service-body p {
    color: #64748b;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 14px;
}
.public-fl-service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}
.public-fl-service-meta span {
    align-items: center;
    background: #f4f4f5;
    border-radius: 8px;
    color: #64748b;
    display: inline-flex;
    font-size: .76rem;
    font-weight: 800;
    gap: 5px;
    line-height: 1;
    padding: 7px 9px;
}
.public-fl-service-footer {
    align-items: center;
    border-top: 1px solid #eef0f4;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
}
.public-fl-service-footer strong {
    color: #232323;
    font-size: 1.08rem;
    font-weight: 900;
}
.public-fl-service-footer a {
    color: #0d3292;
    font-size: .86rem;
    font-weight: 900;
}
.public-fl-service-footer a:hover {
    color: #08a86f;
}
.public-fl-service-footer .pz-heart {
    height: 34px;
    width: 34px;
}
.public-fl-portfolio-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.public-fl-portfolio-card {
    background: #f8f9fc;
    border: 1px solid #e8ebf2;
    border-radius: 8px;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    overflow: hidden;
}
.public-fl-portfolio-card img {
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    width: 100%;
}
.public-fl-portfolio-card span {
    color: #08a86f;
    font-size: .76rem;
    font-weight: 900;
    line-height: 1;
    margin: 16px 16px 8px;
    text-transform: uppercase;
}
.public-fl-portfolio-card strong {
    color: #0d3292;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 16px 18px;
}
.public-fl-portfolio-card--text {
    min-height: 230px;
    padding: 22px;
}
.public-fl-portfolio-card--text span,
.public-fl-portfolio-card--text strong {
    margin-left: 0;
    margin-right: 0;
}
.public-fl-portfolio-card--text p {
    color: #64748b;
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.52;
    margin: 0;
}
.public-fl-review-summary {
    align-items: center;
    background: #f8f9fc;
    border: 1px solid #e8ebf2;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 18px;
}
.public-fl-review-summary strong {
    color: #0d3292;
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}
.public-fl-review-summary p {
    color: #64748b;
    font-size: .95rem;
    font-weight: 700;
    margin: 0;
}
.public-fl-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.public-fl-review {
    align-items: flex-start;
    border: 1px solid #e8ebf2;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    padding: 18px;
}
.public-fl-review img {
    border-radius: 50%;
    flex: 0 0 auto;
    height: 44px;
    object-fit: cover;
    width: 44px;
}
.public-fl-review-head {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3px;
}
.public-fl-review-head strong {
    color: #232323;
    font-size: .98rem;
    font-weight: 900;
}
.public-fl-review time {
    color: #94a3b8;
    display: block;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.public-fl-review p {
    color: #64748b;
    font-size: .94rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}
.public-fl-empty {
    align-items: center;
    color: #64748b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    padding: 42px 20px;
    text-align: center;
}
.public-fl-empty i {
    color: #0d3292;
    font-size: 2.1rem;
    margin-bottom: 14px;
}
.public-fl-empty h3 {
    color: #232323;
    font-size: 1.22rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 8px;
}
.public-fl-empty p {
    color: #777;
    font-size: .95rem;
    margin: 0;
}

@media (max-width: 1050px) {
    .public-fl-hero {
        grid-template-columns: 1fr;
    }
    .public-fl-contact-card {
        max-width: 520px;
        width: 100%;
    }
    .public-fl-info-grid {
        grid-template-columns: 1fr;
    }
    .public-fl-services-grid,
    .public-fl-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .public-fl-profile {
        padding: 22px 0 58px;
    }
    .public-fl-hero {
        padding: 22px;
    }
    .public-fl-identity {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .public-fl-badges,
    .public-fl-meta {
        justify-content: center;
    }
    .public-fl-main-info h1 {
        font-size: 1.86rem !important;
    }
    .public-fl-avatar {
        height: 104px;
        width: 104px;
    }
    .public-fl-contact-card,
    .public-fl-panels {
        padding: 16px;
    }
    .public-fl-info-card {
        padding: 16px;
    }
    .public-fl-tabs {
        padding: 6px;
    }
    .public-fl-tab {
        font-size: .88rem;
        min-height: 44px;
        padding: 10px 12px;
    }
    .public-fl-service-card {
        grid-template-columns: 1fr;
    }
    .public-fl-service-media {
        min-height: 170px;
    }
    .public-fl-service-footer,
    .public-fl-review-summary {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ── Project cards ──────────────────────────────────────────── */
.pj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pj-card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
    padding: 20px; transition: all var(--transition); display: flex; flex-direction: column; gap: 12px;
    box-shadow: 0 2px 8px rgba(11,43,91,.05);
}
.pj-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(1,164,107,.12); }
.pj-card-header { display: flex; justify-content: space-between; align-items: center; }
.pj-card-date { font-size: 0.8125rem; color: var(--gray-400); }
.pj-heart { position: static; width: 30px; height: 30px; background: var(--gray-50); }
.pj-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--navy); text-decoration: none; line-height: 1.3; }
.pj-card-title:hover { color: var(--green); }
.pj-card-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pj-type-badge { font-size: 0.75rem; padding: 3px 10px; border-radius: 6px; background: var(--gray-100); color: var(--gray-600); font-weight: 500; }
.pj-budget { font-size: 0.9375rem; font-weight: 700; color: var(--navy); }
.pj-card-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; margin: 0; }
.pj-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pj-tag-blue { background: #EFF6FF; color: #1D4ED8; }
.pj-tag-red  { background: #FEF2F2; color: #DC2626; }
.pj-tag-green { background: #F0FDF4; color: #16A34A; }
.pj-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-100); }
.pj-poster { display: flex; align-items: center; gap: 8px; }
.pj-poster-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.pj-poster-name { font-size: 0.8125rem; font-weight: 600; color: var(--gray-600); }
.pj-view-btn { padding: 8px 16px; font-size: 0.8125rem; white-space: nowrap; }

/* ── Floating language switcher ─────────────────────────────── */
.float-lang { position: fixed; bottom: 28px; left: 24px; z-index: 9998; }
.float-lang-btn {
    width: 46px; height: 46px; border-radius: 50%; background: #fff;
    border: 2px solid var(--gray-200); font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(11,43,91,.15); transition: all .2s;
}
.float-lang-btn:hover { border-color: var(--green); box-shadow: 0 6px 20px rgba(1,164,107,.2); }
.float-lang-menu {
    position: absolute; bottom: 54px; left: 0; background: #fff; border-radius: 12px;
    box-shadow: 0 8px 32px rgba(11,43,91,.15); overflow: hidden; min-width: 140px;
    display: none; border: 1px solid var(--gray-200);
}
.float-lang.open .float-lang-menu { display: block; }
.float-lang-opt {
    display: flex; align-items: center; gap: 10px; padding: 11px 16px;
    font-size: 0.9rem; font-weight: 500; color: var(--gray-700); text-decoration: none; transition: background .15s;
}
.float-lang-opt:hover { background: var(--gray-50); }
.float-lang-opt.active { color: var(--green); font-weight: 700; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) { .pj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pj-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   SERVICE SEARCH PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Service grid ─────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ── Service card ─────────────────────────────────────────────── */
.svc-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column;
    position: relative; transition: box-shadow .2s, border-color .2s;
}
.svc-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(0,166,81,.13); }

.svc-featured-badge {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    background: var(--orange); color: #fff; font-size: 0.65rem;
    font-weight: 700; padding: 3px 9px; border-radius: 20px; text-transform: uppercase;
}

/* Thumbnail */
.svc-thumb {
    display: flex; align-items: center; justify-content: center;
    position: relative; width: 100%; padding-top: 56%; overflow: hidden;
}
.svc-thumb img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.svc-thumb-icon {
    position: absolute; inset: 0; display: flex; align-items: center;
    justify-content: center; font-size: 3rem;
}

/* Body */
.svc-body { padding: 14px 16px 10px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

.svc-freelancer { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.svc-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid #e5e7eb; }
.svc-fname { font-size: 0.8125rem; font-weight: 600; color: #374151; }
.svc-verified { color: var(--green); flex-shrink: 0; }

.svc-cat-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 3px 9px;
    border-radius: 20px; background: #f3f4f6; color: #6b7280; text-transform: uppercase;
    letter-spacing: .3px; width: fit-content;
}
.svc-title {
    font-size: 0.9375rem; font-weight: 700; color: var(--navy); text-decoration: none;
    line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.svc-title:hover { color: var(--green); }

.svc-rating { display: flex; align-items: center; gap: 5px; font-size: 0.8125rem; }
.svc-stars { letter-spacing: -1px; }
.svc-rating em { font-style: normal; font-weight: 700; color: var(--navy); }
.svc-rating span { color: #9ca3af; }

.svc-includes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.svc-includes li { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: #6b7280; }
.svc-includes svg { color: var(--green); flex-shrink: 0; }

/* Footer */
.svc-footer {
    padding: 10px 16px 14px; border-top: 1px solid #f3f4f6;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.svc-delivery { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: #9ca3af; }
.svc-delivery svg { flex-shrink: 0; }
.svc-price { text-align: right; }
.svc-price span { display: block; font-size: 0.7rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .3px; }
.svc-price strong { font-size: 1.0625rem; font-weight: 800; color: var(--navy); }
.svc-heart {
    height: 34px;
    width: 34px;
}

/* Responsive */
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .svc-grid { grid-template-columns: 1fr; } }

/* ── Order live indicator ──────────────────────────────────────────── */
.order-live-dot {
    display: inline-block; width: 10px; height: 10px;
    background: #10B981; border-radius: 50%; vertical-align: middle;
    margin-right: 6px; flex-shrink: 0;
    animation: orderPulse 1.8s ease-in-out infinite;
}
@keyframes orderPulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
    50%       { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.order-detail-wrap { max-width: 860px; margin: 0 auto; }
.order-detail-header {
    background: var(--navy); color: #fff; border-radius: 12px;
    padding: 28px 32px; margin-bottom: 24px;
    display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px;
}
.order-detail-header h2 { color: #fff; margin: 0 0 6px; font-size: 1.25rem; }
.order-detail-header .od-meta { font-size: 0.875rem; color: rgba(255,255,255,.7); }
.od-status-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border-radius: 50px; font-size: 0.875rem; font-weight: 600;
}
.od-status-active   { background: rgba(16,185,129,.18); color: #6EE7B7; border: 1px solid rgba(16,185,129,.3); }
.od-status-delivered{ background: rgba(249,115,22,.18);  color: #FDBA74; border: 1px solid rgba(249,115,22,.3); }
.od-status-completed{ background: rgba(16,185,129,.35);  color: #fff;    border: 1px solid rgba(16,185,129,.5); }
.od-status-pending  { background: rgba(255,255,255,.1);  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15); }
.od-status-revision { background: rgba(245,158,11,.18);  color: #FCD34D; border: 1px solid rgba(245,158,11,.3); }
.od-status-disputed { background: rgba(239,68,68,.18);   color: #FCA5A5; border: 1px solid rgba(239,68,68,.3); }
.od-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.od-section { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.od-section h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }
.od-person-card { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.od-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 1.125rem; flex-shrink: 0; }
.od-person-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.od-person-meta { font-size: 0.8125rem; color: var(--gray-500); margin-top: 2px; }
.od-info-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.875rem; }
.od-info-row:last-child { border-bottom: none; }
.od-info-label { color: var(--gray-500); }
.od-info-value { font-weight: 600; color: var(--navy); }
.od-requirements { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 16px; font-size: 0.9rem; line-height: 1.6; color: var(--gray-700); white-space: pre-wrap; }
.od-includes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.od-includes li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--gray-700); }
.od-includes li svg { color: var(--green); flex-shrink: 0; }
.od-msg-preview { display: flex; flex-direction: column; gap: 10px; }
.od-msg-bubble { padding: 10px 14px; border-radius: 10px; font-size: 0.875rem; line-height: 1.5; max-width: 85%; }
.od-msg-bubble.mine { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.od-msg-bubble.theirs { background: var(--gray-100); color: var(--gray-800); align-self: flex-start; border-bottom-left-radius: 3px; }
.od-msg-time { font-size: 0.7rem; color: var(--gray-400); margin-top: 3px; }
.od-actions { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 768px) { .od-grid { grid-template-columns: 1fr; } }

/* ── Admin filter bar + pagination ─────────────────────────────── */
/* Admin toolbar — compact inline row above tables */
.admin-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.admin-toolbar h2 { margin: 0; flex: 1; min-width: 0; }
.admin-toolbar form { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.admin-tb-input {
    height: 36px;
    padding: 0 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: var(--font);
    color: var(--gray-800);
    background: #fff;
    transition: border-color .15s;
    width: 200px;
}
.admin-tb-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,166,81,.1); }
.admin-tb-select {
    height: 36px;
    padding: 0 10px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: var(--font);
    color: var(--gray-800);
    background: #fff;
    cursor: pointer;
    transition: border-color .15s;
}
.admin-tb-select:focus { outline: none; border-color: var(--green); }
/* Per-column quick-filter inputs inside <thead> */
.col-filter {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 5px 8px;
    border: 1px solid var(--gray-200);
    border-radius: 5px;
    font-size: 0.78rem;
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--gray-50);
    transition: border-color .15s, background .15s;
    box-sizing: border-box;
}
.col-filter:focus { outline: none; border-color: var(--green); background: #fff; }
.col-filter::placeholder { color: var(--gray-300); }
table.admin-table thead th { vertical-align: top; }
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 4px;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-pagination .page-info {
    color: var(--gray-500);
    font-size: 0.875rem;
}
.admin-pagination .page-links {
    display: flex;
    gap: 6px;
    align-items: center;
}
.admin-pagination .page-links a.active-page,
.admin-pagination .page-links span.current-page {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}
/* Dispute collapsible list */
.dispute-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 8px;
    transition: background 0.15s;
    list-style: none;
    user-select: none;
}
.dispute-summary::-webkit-details-marker { display: none; }
.dispute-summary:hover { background: var(--gray-50); }
details.dispute-item { border-bottom: 1px solid var(--gray-100); }
details.dispute-item:last-child { border-bottom: none; }
details.dispute-item[open] > .dispute-summary { background: var(--gray-50); }
.dispute-detail-body { padding: 0 18px 18px; }

/* ── Admin modal overlay ────────────────────────────────────────── */
.pz-modal-overlay {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(11,43,91,.45);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.pz-modal-overlay.open { display: flex; }
.pz-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 660px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.2);
    animation: modalIn .18s ease;
}
@keyframes modalIn { from { opacity:0; transform:translateY(12px) scale(.97); } to { opacity:1; transform:none; } }
.pz-modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    border: none; background: var(--gray-100); cursor: pointer;
    font-size: 1.1rem; color: var(--gray-500);
    display: flex; align-items: center; justify-content: center;
    transition: background .12s;
}
.pz-modal-close:hover { background: var(--gray-200); color: var(--navy); }
.pz-modal h3 { margin: 0 0 20px; font-size: 1.125rem; color: var(--navy); }
.pz-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-bottom: 20px; }
.pz-modal-field { font-size: 0.875rem; }
.pz-modal-field .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); margin-bottom: 3px; }
.pz-modal-field .val { color: var(--gray-800); font-weight: 500; }
/* ── Admin settings tabs ────────────────────────────────────────── */
.settings-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--gray-100); margin-bottom: 28px; flex-wrap: wrap; }
.settings-tab-btn {
    padding: 10px 18px; border: none; background: none; cursor: pointer;
    font-size: 0.9rem; font-family: var(--font); font-weight: 500;
    color: var(--gray-500); border-bottom: 2px solid transparent;
    margin-bottom: -2px; border-radius: 6px 6px 0 0; transition: color .12s, border-color .12s;
}
.settings-tab-btn:hover { color: var(--navy); }
.settings-tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 700; background: var(--gray-50); }
.settings-tab-panel { display: none; }
.settings-tab-panel.active { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   Global Responsive Layer
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 44px; }
    .hero-prozall-text h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
}

/* ── Mobile (≤768px) ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .section { padding: 52px 0; }
    .section-header { margin-bottom: 32px; }
    .container { padding: 0 16px; }
    /* Tables: prevent horizontal body overflow */
    .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    table { min-width: 480px; }
    /* Buttons: allow wrapping on tiny screens */
    .btn { white-space: normal; }
    /* Cards in a flex/block context shouldn't overflow */
    .card { max-width: 100%; }
    /* Section-sub / lead text */
    .section-header p { font-size: 0.9375rem; }
    /* Modal: full width on mobile */
    .pz-modal { padding: 20px 16px; border-radius: 12px; }
    .pz-modal-grid { grid-template-columns: 1fr; }
    /* Admin sidebar toggle (always show toggle, hide sidebar) */
    .db-sidebar { transform: translateX(-100%); }
    .db-sidebar.open { transform: translateX(0); box-shadow: 0 0 0 100vmax rgba(0,0,0,.4); }
    .db-main { margin-left: 0 !important; }
    /* Form two-column → single */
    .form-row-2 { grid-template-columns: 1fr !important; }
    /* Prevent mega menu from appearing on mobile (already hidden by display:none) */
    .nav-mega-panel { display: none !important; }
    /* Browse layout stacks */
    .browse-layout { grid-template-columns: 1fr; }
    .filters-col { display: none; }
    /* Popular tags wrap properly */
    .sc-tags-row { flex-wrap: wrap; }
    /* Hero wave shouldn't cause overflow */
    .sc-hero { overflow: hidden; }
    .sc-hero-wave svg { min-width: 100%; }
    /* Upwork-style freelancer grid: 2 cols on tablet */
    .upw-fl-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Small Mobile (≤480px) ────────────────────────────────────── */
@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .container { padding: 0 12px; }
    .section-header { margin-bottom: 24px; }
    h2 { font-size: 1.5rem !important; }
    .btn { padding: 10px 16px; font-size: 0.85rem; }
    .hero-prozall-text h1 { font-size: 1.65rem; }
    /* Single-col grids */
    .upw-fl-grid { grid-template-columns: 1fr; }
    .sc-cat-grid { gap: 10px; }
    /* Prevent any element stretching viewport */
    img, iframe, video, embed, object { max-width: 100%; }
    /* Reduce nav action spacing */
    .header-actions { gap: 6px; }
    .btn-sm { padding: 7px 12px; font-size: 0.8rem; }
    /* Footer columns */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    /* Dashboard topbar */
    .db-topbar-actions { gap: 6px; }
    .db-topbar h1 { font-size: 1.1rem; }
}

/* ── CMS Pages (home/page.php) ───────────────────────────────────── */
.pg-not-found {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #f8f9fc;
}
.pg-not-found__inner { text-align: center; padding: 80px 0; }
.pg-not-found__code {
    font-size: 120px;
    font-weight: 800;
    color: var(--navy);
    opacity: .08;
    line-height: 1;
    margin-bottom: -20px;
}
.pg-not-found__title { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.pg-not-found__desc  { color: #64748b; margin-bottom: 28px; }

.pg-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
    padding: 64px 0 0;
    position: relative;
    color: #fff;
}
.pg-hero .container { position: relative; z-index: 1; }
.pg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: .7;
    margin-bottom: 20px;
}
.pg-breadcrumb a { color: inherit; text-decoration: none; }
.pg-breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.pg-breadcrumb__sep { opacity: .4; }
.pg-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 700px;
    margin: 0 0 16px;
}
.pg-hero__lead {
    font-size: 1.1rem;
    opacity: .82;
    max-width: 600px;
    line-height: 1.65;
    margin: 0 0 48px;
}
.pg-hero__wave { display: block; width: 100%; margin-bottom: -1px; line-height: 0; }
.pg-hero__wave svg { width: 100%; height: 60px; display: block; }

.pg-hero--visual {
    align-items: center;
    background-color: #05070b;
    display: flex;
    min-height: 410px;
    overflow: hidden;
    padding: 0;
    text-align: center;
}
.pg-hero--visual::before {
    background-image: var(--pg-hero-img);
    background-position: center;
    background-size: cover;
    content: "";
    filter: blur(2px);
    inset: -8px;
    opacity: 1;
    position: absolute;
    transform: scale(1.02);
    z-index: 0;
}
.pg-hero--visual::after {
    background: linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.42) 48%, rgba(0,0,0,.56) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}
.pg-hero--visual .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 980px;
    min-height: 410px;
    padding-bottom: 44px;
    padding-top: 44px;
    z-index: 2;
}
.pg-hero--visual .pg-breadcrumb {
    align-items: center;
    background: rgba(13,50,146,.9);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 600;
    gap: 7px;
    justify-content: center;
    line-height: 1;
    margin: 34px 0 0;
    opacity: 1;
    order: 3;
    padding: 15px 20px;
}
.pg-hero--visual .pg-breadcrumb a {
    color: #08a86f;
    font-weight: 700;
    text-decoration: none;
}
.pg-hero--visual .pg-breadcrumb a:hover {
    color: #10c985;
    text-decoration: none;
}
.pg-hero--visual .pg-breadcrumb__sep {
    color: #fff;
    opacity: 1;
}
.pg-hero--visual .pg-hero__title {
    color: #fff;
    font-size: 2.72rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 22px;
    max-width: 900px;
    order: 1;
    text-align: center;
}
.pg-hero--visual .pg-hero__lead {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
    max-width: 895px;
    opacity: .96;
    order: 2;
    text-align: center;
}
.pg-hero--visual .pg-hero__lead strong {
    color: #fff;
    font-weight: 900;
}

@media (max-width: 900px) {
    .pg-hero--visual {
        min-height: 380px;
    }
    .pg-hero--visual::before {
        background-position: center;
    }
    .pg-hero--visual .container {
        min-height: 380px;
        padding-bottom: 38px;
        padding-top: 38px;
    }
    .pg-hero--visual .pg-hero__title {
        font-size: 2.28rem;
        margin-bottom: 18px;
    }
    .pg-hero--visual .pg-hero__lead {
        font-size: 1rem;
        max-width: 720px;
    }
    .pg-hero--visual .pg-breadcrumb {
        font-size: .98rem;
        margin-top: 28px;
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .pg-hero--visual {
        min-height: 430px;
    }
    .pg-hero--visual .container {
        min-height: 430px;
        padding-bottom: 34px;
        padding-top: 34px;
    }
    .pg-hero--visual .pg-hero__title {
        font-size: 2rem;
    }
    .pg-hero--visual .pg-hero__lead {
        font-size: .95rem;
        line-height: 1.5;
    }
    .pg-hero--visual .pg-breadcrumb {
        border-radius: 8px;
        font-size: .92rem;
        margin-top: 24px;
        padding: 13px 16px;
    }
}

/* About page: who we are */
.about-who-section {
    background: #fff;
    padding: 112px 0 124px;
}
.about-who-section .container {
    max-width: 1200px;
}
.about-who-grid {
    align-items: center;
    display: grid;
    gap: 62px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
.about-who-media {
    min-width: 0;
}
.about-who-media img {
    aspect-ratio: 1.08 / 1;
    border-radius: 8px;
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.about-who-copy {
    min-width: 0;
}
.about-who-copy h2 {
    color: #08a86f;
    font-size: 2.05rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 24px;
}
.about-who-copy p {
    color: #1f1f1f;
    font-size: 1.09rem;
    font-weight: 500;
    line-height: 1.62;
    margin: 0 0 24px;
}
.about-who-actions {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
}
.about-who-btn {
    align-items: center;
    background: #0d3292;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.12rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1.1;
    min-height: 58px;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.about-who-btn:hover,
.about-who-btn:focus-visible {
    background: #092878;
    box-shadow: 0 16px 34px rgba(13,50,146,.18);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .about-who-section {
        padding: 84px 0 94px;
    }
    .about-who-grid {
        gap: 42px;
        grid-template-columns: 1fr;
    }
    .about-who-media {
        margin: 0 auto;
        max-width: 720px;
        width: 100%;
    }
    .about-who-copy {
        margin: 0 auto;
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .about-who-section {
        padding: 58px 0 68px;
    }
    .about-who-grid {
        gap: 30px;
    }
    .about-who-media img {
        aspect-ratio: 1 / .92;
    }
    .about-who-copy h2 {
        font-size: 1.72rem !important;
        margin-bottom: 18px;
    }
    .about-who-copy p {
        font-size: .98rem;
        line-height: 1.58;
        margin-bottom: 18px;
    }
    .about-who-actions {
        gap: 12px;
        grid-template-columns: 1fr;
        margin-top: 26px;
    }
    .about-who-btn {
        font-size: 1rem;
        min-height: 54px;
        padding: 15px 18px;
        width: 100%;
    }
}

/* About page: why choose us */
.about-choose-section {
    background: #f3f3f3;
    border-bottom: 2px solid #0d3292;
    padding: 112px 0 126px;
}
.about-choose-section .container {
    max-width: 1220px;
}
.about-choose-header {
    margin: 0 auto 64px;
    max-width: 900px;
    text-align: center;
}
.about-choose-header h2 {
    color: #08a86f;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 24px;
}
.about-choose-header p {
    color: #1f1f1f;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 auto;
}
.about-choose-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-choose-card {
    align-items: center;
    aspect-ratio: 1.06 / 1;
    border: 2px dotted #0d3292;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 310px;
    padding: 34px 32px;
    text-align: center;
}
.about-choose-icon {
    align-items: center;
    color: #0d3292;
    display: inline-flex;
    font-size: 2.15rem;
    justify-content: center;
    line-height: 1;
    margin-bottom: 24px;
    min-height: 46px;
}
.about-choose-card h3 {
    color: #0d3292;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 20px;
    max-width: 330px;
}
.about-choose-card p {
    color: #1f1f1f;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
    max-width: 340px;
}

@media (max-width: 1000px) {
    .about-choose-section {
        padding: 84px 0 96px;
    }
    .about-choose-header {
        margin-bottom: 42px;
    }
    .about-choose-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 720px;
    }
    .about-choose-card {
        aspect-ratio: auto;
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .about-choose-section {
        padding: 58px 0 70px;
    }
    .about-choose-header {
        margin-bottom: 32px;
        text-align: left;
    }
    .about-choose-header h2 {
        font-size: 1.72rem !important;
        margin-bottom: 18px;
    }
    .about-choose-header p {
        font-size: .96rem;
        line-height: 1.58;
    }
    .about-choose-grid {
        gap: 16px;
    }
    .about-choose-card {
        min-height: 232px;
        padding: 28px 22px;
    }
    .about-choose-icon {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    .about-choose-card h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    .about-choose-card p {
        font-size: .95rem;
    }
}

/* About page: mission and vision */
.about-mission-section {
    background: #0d3292;
    color: #fff;
    padding: 116px 0 132px;
}
.about-mission-section .container {
    max-width: 1280px;
}
.about-mission-grid {
    display: grid;
    gap: 160px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-mission-block {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}
.about-mission-block h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 24px;
}
.about-mission-block p {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
    max-width: 455px;
}
.about-mission-block strong {
    color: #fff;
    font-weight: 900;
}
.about-mission-btn {
    align-items: center;
    background: #fff;
    border-radius: 8px;
    color: #0d3292;
    display: inline-flex;
    font-size: 1.12rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1.1;
    margin-top: auto;
    min-height: 58px;
    min-width: 280px;
    padding: 16px 28px;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.about-mission-btn:hover,
.about-mission-btn:focus-visible {
    background: #f4f6ff;
    box-shadow: 0 16px 34px rgba(0,0,0,.16);
    color: #0d3292;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .about-mission-section {
        padding: 84px 0 96px;
    }
    .about-mission-grid {
        gap: 58px;
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 720px;
    }
    .about-mission-block {
        min-height: 0;
    }
    .about-mission-block p {
        max-width: 100%;
    }
    .about-mission-btn {
        margin-top: 34px;
    }
}

@media (max-width: 640px) {
    .about-mission-section {
        padding: 58px 0 70px;
    }
    .about-mission-grid {
        gap: 44px;
    }
    .about-mission-block h2 {
        font-size: 1.72rem !important;
        margin-bottom: 18px;
    }
    .about-mission-block p {
        font-size: .98rem;
        line-height: 1.58;
    }
    .about-mission-btn {
        font-size: 1rem;
        min-height: 54px;
        min-width: 0;
        width: 100%;
    }
}

/* How it works page: process sections */
.how-process-page {
    background: #fff;
}
.how-process-section {
    padding: 92px 0 88px;
}
.how-process-section--clients {
    background: #fff;
}
.how-process-section--freelancers {
    background: #f3f3f3;
    padding-bottom: 96px;
}
.how-process-section .container {
    max-width: 1280px;
}
.how-process-title {
    color: #0d3292;
    font-size: 2.05rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 42px;
    text-align: center;
}
.how-process-section--freelancers .how-process-title {
    color: #08a86f;
}
.how-process-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.how-process-card {
    align-items: center;
    border: 2px dotted #0d3292;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 346px;
    padding: 46px 34px 42px;
    text-align: center;
}
.how-process-card--featured {
    border-style: solid;
}
.how-process-number {
    align-items: center;
    background: #0d3292;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.6rem;
    font-weight: 900;
    height: 52px;
    justify-content: center;
    line-height: 1;
    margin-bottom: 34px;
    width: 52px;
}
.how-process-section--freelancers .how-process-number {
    background: #08a86f;
}
.how-process-card h3 {
    color: #0d3292;
    font-size: 1.52rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 24px;
    max-width: 350px;
}
.how-process-card p {
    color: #1f1f1f;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.62;
    margin: 0;
    max-width: 360px;
}

@media (max-width: 1000px) {
    .how-process-section {
        padding: 76px 0 78px;
    }
    .how-process-section--freelancers {
        padding-bottom: 84px;
    }
    .how-process-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 720px;
    }
    .how-process-card {
        min-height: 286px;
        padding: 38px 34px 36px;
    }
    .how-process-number {
        margin-bottom: 26px;
    }
}

@media (max-width: 640px) {
    .how-process-section {
        padding: 56px 0 62px;
    }
    .how-process-section--freelancers {
        padding-bottom: 68px;
    }
    .how-process-title {
        font-size: 1.72rem !important;
        margin-bottom: 30px;
    }
    .how-process-grid {
        gap: 16px;
    }
    .how-process-card {
        min-height: 0;
        padding: 30px 22px 32px;
    }
    .how-process-number {
        font-size: 1.35rem;
        height: 46px;
        margin-bottom: 22px;
        width: 46px;
    }
    .how-process-card h3 {
        font-size: 1.24rem;
        margin-bottom: 16px;
    }
    .how-process-card p {
        font-size: .95rem;
        line-height: 1.58;
    }
}

.pg-body { background: #f8f9fc; padding: 56px 0 80px; }
.pg-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 900px) {
    .pg-layout { grid-template-columns: 1fr; }
}

.pg-content.prose {
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 2px 20px rgba(11,43,91,.07);
    min-height: 280px;
}
@media (max-width: 640px) { .pg-content.prose { padding: 24px 20px; } }
.pg-content.prose h1,
.pg-content.prose h2,
.pg-content.prose h3 { color: var(--navy); font-weight: 700; line-height: 1.25; margin: 28px 0 10px; }
.pg-content.prose h1 { font-size: 1.8rem; margin-top: 0; }
.pg-content.prose h2 {
    font-size: 1.35rem;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 8px;
}
.pg-content.prose h3 { font-size: 1.05rem; color: var(--green); }
.pg-content.prose p  { color: #374151; line-height: 1.78; margin: 0 0 16px; }
.pg-content.prose ul,
.pg-content.prose ol { margin: 0 0 16px 24px; color: #374151; line-height: 1.78; }
.pg-content.prose li { margin-bottom: 6px; }
.pg-content.prose a  { color: var(--green); text-decoration: underline; }
.pg-content.prose a:hover { opacity: .8; }
.pg-content.prose blockquote {
    border-left: 4px solid var(--green);
    margin: 24px 0;
    padding: 14px 20px;
    background: #f0faf6;
    border-radius: 0 10px 10px 0;
    color: #374151;
    font-style: italic;
}
.pg-content.prose strong { color: var(--navy); font-weight: 600; }
.pg-content.prose hr  { border: none; border-top: 1px solid #e5e7eb; margin: 28px 0; }
.pg-content.prose table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.pg-content.prose th  { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; font-size: 13px; }
.pg-content.prose td  { padding: 10px 14px; border-bottom: 1px solid #e5e7eb; color: #374151; }
.pg-content.prose tr:hover td { background: #f9fafb; }

.pg-sidebar__card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(11,43,91,.06);
}
.pg-sidebar__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.pg-sidebar__text { font-size: 14px; color: #64748b; line-height: 1.6; }
.pg-sidebar__links { list-style: none; margin: 0; padding: 0; }
.pg-sidebar__links li { border-bottom: 1px solid #f0f2f5; }
.pg-sidebar__links li:last-child { border-bottom: none; }
.pg-sidebar__links a {
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    transition: color .15s;
}
.pg-sidebar__links a::before { content: '→'; color: var(--green); font-size: 12px; flex-shrink: 0; }
.pg-sidebar__links a:hover { color: var(--green); }
.btn-block { width: 100%; text-align: center; justify-content: center; display: flex; }

.empty-state {
    text-align: center;
    padding: 80px 0;
    color: #94a3b8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq-page-layout { grid-template-columns: 1fr; }
}

/* Password visibility toggle */
.password-field-wrap { position: relative; }
.password-field-wrap .password-field-input { padding-right: 44px; }
.password-toggle-btn {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    background: none; border: none; padding: 4px; cursor: pointer;
    color: var(--gray-400); display: flex; align-items: center;
}
.password-toggle-btn:hover { color: var(--navy); }

/* Homepage pricing mockup */
.hp-pricing-section {
    background: #f4f4f5;
    padding: 74px 0 86px;
}
.hp-pricing-section .container { max-width: 1260px; }
.hp-pricing-header { margin-bottom: 50px; }
.hp-pricing-section .section-eyebrow {
    display: block;
    color: #08a86f;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: none;
}
.hp-pricing-title {
    color: #0d3292;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    margin-bottom: 18px;
}
.hp-pricing-title .text-green { color: #08a86f; }
.hp-pricing-header p {
    color: #747474;
    font-size: 1.15rem;
    line-height: 1.45;
    max-width: 820px;
}
.hp-pricing-grid {
    align-items: stretch;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hp-pricing-card {
    background: #f4f4f5;
    border: 2px solid #08a86f;
    border-radius: 8px;
    box-shadow: none;
    min-height: 560px;
    overflow: hidden;
    padding: 0 0 44px;
}
.hp-pricing-card:hover {
    box-shadow: none;
    transform: none;
}
.hp-pricing-card-featured {
    background: #0d3292;
    border-color: #0d3292;
    box-shadow: none;
}
.hp-pricing-card-head {
    align-items: flex-end;
    display: flex;
    justify-content: center;
    min-height: 132px;
    padding: 52px 24px 24px;
}
.hp-pricing-plan-name {
    color: #10142a;
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0;
    text-align: center;
}
.hp-pricing-card-featured .hp-pricing-plan-name { color: #fff; }
.hp-pricing-price {
    align-items: center;
    background: #08a86f;
    border-radius: 42px 0 0 42px;
    color: #fff;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 0 46px 26px;
    min-height: 78px;
    padding: 8px 18px;
    width: calc(100% - 26px);
}
.hp-pricing-card-featured .hp-pricing-price { color: #fff; }
.hp-price-currency {
    align-self: center;
    font-size: 1.3rem;
    font-weight: 900;
    transform: translateY(-8px);
}
.hp-price-amount {
    font-size: 3.35rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}
.hp-price-period {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}
.hp-pricing-features {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    list-style: none;
    margin: 0 auto 34px;
    max-width: 360px;
    width: 78%;
}
.hp-pricing-features li {
    border-bottom: none;
    border-top: 2px dashed #777;
    color: #555;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    padding: 12px 0;
    text-align: center;
}
.hp-pricing-features li::before { content: none; }
.hp-pricing-card-featured .hp-pricing-features li {
    border-color: rgba(255,255,255,.85);
    color: #fff;
}
.hp-pricing-feature-included { font-weight: 700; }
.hp-pricing-cta {
    align-self: center;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 800;
    max-width: 270px;
    min-height: 50px;
    min-width: 220px;
    padding: 14px 18px;
    width: 58%;
}
.hp-pricing-card-featured .hp-pricing-cta {
    background: #08a86f;
    border-color: #08a86f;
    color: #fff;
}
.hp-pricing-cta:hover {
    background: #078c5d;
    border-color: #078c5d;
    box-shadow: none;
    color: #fff;
    transform: none;
}

@media (max-width: 1100px) {
    .hp-pricing-title { font-size: 2.6rem; }
    .hp-pricing-price {
        margin-left: 18px;
        width: calc(100% - 18px);
    }
    .hp-price-amount { font-size: 2.8rem; }
    .hp-price-period { font-size: 1rem; }
    .hp-pricing-features { width: 82%; }
}

@media (max-width: 900px) {
    .hp-pricing-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 560px;
    }
    .hp-pricing-card { min-height: auto; }
    .hp-pricing-card-head {
        min-height: 112px;
        padding: 42px 20px 22px;
    }
    .hp-pricing-price { margin-bottom: 34px; }
}

@media (max-width: 480px) {
    .hp-pricing-section { padding: 44px 0 54px; }
    .hp-pricing-title { font-size: 2rem; }
    .hp-pricing-header p { font-size: .98rem; }
    .hp-pricing-plan-name { font-size: 1.55rem; }
    .hp-pricing-price {
        gap: 7px;
        margin-left: 14px;
        min-height: 66px;
        padding: 8px 12px;
        width: calc(100% - 14px);
    }
    .hp-price-currency {
        font-size: 1rem;
        transform: translateY(-6px);
    }
    .hp-price-amount { font-size: 2.45rem; }
    .hp-price-period { font-size: .9rem; }
    .hp-pricing-features { width: 82%; }
    .hp-pricing-features li { font-size: .93rem; }
    .hp-pricing-cta {
        min-width: 0;
        width: 72%;
    }
}

/* Homepage FAQ mockup */
.hp-faq-section {
    background: #fff;
    padding: 118px 0 112px;
}
.hp-faq-section .container { max-width: 1320px; }
.hp-faq-layout {
    align-items: start;
    display: grid;
    gap: 92px;
    grid-template-columns: minmax(300px, .82fr) minmax(560px, 1.35fr);
}
.hp-faq-sidebar {
    padding-top: 32px;
}
.hp-faq-eyebrow {
    color: #0d3292;
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.hp-faq-title {
    color: #232323;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0;
    max-width: 520px;
}
.hp-faq-subtitle {
    color: #777;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.36;
    margin: 38px 0 0;
    max-width: 550px;
}
.hp-faq-contact {
    background: #0d3292;
    border-color: #0d3292;
    border-radius: 8px;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    margin-top: 52px;
    min-height: 64px;
    min-width: 285px;
    padding: 18px 34px;
}
.hp-faq-contact:hover {
    background: #092878;
    border-color: #092878;
    box-shadow: none;
    color: #fff;
    transform: none;
}
.hp-faq-main {
    min-width: 0;
}
.hp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hp-faq-item {
    background: #f4f4f5;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
    transition: background .2s ease;
}
.hp-faq-item:hover {
    box-shadow: none;
}
.hp-faq-item.open {
    border-color: transparent;
}
.hp-faq-question {
    align-items: center;
    background: transparent;
    border: 0;
    color: #242424;
    display: flex;
    font-size: 1.35rem;
    font-weight: 900;
    gap: 24px;
    justify-content: space-between;
    line-height: 1.25;
    min-height: 82px;
    padding: 24px 28px;
    text-align: left;
    width: 100%;
}
.hp-faq-question:hover {
    background: transparent;
}
.hp-faq-section .faq-question::after,
.hp-faq-section .faq-item.open .faq-question::after {
    content: none;
}
.hp-faq-question-text {
    display: block;
    min-width: 0;
}
.hp-faq-number {
    white-space: nowrap;
}
.hp-faq-toggle {
    color: #242424;
    flex-shrink: 0;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
}
.hp-faq-toggle::before {
    content: '+';
}
.hp-faq-item.open .hp-faq-toggle::before {
    content: '-';
}
.hp-faq-section .faq-answer {
    color: #777;
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height var(--transition), padding var(--transition);
}
.hp-faq-section .faq-item.open .faq-answer {
    max-height: 520px;
    padding: 0 28px 30px;
}
.hp-faq-section .faq-answer p {
    color: #777;
    font-size: 1.22rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
    max-width: 760px;
}
.hp-faq-more {
    align-items: center;
    color: #0d3292;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 900;
    gap: 7px;
    line-height: 1;
    margin-top: 38px;
}
.hp-faq-more:hover {
    color: #08a86f;
}
.hp-faq-more span {
    font-size: 1.75rem;
    line-height: .85;
}

@media (max-width: 1100px) {
    .hp-faq-layout {
        gap: 52px;
        grid-template-columns: .9fr 1.2fr;
    }
    .hp-faq-title { font-size: 2.45rem; }
    .hp-faq-subtitle,
    .hp-faq-section .faq-answer p { font-size: 1.08rem; }
    .hp-faq-question { font-size: 1.12rem; }
}

@media (max-width: 900px) {
    .hp-faq-section { padding: 72px 0; }
    .hp-faq-layout {
        gap: 34px;
        grid-template-columns: 1fr;
    }
    .hp-faq-sidebar { padding-top: 0; }
    .hp-faq-title { max-width: 680px; }
    .hp-faq-subtitle {
        margin-top: 22px;
        max-width: 760px;
    }
    .hp-faq-contact { margin-top: 28px; }
}

@media (max-width: 480px) {
    .hp-faq-section { padding: 54px 0 58px; }
    .hp-faq-eyebrow { font-size: .95rem; }
    .hp-faq-title { font-size: 2rem; }
    .hp-faq-subtitle {
        font-size: 1rem;
        line-height: 1.45;
    }
    .hp-faq-contact {
        font-size: .95rem;
        min-height: 54px;
        min-width: 0;
        width: 100%;
    }
    .hp-faq-list { gap: 12px; }
    .hp-faq-question {
        font-size: 1rem;
        gap: 14px;
        min-height: 68px;
        padding: 18px 18px;
    }
    .hp-faq-section .faq-answer {
        padding: 0 18px;
    }
    .hp-faq-section .faq-item.open .faq-answer {
        padding: 0 18px 22px;
    }
    .hp-faq-section .faq-answer p {
        font-size: .96rem;
    }
    .hp-faq-more {
        font-size: 1.08rem;
        margin-top: 26px;
    }
}

/* Homepage collaboration steps mockup */
.hp-collab-section {
    background: #fff;
    padding: 112px 0 118px;
}
.hp-collab-section .container {
    max-width: 1280px;
}
.hp-collab-header {
    margin: 0 auto 74px;
    max-width: 940px;
    text-align: center;
}
.hp-collab-header h2 {
    color: #08a86f;
    font-size: 2.9rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0 0 24px;
}
.hp-collab-header h2 span {
    display: inline-block;
    line-height: .92;
    padding-bottom: 6px;
    position: relative;
}
.hp-collab-header h2 span::after {
    background: #ee4710;
    bottom: 0;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}
.hp-collab-header p {
    color: #777;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.42;
    margin: 0 auto;
    max-width: 760px;
}
.hp-collab-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hp-collab-step {
    padding: 34px 56px 10px;
    position: relative;
    text-align: center;
}
.hp-collab-step + .hp-collab-step {
    border-left: 1px solid #e5e7eb;
}
.hp-collab-number {
    align-items: center;
    background: #08a86f;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 3.15rem;
    font-weight: 500;
    height: 104px;
    justify-content: center;
    line-height: 1;
    margin-bottom: 24px;
    width: 104px;
}
.hp-collab-step h3 {
    color: #08a86f;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0 auto 20px;
    max-width: 360px;
}
.hp-collab-step p {
    color: #777;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.42;
    margin: 0 auto;
    max-width: 330px;
}
.hp-collab-step strong {
    color: #666;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .hp-collab-header h2 { font-size: 2.45rem; }
    .hp-collab-step { padding: 28px 34px 8px; }
    .hp-collab-step h3 { font-size: 1.32rem; }
    .hp-collab-step p { font-size: 1rem; }
}

@media (max-width: 900px) {
    .hp-collab-section { padding: 76px 0 82px; }
    .hp-collab-header {
        margin-bottom: 42px;
        text-align: left;
    }
    .hp-collab-header h2 { font-size: 2.15rem; }
    .hp-collab-header p {
        font-size: 1.04rem;
        margin-left: 0;
    }
    .hp-collab-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .hp-collab-step {
        padding: 0;
        text-align: left;
    }
    .hp-collab-step + .hp-collab-step {
        border-left: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 30px;
    }
    .hp-collab-number {
        font-size: 2.25rem;
        height: 76px;
        margin-bottom: 18px;
        width: 76px;
    }
    .hp-collab-step h3,
    .hp-collab-step p {
        margin-left: 0;
        max-width: 620px;
    }
}

@media (max-width: 480px) {
    .hp-collab-section { padding: 58px 0 62px; }
    .hp-collab-header h2 { font-size: 1.78rem; }
    .hp-collab-header p { font-size: .96rem; }
    .hp-collab-number {
        font-size: 1.9rem;
        height: 64px;
        width: 64px;
    }
    .hp-collab-step h3 { font-size: 1.18rem; }
    .hp-collab-step p { font-size: .95rem; }
}

/* Homepage category exploration mockup */
.hp-categories-section {
    background: #fff;
    padding: 96px 0 90px;
}
.hp-categories-section .container {
    max-width: 1380px;
}
.hp-categories-header {
    margin: 0 auto 70px;
    max-width: 1120px;
    text-align: center;
}
.hp-categories-header h2 {
    color: #0d3292;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.14;
    margin: 0 0 26px;
}
.hp-categories-header h2 span {
    color: #08a86f;
}
.hp-categories-header p {
    color: #777;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 auto;
    max-width: 880px;
}
.hp-categories-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hp-category-card {
    aspect-ratio: 4 / 5;
    background: #0b1220;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(6,26,56,.16);
    color: #fff;
    display: block;
    min-height: 300px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .22s ease, color .22s ease, transform .22s ease;
}
.hp-category-card:hover,
.hp-category-card:focus-visible {
    box-shadow: 0 24px 60px rgba(6,26,56,.24);
    color: #fff;
    outline: none;
    transform: translateY(-5px);
}
.hp-category-card:focus-visible {
    box-shadow: 0 0 0 4px rgba(8,168,111,.22), 0 24px 60px rgba(6,26,56,.24);
}
.hp-category-media {
    display: block;
    inset: 0;
    position: absolute;
}
.hp-category-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .7s ease;
    width: 100%;
}
.hp-category-card:hover .hp-category-media img,
.hp-category-card:focus-visible .hp-category-media img {
    transform: scale(1.08);
}
.hp-category-shade {
    background: linear-gradient(to top, rgba(0,0,0,.86) 0%, rgba(0,0,0,.56) 38%, rgba(0,0,0,.22) 68%, rgba(0,0,0,.08) 100%);
    inset: 0;
    position: absolute;
    transition: background .22s ease;
}
.hp-category-card:hover .hp-category-shade,
.hp-category-card:focus-visible .hp-category-shade {
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.26) 72%, rgba(0,0,0,.08) 100%);
}
.hp-category-content {
    align-items: flex-start;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    z-index: 2;
}
.hp-category-icon {
    display: none;
}
.hp-category-icon svg {
    display: block;
    height: 100%;
    width: 100%;
}
.hp-category-name {
    color: #fff;
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.18;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.hp-category-action {
    align-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .02em;
    min-height: 34px;
    padding: 8px 13px;
    backdrop-filter: blur(10px);
}
.hp-category-summary {
    color: rgba(255,255,255,.88);
    display: block;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.45;
    max-width: 280px;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.hp-category-more {
    background: #0b1220;
    color: #fff;
}
.hp-category-more:hover,
.hp-category-more:focus-visible {
    color: #fff;
}

/* Homepage signup CTA */
.hp-signup-cta-section {
    background: #fff;
    padding: 0 0 96px;
}
.hp-signup-cta-section .container {
    max-width: 1420px;
}
.hp-signup-cta-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hp-signup-cta-card {
    align-items: center;
    background: #eff1fa;
    border-radius: 8px;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 218px;
    min-height: 286px;
    overflow: hidden;
    padding: 30px 24px 30px 28px;
}
.hp-signup-cta-copy {
    min-width: 0;
}
.hp-signup-cta-card h2 {
    color: #0d3292;
    font-size: 1.52rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0 0 28px;
}
.hp-signup-cta-card--green h2 {
    color: #08a86f;
}
.hp-signup-cta-card p {
    color: #161616;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0 0 30px;
}
.hp-signup-cta-btn {
    align-items: center;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.12rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1.1;
    min-height: 56px;
    min-width: 286px;
    padding: 16px 28px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.hp-signup-cta-btn:hover,
.hp-signup-cta-btn:focus-visible {
    color: #fff;
    transform: translateY(-2px);
}
.hp-signup-cta-btn--blue {
    background: #0d3292;
}
.hp-signup-cta-btn--blue:hover,
.hp-signup-cta-btn--blue:focus-visible {
    background: #092878;
    box-shadow: 0 16px 34px rgba(13,50,146,.18);
}
.hp-signup-cta-btn--green {
    background: #08a86f;
}
.hp-signup-cta-btn--green:hover,
.hp-signup-cta-btn--green:focus-visible {
    background: #078d5f;
    box-shadow: 0 16px 34px rgba(8,168,111,.2);
}
.hp-signup-cta-img {
    aspect-ratio: 1 / 1.18;
    border-radius: 8px;
    height: 226px;
    object-fit: cover;
    width: 100%;
}

/* Homepage professionals */
.hp-pros-section {
    background: #f7f7f7;
    padding: 56px 0 96px;
}
.hp-pros-section .container {
    max-width: 1320px;
}
.hp-pros-header {
    margin: 0 auto 34px;
    max-width: 920px;
    text-align: center;
}
.hp-pros-header > span {
    color: #08a86f;
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
}
.hp-pros-header h2 {
    color: #0d3292;
    font-size: 2.65rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 24px;
}
.hp-pros-header h2 span {
    color: #08a86f;
}
.hp-pros-header p {
    color: #777;
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 auto;
}
.hp-pros-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hp-pro-card {
    background: #fff;
    border: 1px solid #e9e9ee;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(17,24,39,.03);
    display: flex;
    flex-direction: column;
    min-height: 378px;
    padding: 18px;
}
.hp-pro-card-top {
    display: grid;
    gap: 14px;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    min-height: 82px;
}
.hp-pro-avatar-wrap {
    display: block;
    position: relative;
}
.hp-pro-avatar {
    background: #ccc;
    border-radius: 8px;
    height: 82px;
    object-fit: cover;
    width: 82px;
}
.hp-pro-avatar-placeholder {
    align-items: center;
    color: #1f1f1f;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 500;
    justify-content: center;
    line-height: 1;
}
.hp-pro-avatar-dot {
    background: #999;
    border: 4px solid #fff;
    border-radius: 999px;
    height: 18px;
    position: absolute;
    right: -6px;
    top: -6px;
    width: 18px;
}
.hp-pro-main {
    min-width: 0;
}
.hp-pro-name-row {
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 0;
}
.hp-pro-name {
    color: #999;
    display: block;
    font-size: 1.04rem;
    font-weight: 900;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-pro-name:hover { color: #0d3292; }
.hp-pro-verified {
    align-items: center;
    background: #2fc96d;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
    font-size: .62rem;
    height: 18px;
    justify-content: center;
    width: 18px;
}
.hp-pro-rating {
    align-items: center;
    color: #999;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    gap: 7px;
    margin-top: 8px;
}
.hp-pro-rating i {
    color: #f7c745;
}
.hp-pro-views {
    align-items: center;
    align-self: start;
    background: #fff0ec;
    border-radius: 8px;
    color: #f0542c;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    gap: 6px;
    line-height: 1;
    padding: 9px 11px;
    white-space: nowrap;
}
.hp-pro-meta {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-top: 24px;
}
.hp-pro-meta + .hp-pro-meta {
    margin-top: 16px;
}
.hp-pro-meta-label {
    align-items: center;
    color: #777;
    display: inline-flex;
    font-size: .96rem;
    font-weight: 800;
    gap: 10px;
    min-width: 0;
}
.hp-pro-meta-label i {
    color: #888;
    flex-shrink: 0;
    font-size: .88rem;
}
.hp-pro-meta strong {
    color: #181818;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
}
.hp-pro-card-divider {
    border-top: 1px solid #ededed;
    margin: 24px 0;
}
.hp-pro-skills {
    align-content: start;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 82px;
}
.hp-pro-skills span {
    background: #f4f4f5;
    border-radius: 8px;
    color: #666;
    display: inline-flex;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.28;
    padding: 8px 14px;
}
.hp-pro-card-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 48px;
    margin-top: auto;
    padding-top: 22px;
}
.hp-pro-profile-btn {
    align-items: center;
    background: #08a86f;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 900;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    text-decoration: none;
}
.hp-pro-profile-btn:hover,
.hp-pro-profile-btn:focus-visible {
    background: #078d5f;
    color: #fff;
}
.hp-pro-favorite-btn {
    align-items: center;
    background: #f7f7f8;
    border: 0;
    border-radius: 8px;
    color: #aaa;
    display: inline-flex;
    font-size: 1.12rem;
    justify-content: center;
    min-height: 52px;
    width: 100%;
}
.hp-pro-favorite-btn:hover {
    background: #fff0ec;
    color: #f0542c;
}
.hp-pro-favorite-btn.saved {
    background: #fff0ec;
    color: #ef4444;
}
.hp-pros-more-wrap {
    margin-top: 36px;
    text-align: center;
}
.hp-pros-more-btn {
    align-items: center;
    background: #0d3292;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 900;
    justify-content: center;
    min-height: 52px;
    min-width: 190px;
    padding: 14px 26px;
}
.hp-pros-more-btn:hover,
.hp-pros-more-btn:focus-visible {
    background: #092878;
    color: #fff;
}

/* Full categories page */
.hp-categories-page {
    background: #fff;
    padding: 92px 0 108px;
}
.hp-categories-page .container {
    max-width: 1240px;
}
.hp-categories-page-header {
    margin: 0 auto 54px;
    max-width: 880px;
    text-align: center;
}
.hp-categories-page-header span {
    color: #08a86f;
    display: block;
    font-size: .95rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.hp-categories-page-header h1 {
    color: #0d3292;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0 0 18px;
}
.hp-categories-page-header h1 strong {
    color: #08a86f;
    font-weight: inherit;
}
.hp-categories-page-header p {
    color: #777;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 auto;
}
.hp-categories-page-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hp-category-group {
    background: #fff;
    border: 2px dotted #0d3292;
    border-radius: 16px;
    padding: 24px;
}
.hp-category-group-head {
    align-items: center;
    color: #0d3292;
    display: flex;
    font-size: 1.08rem;
    font-weight: 900;
    gap: 14px;
    line-height: 1.25;
    margin-bottom: 18px;
    text-decoration: none;
}
.hp-category-group-head:hover {
    color: #08a86f;
}
.hp-category-group-icon {
    color: currentColor;
    flex-shrink: 0;
    height: 42px;
    width: 42px;
}
.hp-category-group-icon svg {
    display: block;
    height: 100%;
    width: 100%;
}
.hp-category-child-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hp-category-child-list a {
    background: #f4f4f5;
    border-radius: 8px;
    color: #242424;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.25;
    padding: 9px 12px;
    text-decoration: none;
}
.hp-category-child-list a:hover {
    background: #0d3292;
    color: #fff;
}

@media (max-width: 1100px) {
    .hp-categories-header h2 { font-size: 2.45rem; }
    .hp-categories-grid { gap: 18px; }
    .hp-category-card {
        min-height: 260px;
    }
    .hp-category-content {
        padding: 20px;
    }
    .hp-category-name { font-size: 1.18rem; }
    .hp-signup-cta-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 860px;
    }
    .hp-signup-cta-card {
        grid-template-columns: minmax(0, 1fr) 230px;
    }
    .hp-pros-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hp-pros-header h2 {
        font-size: 2.35rem;
    }
}

@media (max-width: 900px) {
    .hp-categories-section { padding: 72px 0; }
    .hp-categories-header { margin-bottom: 42px; }
    .hp-categories-header h2 { font-size: 2.15rem; }
    .hp-categories-header p { font-size: 1.02rem; }
    .hp-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hp-categories-page-grid {
        grid-template-columns: 1fr;
    }
    .hp-signup-cta-section { padding-bottom: 74px; }
    .hp-signup-cta-card {
        gap: 24px;
        min-height: 0;
        padding: 26px;
    }
    .hp-signup-cta-card h2 {
        font-size: 1.38rem;
        margin-bottom: 22px;
    }
    .hp-signup-cta-card p {
        font-size: 1.02rem;
        margin-bottom: 24px;
    }
    .hp-pros-section {
        padding: 48px 0 74px;
    }
    .hp-pros-header {
        text-align: left;
    }
    .hp-pros-header h2 {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    .hp-pros-header p {
        font-size: 1.02rem;
    }
}

@media (max-width: 480px) {
    .hp-categories-section { padding: 54px 0 58px; }
    .hp-categories-header h2 { font-size: 1.85rem; }
    .hp-categories-header p { font-size: .95rem; }
    .hp-categories-grid {
        gap: 14px;
        grid-template-columns: 1fr;
    }
    .hp-category-card {
        aspect-ratio: 16 / 11;
        min-height: 190px;
    }
    .hp-category-content {
        padding: 18px;
    }
    .hp-category-name {
        font-size: 1.08rem;
    }
    .hp-category-summary {
        font-size: .9rem;
    }
    .hp-category-action {
        font-size: .78rem;
        min-height: 32px;
        padding: 7px 11px;
    }
    .hp-categories-page {
        padding: 58px 0 70px;
    }
    .hp-categories-page-header h1 {
        font-size: 1.85rem;
    }
    .hp-categories-page-header p {
        font-size: .95rem;
    }
    .hp-category-group {
        padding: 20px;
    }
    .hp-signup-cta-section { padding-bottom: 58px; }
    .hp-signup-cta-grid { gap: 18px; }
    .hp-signup-cta-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .hp-signup-cta-card h2 {
        font-size: 1.22rem;
        margin-bottom: 16px;
    }
    .hp-signup-cta-card p {
        font-size: .96rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    .hp-signup-cta-btn {
        font-size: 1rem;
        min-height: 52px;
        min-width: 0;
        width: 100%;
    }
    .hp-signup-cta-img {
        aspect-ratio: 16 / 10;
        height: auto;
    }
    .hp-pros-section {
        padding: 42px 0 60px;
    }
    .hp-pros-header {
        margin-bottom: 26px;
    }
    .hp-pros-header h2 {
        font-size: 1.72rem;
    }
    .hp-pros-header p {
        font-size: .95rem;
    }
    .hp-pros-grid {
        gap: 16px;
        grid-template-columns: 1fr;
    }
    .hp-pro-card {
        border-radius: 14px;
        min-height: 0;
        padding: 16px;
    }
    .hp-pro-card-top {
        gap: 12px;
        grid-template-columns: 72px minmax(0, 1fr);
    }
    .hp-pro-avatar {
        height: 72px;
        width: 72px;
    }
    .hp-pro-views {
        grid-column: 2;
        justify-self: start;
        margin-top: 8px;
    }
    .hp-pro-name {
        font-size: .98rem;
    }
    .hp-pro-rating {
        font-size: .92rem;
    }
    .hp-pro-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
    }
    .hp-pro-meta strong {
        font-size: 1rem;
        text-align: left;
    }
    .hp-pro-card-divider {
        margin: 20px 0;
    }
    .hp-pro-skills {
        min-height: 0;
    }
    .hp-pro-skills span {
        font-size: .86rem;
    }
    .hp-pro-card-actions {
        grid-template-columns: minmax(0, 1fr) 48px;
        padding-top: 20px;
    }
    .hp-pro-profile-btn,
    .hp-pros-more-btn {
        font-size: 1rem;
    }
}
