:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --primary: #2563eb;
    --primary-700: #1d4ed8;
    --accent: #f59e0b;
    --success: #10b981;
    --ring: rgba(37, 99, 235, .2);
    --border: #e6eaf2;
    --shadow: 0 10px 30px rgba(20, 31, 55, 0.08);
    --radius: 14px;
}
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0b1220;
        --surface: #101a2e;
        --text: #e5e7eb;
        --muted: #9aa4b2;
        --border: #1f2a44;
        --shadow: 0 10px 30px rgba(0,0,0,.35);
    }
}

.clws-profile-page {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.clws-profile-page img { max-width: 100%; display: block; }
.clws-profile-page a { color: var(--primary); text-decoration: none; }
.clws-profile-page a:hover { text-decoration: underline; }
.clws-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.clws-section { padding: 72px 0; }
.clws-profile-page h1,.clws-profile-page h2,.clws-profile-page h3 { margin: 0 0 12px; letter-spacing: -0.02em; }
.clws-section-head { margin-bottom: 28px; }
.clws-section-sub { color: var(--muted); margin-top: 6px; }

/* NAVBAR */
.clws-navbar {
    position: sticky; top: 0; z-index: 50;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.clws-navbar .clws-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.clws-logo { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.clws-logo-mark {
    width: 36px; height: 36px; border-radius: 10px;
    background: conic-gradient(from 220deg, #2563eb, #10b981, #f59e0b, #2563eb);
    box-shadow: 0 8px 22px rgba(37,99,235,.28);
}
.clws-nav-links { display: flex; gap: 10px; align-items: center; }
.clws-nav-links a {
    color: var(--muted); font-weight: 600;
    padding: 8px 12px; border-radius: 10px;
}
.clws-nav-links a:hover { color: var(--text); text-decoration: none; }
.clws-cta-btn {
    background: var(--primary); color: #fff;
    padding: 10px 14px; border-radius: 12px; border: none;
    font-weight: 700; box-shadow: 0 10px 20px rgba(37,99,235,.25);
    transition: transform .2s ease, box-shadow .2s ease;
}
.clws-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 24px rgba(37,99,235,.3); cursor: pointer; }

/* HERO / ABOUT */
.clws-hero {
    padding: 96px 0 56px;
    background:
        radial-gradient(900px 300px at 10% 0%, rgba(37,99,235,.06), transparent),
        radial-gradient(900px 300px at 90% -10%, rgba(16,185,129,.08), transparent);
}
.clws-hero .clws-container {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
@media (max-width: 960px) { .clws-hero .clws-container { grid-template-columns: 1fr; } }
.clws-h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; }
.clws-lead { color: var(--muted); font-size: 18px; max-width: 680px; }
.clws-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 20px; }
.clws-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 10px; background: var(--surface); border: 1px solid var(--border);
    border-radius: 999px; box-shadow: var(--shadow); font-weight: 600; color: var(--text);
    font-size: 13px;
}
.clws-badge .clws-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.clws-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.clws-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 16px; border-radius: 12px; border: 1px solid transparent; font-weight: 700;
}
.clws-btn.clws-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(37,99,235,.25); }
.clws-btn.clws-primary:hover { filter: brightness(1.05); text-decoration: none; }
.clws-btn.clws-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.clws-btn.clws-ghost:hover { background: rgba(16,24,40,.04); text-decoration: none; }

.clws-about-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.clws-stat {
    display: flex; gap: 16px; align-items: center;
    padding: 12px; border-radius: 12px;
}
.clws-stat + .clws-stat { margin-top: 8px; }
.clws-stat .clws-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(37,99,235,.1);
    display: grid; place-items: center; color: var(--primary); font-weight: 800;
}
.clws-stat .clws-num { font-size: 24px; font-weight: 800; }
.clws-stat .clws-label { color: var(--muted); font-size: 14px; margin-top: -2px; }

/* HIGHLIGHTS */
.clws-highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .clws-highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .clws-highlights-grid { grid-template-columns: 1fr; } }
.clws-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px; box-shadow: var(--shadow); position: relative; overflow: hidden;
    transition: transform .2s ease;
}
.clws-card:hover { transform: translateY(-4px); }
.clws-card .clws-accent {
    position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), #22c55e, #f59e0b);
}
.clws-card .clws-ic {
    width: 40px; height: 40px; border-radius: 10px; background: rgba(37,99,235,.08);
    display: grid; place-items: center; color: var(--primary); font-weight: 800;
}
.clws-card h3 { margin: 10px 0 6px; font-size: 18px; }
.clws-card p { margin: 0; color: var(--muted); font-size: 14px; }
.clws-card .clws-big { font-size: 34px; font-weight: 800; margin-top: 10px; }

/* TEAM */
.clws-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .clws-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .clws-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .clws-team-grid { grid-template-columns: 1fr; } }
.clws-team-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px; box-shadow: var(--shadow); text-align: center; transition: transform .2s ease;
}
.clws-team-card:hover { transform: translateY(-4px); }
.clws-team-card img.clws-avatar {
    width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px;
    border: 4px solid #fff; box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.clws-role { color: var(--muted); font-size: 14px; }
.clws-social { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.clws-social a {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted);
}
.clws-social a:hover { background: rgba(37,99,235,.08); color: var(--primary); text-decoration: none; }

/* FAQ */
.clws-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 900px) { .clws-faq { grid-template-columns: 1fr; } }
.clws-faq details {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px 16px; box-shadow: var(--shadow);
}
.clws-faq summary {
    cursor: pointer; font-weight: 700; display: flex; align-items: center; justify-content: space-between; list-style: none;
}
.clws-faq summary::-webkit-details-marker { display: none; }
.clws-faq details[open] { border-color: rgba(37,99,235,.5); box-shadow: 0 8px 24px rgba(37,99,235,.1); }
.clws-faq .clws-content { margin-top: 8px; color: var(--muted); }

/* CONTACT */
.clws-contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 24px; }
@media (max-width: 900px) { .clws-contact-grid { grid-template-columns: 1fr; } }
.clws-contact-card, .clws-form-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px; box-shadow: var(--shadow);
}
.clws-contact-card div { font-size: 18px; }
.clws-list { display: grid; gap: 12px; margin-top: 8px; }
.clws-list-item { display: flex; gap: 10px; align-items: flex-start; }
.clws-ico { width: 28px; height: 28px; border-radius: 8px; background: rgba(37,99,235,.1); color: var(--primary); display: grid; place-items: center; font-size: 16px; }

/* REVIEWS */
.clws-reviews-grid { display: grid; gap: 20px; }
.clws-review-item {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px; box-shadow: var(--shadow);
}
.clws-review-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.clws-review-stars { display: flex; gap: 2px; }
.clws-review-star { color: #fbbf24; font-size: 16px; }
.clws-review-star.empty { color: #d1d5db; }

/* USER PROFILE CARD */
.clws-user-profile-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow); text-align: center;
}
.clws-user-avatar {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px;
    border: 4px solid #fff; box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.clws-user-name { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.clws-user-role { color: var(--muted); margin-bottom: 12px; }
.clws-user-bio { color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.clws-badge-verified {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 8px; background: rgba(16,185,129,.1); color: var(--success);
    border-radius: 999px; font-size: 12px; font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .clws-nav-links { display: none; }
    .clws-cta-btn { padding: 8px 12px; font-size: 14px; }
}

:where(.wp-site-blocks *:focus) {
    outline-style: none !important;
}