:root {
    --expert-ink: #203129;
    --expert-muted: #6b756f;
    --expert-soft: #f4f7f0;
    --expert-paper: #fffdf8;
    --expert-line: #e4eadf;
    --expert-green: #203f2b;
    --expert-sage: #9fb59e;
    --expert-teal: #2f7d65;
    --expert-gold: #d79637;
    --expert-shadow: 0 24px 70px rgba(31, 54, 40, .14);
}

.expert-city-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 0;
}

.expert-city-row span {
    color: var(--expert-muted);
    font-weight: 800;
}

.expert-city-chip {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--expert-line);
    border-radius: 999px;
    background: #fff;
    color: var(--expert-ink);
    font-weight: 800;
    padding: 10px 16px;
}

.expert-city-chip.is-active,
.expert-city-chip:hover {
    background: var(--expert-teal);
    color: #fff;
}

.expert-tips-hero,
.expert-tip-detail {
    padding: 42px 0 22px;
    background: linear-gradient(180deg, rgba(230, 239, 229, .88), rgba(250, 252, 247, .72));
}

.expert-tips-hero__grid,
.expert-tip-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.expert-tips-hero h1,
.expert-tip-detail h1 {
    max-width: 900px;
    margin: 10px 0 14px;
    color: var(--expert-ink);
    font-size: clamp(42px, 6vw, 78px);
    line-height: .95;
}

.expert-tips-hero p,
.expert-tip-detail__main > p {
    max-width: 760px;
    color: var(--expert-muted);
    font-size: 21px;
    line-height: 1.5;
}

.expert-tips-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.expert-tips-profile-card {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    background: #fff;
    color: var(--expert-ink);
    text-decoration: none;
    box-shadow: 0 18px 48px rgba(24, 54, 38, .08);
}

.expert-tips-profile-card img {
    width: 96px;
    height: 96px;
    border-radius: 26px;
    object-fit: cover;
}

.expert-tips-profile-card strong {
    font-size: 24px;
    line-height: 1.1;
}

.expert-tips-profile-card span,
.expert-tips-profile-card small {
    color: var(--expert-muted);
    font-weight: 800;
}

.expert-tip-grid--list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expert-tip-card h3 a {
    color: inherit;
    text-decoration: none;
}

.expert-tip-detail__main {
    min-width: 0;
}

.expert-back-link {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--expert-teal);
    font-weight: 900;
    text-decoration: none;
}

.expert-tip-detail__media {
    width: min(100%, 920px);
    aspect-ratio: 16 / 9;
    max-height: 420px;
    margin: 24px auto 28px;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(24, 54, 38, .12);
}

.expert-tip-detail__image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 420px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.expert-tip-detail__body {
    padding: 34px;
    border: 1px solid var(--expert-line);
    border-radius: 30px;
    background: #fff;
    color: var(--expert-ink);
    font-size: 20px;
    line-height: 1.75;
    max-width: 100%;
    overflow: hidden;
    overflow-wrap: anywhere;
}

.expert-tip-detail__body img,
.expert-tip-detail__body video,
.expert-tip-detail__body canvas,
.expert-tip-detail__body svg {
    display: block;
    width: auto !important;
    max-width: min(100%, 820px) !important;
    max-height: 560px;
    height: auto !important;
    margin: 18px auto;
    object-fit: contain;
    border-radius: 18px;
}

.expert-tip-detail__body iframe,
.expert-tip-detail__body embed,
.expert-tip-detail__body object {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 260px;
    aspect-ratio: 16 / 9;
    height: auto !important;
    margin: 22px auto;
    border: 0;
    border-radius: 18px;
}

.expert-tip-detail__body figure {
    width: 100% !important;
    max-width: 100% !important;
    margin: 18px auto;
}

.expert-tip-detail__body figure img {
    margin: 0 auto;
}

.expert-tip-detail__body figcaption {
    margin-top: 10px;
    color: var(--expert-muted);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.expert-tip-detail__body table {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
    border-collapse: collapse;
}

.expert-tip-detail__body p,
.expert-tip-detail__body div,
.expert-tip-detail__body span,
.expert-tip-detail__body li {
    max-width: 100%;
}

.expert-tip-detail__side {
    position: sticky;
    top: 110px;
}

.expert-category-grid,
.expert-authority-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.expert-category-card,
.expert-authority-card {
    border: 1px solid var(--expert-line);
    border-radius: 24px;
    background: #fff;
    color: var(--expert-ink);
    text-align: left;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(24, 54, 38, .06);
}

a.expert-category-card {
    display: block;
    text-decoration: none;
}

.expert-category-card.is-active {
    border-color: rgba(47, 125, 101, .45);
    background: linear-gradient(180deg, rgba(231, 241, 232, .95), #fff);
    box-shadow: 0 18px 50px rgba(24, 54, 38, .12);
}

.expert-question-count {
    display: inline-flex;
    margin-top: 8px;
    color: var(--expert-muted);
    font-weight: 900;
}

.expert-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.expert-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid var(--expert-line);
    border-radius: 999px;
    background: #fff;
    color: var(--expert-ink);
    font-weight: 900;
    text-decoration: none;
}

.expert-pagination a.is-active {
    background: var(--expert-green);
    border-color: var(--expert-green);
    color: #fff;
}

.expert-pagination a.is-disabled {
    opacity: .42;
    pointer-events: none;
}

button.expert-category-card {
    cursor: pointer;
}

.expert-category-card strong,
.expert-authority-card h3 {
    display: block;
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.15;
}

.expert-category-card small {
    color: var(--expert-muted);
    font-weight: 800;
    line-height: 1.4;
}

.expert-authority-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--expert-soft);
    color: var(--expert-teal);
}

.expert-authority-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--expert-muted);
    font-weight: 800;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .expert-tips-hero__grid,
    .expert-tip-detail__grid {
        grid-template-columns: 1fr;
    }

    .expert-tip-detail__side {
        position: static;
    }

    .expert-tip-grid--list,
    .expert-category-grid,
    .expert-authority-grid {
        grid-template-columns: 1fr;
    }

    .expert-tips-hero,
    .expert-tip-detail {
        padding: 22px 0;
    }

    .expert-tips-hero h1,
    .expert-tip-detail h1 {
        font-size: 42px;
    }

    .expert-tips-hero p,
    .expert-tip-detail__main > p,
    .expert-tip-detail__body {
        font-size: 17px;
    }

    .expert-tip-detail__body {
        padding: 18px;
        border-radius: 22px;
    }

    .expert-tip-detail__media {
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: 260px;
        border-radius: 22px;
        margin: 18px 0;
    }

    .expert-tip-detail__image {
        max-height: 260px;
        object-fit: contain;
    }

    .expert-tip-detail__body img,
    .expert-tip-detail__body video,
    .expert-tip-detail__body canvas,
    .expert-tip-detail__body svg,
    .expert-tip-detail__body iframe,
    .expert-tip-detail__body embed,
    .expert-tip-detail__body object {
        border-radius: 14px;
        margin: 16px auto;
    }

    .expert-tip-detail__body img,
    .expert-tip-detail__body video,
    .expert-tip-detail__body canvas,
    .expert-tip-detail__body svg {
        width: auto !important;
        max-width: 100% !important;
        max-height: 420px;
        object-fit: contain;
    }

    .expert-tip-detail__body iframe,
    .expert-tip-detail__body embed,
    .expert-tip-detail__body object {
        min-height: 190px;
    }
}

* {
    box-sizing: border-box;
}

body.expert-directory-body {
    margin: 0;
    color: var(--expert-ink);
    background:
        radial-gradient(circle at 88% 10%, rgba(159, 181, 158, .28), transparent 32%),
        linear-gradient(180deg, #f8faf4 0%, #fffdf8 48%, #eef5ed 100%);
    font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
}

.expert-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.expert-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.expert-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 253, 248, .86);
    border-bottom: 1px solid rgba(228, 234, 223, .75);
}

.expert-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 78px;
}

.expert-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--expert-green);
    font-weight: 800;
    letter-spacing: -.03em;
    font-size: 24px;
}

.expert-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.expert-nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
}

.expert-nav__links a {
    color: var(--expert-muted);
    text-decoration: none;
    font-weight: 700;
}

.expert-nav__links a:hover {
    color: var(--expert-green);
}

.expert-nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    width: 54px;
    height: 54px;
    border: 1px solid var(--expert-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 26px rgba(31, 54, 40, .08);
}

.expert-nav__toggle span {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--expert-green);
}

.expert-pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    color: #fff;
    background: var(--expert-green);
    box-shadow: 0 14px 34px rgba(32, 63, 43, .18);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.expert-pill-button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.expert-pill-button--ghost {
    background: rgba(32, 63, 43, .08);
    box-shadow: none;
    color: var(--expert-green);
}

.expert-pill-button--ghost:hover {
    color: var(--expert-green);
}

.expert-nav__guest-actions,
.expert-nav__session {
    display: flex;
    align-items: center;
    gap: 12px;
}

.expert-nav__session-link {
    color: var(--expert-green);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.expert-nav__identity {
    align-items: center;
    color: var(--expert-green);
    display: inline-flex;
    gap: 10px;
    max-width: 260px;
    text-decoration: none;
}

.expert-nav__identity img {
    background: #eef5f1;
    border-radius: 50%;
    flex: 0 0 42px;
    height: 42px;
    object-fit: cover;
    width: 42px;
}

.expert-nav__identity span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.expert-nav__identity strong,
.expert-nav__identity small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.expert-nav__identity strong {
    color: var(--expert-green);
    font-size: 14px;
    font-weight: 900;
}

.expert-nav__identity small {
    color: var(--expert-muted);
    font-size: 12px;
    font-weight: 700;
}

.expert-hero {
    padding: 64px 0 34px;
}

.expert-home-app {
    padding: 34px 0 18px;
}

.expert-home-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.expert-home-top h1 {
    margin: 16px 0 10px;
    max-width: 760px;
    color: var(--expert-ink);
    font-size: clamp(36px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -.06em;
}

.expert-home-top p {
    margin: 0;
    max-width: 650px;
    color: #5f6d65;
    font-size: 18px;
    line-height: 1.48;
}

.expert-home-create {
    align-items: center;
    background: var(--expert-green);
    border-radius: 28px;
    color: #fff;
    display: inline-flex;
    font-size: 16px;
    font-weight: 900;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    text-decoration: none;
    white-space: nowrap;
}

.expert-home-create:hover {
    color: #fff;
}

.expert-mobile-search {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(228, 234, 223, .9);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(31, 54, 40, .08);
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding: 12px;
}

.expert-mobile-search__bar {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(228, 234, 223, .92);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 44px;
    min-height: 56px;
    padding: 0 6px 0 16px;
}

.expert-mobile-search__pin {
    border: 3px solid var(--expert-teal);
    border-radius: 50% 50% 50% 0;
    display: block;
    height: 16px;
    transform: rotate(-45deg);
    width: 16px;
}

.expert-mobile-search__bar input,
.expert-mobile-search__filters input,
.expert-mobile-search__filters select {
    border: 0;
    color: var(--expert-ink);
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    outline: 0;
    width: 100%;
}

.expert-mobile-search__bar button {
    align-items: center;
    background: rgba(32, 63, 43, .08);
    border: 0;
    border-radius: 16px;
    color: var(--expert-green);
    display: inline-flex;
    font-size: 22px;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.expert-mobile-search__filters {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) minmax(160px, .55fr);
}

.expert-mobile-search__filters input,
.expert-mobile-search__filters select {
    background: #f7faf5;
    border: 1px solid rgba(228, 234, 223, .8);
    border-radius: 18px;
    min-height: 48px;
    padding: 0 14px;
}

.expert-home-categories {
    display: flex;
    gap: 12px;
    margin: 18px -4px 0;
    overflow-x: auto;
    padding: 4px 4px 8px;
    scrollbar-width: none;
}

.expert-home-categories::-webkit-scrollbar {
    display: none;
}

.expert-home-category {
    appearance: none;
    align-items: center;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(228, 234, 223, .9);
    border-radius: 20px;
    color: #506058;
    cursor: pointer;
    display: grid;
    flex: 0 0 94px;
    gap: 7px;
    justify-items: center;
    min-height: 86px;
    padding: 10px 8px;
}

.expert-home-category span {
    align-items: center;
    background: rgba(32, 63, 43, .08);
    border-radius: 16px;
    color: var(--expert-green);
    display: inline-flex;
    font-size: 20px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.expert-ui-icon {
    position: relative;
}

.expert-ui-icon::before,
.expert-ui-icon::after {
    content: "";
    position: absolute;
}

.expert-ui-icon--home::before {
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 2px;
    height: 12px;
    left: 13px;
    top: 18px;
    width: 14px;
}

.expert-ui-icon--home::after {
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    height: 12px;
    left: 14px;
    top: 11px;
    transform: rotate(45deg);
    width: 12px;
}

.expert-ui-icon--filter::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    height: 17px;
    left: 11px;
    top: 10px;
    width: 17px;
}

.expert-ui-icon--filter::after {
    background: currentColor;
    border-radius: 999px;
    height: 9px;
    left: 27px;
    top: 26px;
    transform: rotate(-45deg);
    width: 2px;
}

.expert-ui-icon--question::before {
    content: "?";
    font-size: 21px;
    font-weight: 900;
    inset: auto;
    left: 15px;
    line-height: 1;
    top: 10px;
}

.expert-ui-icon--star::before {
    background: currentColor;
    clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 90%, 50% 68%, 21% 90%, 32% 55%, 2% 34%, 39% 34%);
    height: 24px;
    left: 9px;
    top: 9px;
    width: 24px;
}

.expert-ui-icon--tip::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    height: 18px;
    left: 10px;
    top: 9px;
    width: 18px;
}

.expert-ui-icon--tip::after {
    background: currentColor;
    border-radius: 999px;
    box-shadow: 0 5px 0 currentColor;
    height: 2px;
    left: 15px;
    top: 29px;
    width: 12px;
}

.expert-ui-icon--calendar::before {
    border: 2px solid currentColor;
    border-radius: 4px;
    height: 19px;
    left: 10px;
    top: 12px;
    width: 21px;
}

.expert-ui-icon--calendar::after {
    background: currentColor;
    box-shadow: 7px 0 0 currentColor, 14px 0 0 currentColor, 0 7px 0 currentColor, 7px 7px 0 currentColor;
    height: 3px;
    left: 14px;
    top: 20px;
    width: 3px;
}

.expert-ui-icon--shield::before {
    border: 2px solid currentColor;
    border-radius: 12px 12px 15px 15px;
    height: 23px;
    left: 10px;
    top: 8px;
    width: 20px;
}

.expert-ui-icon--shield::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    height: 9px;
    left: 18px;
    top: 13px;
    transform: rotate(45deg);
    width: 5px;
}

.expert-home-category strong {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.05;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.expert-home-category.is-active,
.expert-home-category:hover {
    background: var(--expert-green);
    color: #fff;
}

.expert-home-category.is-active span,
.expert-home-category:hover span {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.expert-home-stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 10px;
}

.expert-home-stats div {
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(228, 234, 223, .82);
    border-radius: 20px;
    padding: 14px;
}

.expert-home-stats strong {
    color: var(--expert-green);
    display: block;
    font-size: 24px;
    line-height: 1;
}

.expert-home-stats span {
    color: var(--expert-muted);
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-top: 5px;
}

.expert-home-intent {
    padding: 10px 0 20px;
}

.expert-home-intent__head {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.expert-home-intent__head span {
    color: var(--expert-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.expert-home-intent__head h2 {
    color: var(--expert-ink);
    flex: 1;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.05;
    margin: 0;
    text-align: right;
}

.expert-home-intent__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expert-home-intent-card {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(228, 234, 223, .9);
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(31, 54, 40, .07);
    color: var(--expert-ink);
    display: grid;
    gap: 7px;
    min-height: 142px;
    padding: 16px;
    text-decoration: none;
}

.expert-home-intent-card span {
    align-items: center;
    background: rgba(32, 63, 43, .08);
    border-radius: 16px;
    color: var(--expert-green);
    display: inline-flex;
    font-size: 21px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.expert-home-intent-card strong {
    color: var(--expert-ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
}

.expert-home-intent-card small {
    color: var(--expert-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.expert-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
    gap: 42px;
    align-items: center;
}

.expert-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #255742;
    background: rgba(159, 181, 158, .18);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
}

.expert-hero h1 {
    margin: 22px 0 16px;
    max-width: 760px;
    color: var(--expert-ink);
    font-size: clamp(42px, 5vw, 72px);
    line-height: .95;
    letter-spacing: -.07em;
}

.expert-hero p {
    margin: 0;
    max-width: 640px;
    color: #5f6d65;
    font-size: 20px;
    line-height: 1.55;
}

.expert-search {
    margin-top: 30px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr auto;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    box-shadow: var(--expert-shadow);
}

.expert-search__field {
    padding: 14px 18px;
    border-radius: 20px;
    background: #f7faf5;
    border: 1px solid transparent;
}

.expert-search__field span {
    display: block;
    color: #8a948d;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.expert-search__field strong {
    display: block;
    margin-top: 4px;
    color: var(--expert-ink);
    font-size: 16px;
}

.expert-search__field input,
.expert-search__field select {
    display: block;
    width: 100%;
    margin-top: 4px;
    border: 0;
    outline: 0;
    color: var(--expert-ink);
    background: transparent;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
}

.expert-search__field input::placeholder {
    color: #a0aaa3;
}

.expert-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.expert-chip {
    appearance: none;
    border: 1px solid rgba(159, 181, 158, .34);
    background: rgba(255, 255, 255, .72);
    color: #46544c;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
}

.expert-chip.is-active,
.expert-chip:hover {
    color: #fff;
    background: var(--expert-green);
    border-color: var(--expert-green);
}

.expert-spotlight {
    position: relative;
    min-height: 500px;
}

.expert-floating-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 26px;
    background: linear-gradient(150deg, #ffffff, #edf5ec);
    border: 1px solid rgba(228, 234, 223, .85);
    box-shadow: var(--expert-shadow);
}

.expert-floating-card:before {
    content: "";
    position: absolute;
    inset: auto -80px -90px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(47, 125, 101, .16);
}

.expert-preview-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 26px;
    background: #e9eee6;
}

.expert-preview-meta {
    position: relative;
    margin-top: -42px;
    margin-left: 18px;
    margin-right: 18px;
    padding: 18px;
    background: rgba(255, 253, 248, .94);
    border: 1px solid rgba(228, 234, 223, .9);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(31, 54, 40, .12);
}

.expert-preview-meta h3 {
    margin: 4px 0 4px;
    font-size: 22px;
    letter-spacing: -.03em;
}

.expert-stars {
    color: var(--expert-gold);
    letter-spacing: 1px;
    font-weight: 900;
}

.expert-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.expert-proof {
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(228, 234, 223, .7);
}

.expert-proof strong {
    display: block;
    font-size: 22px;
    color: var(--expert-green);
}

.expert-proof span {
    display: block;
    margin-top: 2px;
    color: var(--expert-muted);
    font-size: 12px;
    font-weight: 800;
}

.expert-section {
    padding: 34px 0;
}

.expert-section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.expert-section__head h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    letter-spacing: -.05em;
}

.expert-section__head p {
    margin: 8px 0 0;
    color: var(--expert-muted);
}

.expert-section-link {
    align-items: center;
    background: rgba(32, 63, 43, .08);
    border: 1px solid rgba(32, 63, 43, .1);
    border-radius: 999px;
    color: var(--expert-green);
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    text-decoration: none;
    white-space: nowrap;
}

.expert-section-link:hover {
    color: var(--expert-green);
    background: rgba(32, 63, 43, .12);
}

.expert-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
}

.expert-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.expert-home-layout .expert-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.expert-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 50px rgba(31, 54, 40, .08);
}

.expert-card__photo {
    width: 96px;
    height: 96px;
    border-radius: 26px;
    object-fit: cover;
    background: #eef3ec;
}

.expert-card h3 {
    margin: 0;
    color: var(--expert-ink);
    font-size: 22px;
    letter-spacing: -.035em;
}

.expert-card h3 a {
    color: inherit;
    text-decoration: none;
}

.expert-card__role {
    margin-top: 3px;
    color: var(--expert-muted);
    font-weight: 700;
}

.expert-card__office {
    margin-top: 8px;
    color: #526158;
    font-size: 14px;
}

.expert-card__rating {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    font-weight: 900;
}

.expert-card__rating span:last-child {
    color: var(--expert-muted);
    font-weight: 700;
}

.expert-card__rating a {
    color: var(--expert-muted);
    font-weight: 800;
    text-decoration: none;
}

.expert-card__desc {
    margin: 12px 0;
    color: #65736b;
    line-height: 1.45;
}

.expert-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.expert-card__chips span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #386c53;
    background: #edf6ed;
    font-size: 12px;
    font-weight: 900;
}

.expert-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.expert-card__actions .expert-action {
    flex: 0 0 auto;
    min-width: 148px;
}

.expert-home-card {
    border-radius: 24px;
    grid-template-columns: 108px minmax(0, 1fr);
    padding: 16px;
}

.expert-home-card .expert-card__photo {
    border-radius: 20px;
    height: 108px;
    width: 108px;
}

.expert-home-card > div {
    min-width: 0;
}

.expert-home-card h3 {
    font-size: 21px;
    line-height: 1.08;
}

.expert-home-card .expert-card__role,
.expert-home-card .expert-card__office {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert-home-card .expert-card__role {
    -webkit-line-clamp: 2;
}

.expert-home-card .expert-card__office {
    -webkit-line-clamp: 2;
}

.expert-home-card .expert-card__desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.expert-home-card .expert-card__chips {
    max-height: 30px;
    overflow: hidden;
}

.expert-home-card .expert-card__actions {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expert-home-card .expert-card__actions .expert-action {
    font-size: 13px;
    min-height: 36px;
    min-width: 0;
    padding: 8px 6px;
    width: 100%;
}

.expert-side-kicker {
    color: var(--expert-teal);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.expert-home-top-profiles .expert-rank {
    color: var(--expert-ink);
    grid-template-columns: 30px 48px minmax(0, 1fr);
    text-decoration: none;
}

.expert-home-top-profiles .expert-rank img {
    background: #eef3ec;
    border-radius: 16px;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.expert-home-top-profiles .expert-rank__number {
    height: 28px;
    width: 28px;
}

.expert-home-trust-card {
    background: #f2f6ee;
    border-radius: 22px;
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 16px;
}

.expert-home-trust-card strong {
    color: var(--expert-ink);
    font-size: 17px;
    font-weight: 900;
}

.expert-home-trust-card span {
    color: var(--expert-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.expert-home-trust-card a {
    align-items: center;
    background: var(--expert-green);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 40px;
    text-decoration: none;
}

.expert-featured-row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expert-featured-mini {
    background: #fff;
    border: 1px solid var(--expert-line);
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(31, 54, 40, .07);
    color: var(--expert-ink);
    display: grid;
    gap: 8px;
    padding: 12px;
    text-decoration: none;
}

.expert-featured-mini img {
    aspect-ratio: 1.35;
    background: #eef3ec;
    border-radius: 18px;
    object-fit: cover;
    width: 100%;
}

.expert-featured-mini strong {
    color: var(--expert-ink);
    font-size: 15px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.expert-featured-mini span {
    color: var(--expert-muted);
    font-size: 13px;
    font-weight: 800;
}

.expert-tip-mini strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.expert-home-trust-strip {
    background: rgba(255, 253, 248, .94);
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    box-shadow: 0 14px 36px rgba(31, 54, 40, .06);
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 8px 0 10px;
    padding: 16px;
}

.expert-home-trust-strip div {
    align-items: center;
    display: grid;
    gap: 4px 12px;
    grid-template-columns: 42px minmax(0, 1fr);
}

.expert-home-trust-strip .expert-ui-icon {
    background: rgba(32, 63, 43, .08);
    border-radius: 16px;
    color: var(--expert-green);
    grid-row: span 2;
    height: 42px;
    width: 42px;
}

.expert-home-trust-strip strong {
    color: var(--expert-ink);
    font-size: 14px;
    font-weight: 900;
}

.expert-home-trust-strip small {
    color: var(--expert-muted);
    font-size: 12px;
    font-weight: 700;
}

.expert-action {
    flex: 1 1 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--expert-line);
    color: var(--expert-green);
    background: #fff;
    text-decoration: none;
    font-weight: 900;
}

.expert-action--primary {
    color: #fff;
    background: var(--expert-green);
    border-color: var(--expert-green);
}

.expert-action--ghost {
    color: var(--expert-green);
    background: rgba(255, 255, 255, .7);
}

.expert-empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px dashed rgba(47, 125, 101, .32);
    border-radius: 28px;
    background: rgba(255, 255, 255, .72);
    text-align: center;
}

.expert-empty-state h3 {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.expert-empty-state p {
    margin: 0 0 18px;
    color: var(--expert-muted);
}

.expert-side {
    position: sticky;
    top: 98px;
    align-self: start;
    padding: 20px;
    border: 1px solid var(--expert-line);
    border-radius: 30px;
    background: rgba(255, 253, 248, .92);
    box-shadow: 0 18px 50px rgba(31, 54, 40, .08);
}

.expert-side h3 {
    margin: 0 0 16px;
    font-size: 22px;
}

.expert-rank {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--expert-line);
}

.expert-rank:first-of-type {
    border-top: 0;
}

.expert-rank__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #fff;
    background: var(--expert-teal);
    font-weight: 900;
}

.expert-rank strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expert-rank span {
    color: var(--expert-muted);
    font-size: 13px;
}

.expert-qa {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.expert-question {
    min-height: 190px;
    padding: 20px;
    border-radius: 26px;
    border: 1px solid var(--expert-line);
    background: #fff;
    box-shadow: 0 16px 40px rgba(31, 54, 40, .07);
}

.expert-question span {
    color: var(--expert-teal);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.expert-question p {
    color: var(--expert-ink);
    line-height: 1.45;
    font-weight: 800;
}

.expert-footer-cta {
    margin: 42px 0 70px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 34px;
    color: #fff;
    background: linear-gradient(135deg, #203f2b, #2f7d65);
    box-shadow: var(--expert-shadow);
}

.expert-footer-cta h2 {
    margin: 0 0 6px;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -.05em;
}

.expert-footer-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.expert-footer-cta .expert-pill-button {
    color: var(--expert-green);
    background: #fff;
}

.expert-mobile-tabs {
    display: none;
}

.expert-profile-hero {
    padding: 38px 0 22px;
}

.expert-profile-hero__grid {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.expert-profile-photo-card {
    position: relative;
    padding: 14px;
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--expert-shadow);
}

.expert-profile-photo-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 22px;
    background: #eef3ec;
}

.expert-profile-mobile-card,
.expert-profile-mobile-actions {
    display: none;
}

.expert-profile-score {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #f7faf5;
}

.expert-profile-score strong {
    color: var(--expert-green);
    font-size: 20px;
}

.expert-profile-score small {
    color: var(--expert-muted);
    font-weight: 800;
}

.expert-profile-summary {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(228, 234, 223, .85);
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 10%, rgba(47, 125, 101, .12), transparent 34%),
        rgba(255, 253, 248, .9);
    box-shadow: 0 20px 60px rgba(31, 54, 40, .1);
}

.expert-profile-summary h1 {
    margin: 16px 0 8px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.04em;
}

.expert-profile-summary p {
    color: var(--expert-muted);
    font-size: 17px;
    line-height: 1.52;
    max-width: 780px;
}

.expert-profile-subtitle {
    margin: 0 0 12px;
    color: var(--expert-teal) !important;
    font-weight: 900;
}

.expert-profile-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
}

.expert-profile-facts span {
    padding: 9px 12px;
    border-radius: 999px;
    color: #3d4b43;
    background: #eef6ee;
    font-weight: 800;
}

.expert-profile-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.expert-profile-trust span {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--expert-line);
    border-radius: 18px;
    color: var(--expert-muted);
    font-size: 13px;
    font-weight: 800;
    padding: 12px;
}

.expert-profile-trust strong {
    color: var(--expert-green);
    display: block;
    font-size: 22px;
    line-height: 1;
}

.expert-profile-actions {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(118px, .55fr));
    gap: 10px;
    margin-top: 24px;
}

.expert-profile-actions .expert-action,
.expert-profile-actions .expert-pill-button {
    flex: none;
    gap: 8px;
    min-height: 48px;
    padding-left: 14px;
    padding-right: 14px;
}

.expert-profile-actions .expert-action {
    background: rgba(255, 255, 255, .78);
}

.expert-profile-primary-cta {
    font-size: 16px;
}

.expert-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.expert-service-card {
    min-height: 240px;
    padding: 24px;
    border: 1px solid var(--expert-line);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(31, 54, 40, .08);
}

.expert-service-card span {
    color: var(--expert-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.expert-service-card h3 {
    margin: 10px 0 8px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.expert-service-card p {
    color: var(--expert-muted);
    line-height: 1.5;
}

.expert-service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--expert-line);
}

.expert-service-card__footer strong {
    color: var(--expert-green);
    font-size: 22px;
}

.expert-service-card__footer a {
    color: #fff;
    background: var(--expert-green);
    border-radius: 999px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 900;
}

.expert-tip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.expert-tip-card,
.expert-tip-empty {
    overflow: hidden;
    border: 1px solid var(--expert-line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(31, 54, 40, .08);
}

.expert-tip-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #eef3ec;
}

.expert-tip-card div,
.expert-tip-empty {
    padding: 22px;
}

.expert-tip-card span,
.expert-tip-empty span {
    color: var(--expert-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.expert-tip-card h3,
.expert-tip-empty h3 {
    margin: 10px 0 8px;
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.expert-tip-card p,
.expert-tip-empty p {
    min-height: 66px;
    color: var(--expert-muted);
    line-height: 1.5;
}

.expert-tip-card a,
.expert-tip-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: var(--expert-green);
    text-decoration: none;
    font-weight: 900;
}

.expert-profile-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.expert-review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.expert-review-card {
    padding: 20px;
    border: 1px solid var(--expert-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 40px rgba(31, 54, 40, .07);
}

.expert-review-card.is-new {
    border-color: rgba(47, 125, 101, .32);
    box-shadow: 0 18px 44px rgba(47, 125, 101, .13);
}

.expert-review-card div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.expert-review-card h3 {
    color: var(--expert-ink);
    font-size: 16px;
    margin: 14px 0 6px;
}

.expert-review-card p {
    color: var(--expert-muted);
    line-height: 1.5;
}

.expert-review-card small {
    color: #8a948d;
    font-weight: 800;
}

.expert-profile-review-form {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.expert-profile-review-form label {
    color: var(--expert-ink);
    font-size: 13px;
    font-weight: 900;
}

.expert-profile-review-form input,
.expert-profile-review-form textarea {
    background: #fff;
    border: 1px solid var(--expert-line);
    border-radius: 14px;
    color: var(--expert-ink);
    font: inherit;
    outline: none;
    padding: 12px 14px;
    width: 100%;
}

.expert-profile-review-form input:focus,
.expert-profile-review-form textarea:focus {
    border-color: rgba(47, 125, 101, .42);
    box-shadow: 0 0 0 4px rgba(47, 125, 101, .09);
}

.expert-profile-rating-picker {
    display: flex;
    gap: 8px;
}

.expert-profile-rating-picker button {
    align-items: center;
    background: #eef3ef;
    border: 1px solid var(--expert-line);
    border-radius: 999px;
    color: #a8b3ad;
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.expert-profile-rating-picker button.is-active {
    background: rgba(245, 178, 74, .18);
    border-color: rgba(245, 178, 74, .38);
    color: var(--expert-gold);
}

.expert-profile-review-message {
    color: var(--expert-muted);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.expert-profile-review-message.is-success {
    color: var(--expert-teal);
}

.expert-profile-review-message.is-error {
    color: #b84545;
}

.expert-profile-review-note {
    background: rgba(47, 125, 101, .07);
    border: 1px solid rgba(47, 125, 101, .12);
    border-radius: 18px;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
}

.expert-profile-review-note strong,
.expert-profile-review-note span {
    display: block;
}

.expert-profile-review-note span {
    color: var(--expert-muted);
}

.expert-side-divider {
    border: 0;
    border-top: 1px solid var(--expert-line);
    margin: 0 0 24px;
}

.expert-register-wrap {
    padding: 58px 0 80px;
}

.expert-register-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(380px, .7fr);
    gap: 34px;
    align-items: center;
}

.expert-register-intro h1 {
    margin: 20px 0 14px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.07em;
}

.expert-register-intro p {
    max-width: 620px;
    color: var(--expert-muted);
    font-size: 20px;
    line-height: 1.55;
}

.expert-register-card {
    padding: 30px;
    border: 1px solid var(--expert-line);
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--expert-shadow);
}

.expert-register-card h2 {
    margin: 0 0 8px;
    font-size: 32px;
    letter-spacing: -.05em;
}

.expert-register-card p {
    margin: 0 0 20px;
    color: var(--expert-muted);
}

.expert-register-form {
    display: grid;
    gap: 14px;
}

.expert-register-form label {
    display: grid;
    gap: 7px;
    color: var(--expert-ink);
    font-weight: 900;
}

.expert-register-form input[type="text"],
.expert-register-form input[type="email"],
.expert-register-form input[type="password"],
.expert-register-form select {
    width: 100%;
    border: 1px solid var(--expert-line);
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--expert-ink);
    background: #f9fbf7;
    outline: none;
    font: inherit;
}

.expert-register-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--expert-ink) 50%), linear-gradient(135deg, var(--expert-ink) 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.expert-register-form input:focus {
    border-color: rgba(47, 125, 101, .45);
    box-shadow: 0 0 0 4px rgba(47, 125, 101, .1);
}

.expert-register-form select:focus {
    border-color: rgba(47, 125, 101, .45);
    box-shadow: 0 0 0 4px rgba(47, 125, 101, .1);
}

.expert-register-role {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expert-register-role label,
.expert-register-role span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--expert-line);
    border-radius: 999px;
    background: #fff;
    color: #4d5b53;
    font-weight: 900;
}

.expert-register-form button {
    width: 100%;
    min-height: 52px;
    margin-top: 6px;
}

.expert-login-link {
    text-align: center;
    color: var(--expert-green);
    font-weight: 900;
    text-decoration: none;
}

.expert-growth-body {
    background: #fbfcf7;
}

.expert-growth-page {
    min-height: 100vh;
    color: var(--expert-ink);
    background:
        linear-gradient(180deg, rgba(242, 247, 238, .96), rgba(251, 252, 247, 1) 58%),
        #fbfcf7;
}

.expert-growth-shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.expert-growth-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin: 0 auto;
    padding: 14px max(20px, calc((100% - 1160px) / 2));
    border-bottom: 1px solid rgba(228, 234, 223, .72);
    background: rgba(251, 252, 247, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(31, 54, 40, .06);
}

.expert-growth-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.expert-growth-nav__actions a {
    color: var(--expert-ink);
    font-weight: 900;
    text-decoration: none;
}

.expert-growth-nav__cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--expert-green);
    color: #fff !important;
}

.expert-growth-whatsapp-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(47, 125, 101, .28);
    border-radius: 999px;
    color: var(--expert-green) !important;
    background: rgba(47, 125, 101, .08);
}

.expert-growth-hero {
    padding: 44px 0 70px;
}

.expert-growth-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr);
    gap: 44px;
    align-items: center;
}

.expert-growth-copy h1 {
    max-width: 780px;
    margin: 20px 0 18px;
    color: var(--expert-ink);
    font-size: clamp(46px, 6vw, 82px);
    line-height: .96;
    letter-spacing: -.04em;
}

.expert-growth-copy p,
.expert-growth-section p,
.expert-growth-register__copy p {
    color: var(--expert-muted);
    font-size: 20px;
    line-height: 1.55;
}

.expert-growth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.expert-growth-link {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    color: var(--expert-ink);
    font-weight: 900;
    text-decoration: none;
}

.expert-growth-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.expert-growth-proof span,
.expert-growth-checks span {
    display: block;
    border: 1px solid var(--expert-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .74);
    padding: 14px;
    color: var(--expert-muted);
    font-weight: 800;
    line-height: 1.35;
}

.expert-growth-proof strong {
    display: block;
    color: var(--expert-ink);
}

.expert-growth-card {
    overflow: hidden;
    border: 1px solid rgba(228, 234, 223, .9);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--expert-shadow);
}

.expert-growth-profile-preview {
    display: grid;
    gap: 18px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 250, 245, .98)),
        #fff;
}

.expert-growth-profile-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background: var(--expert-soft);
}

.expert-growth-profile-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 28%;
}

.expert-growth-profile-media figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(32, 49, 41, .82);
    font-size: 12px;
    font-weight: 900;
}

.expert-growth-profile-head {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.expert-growth-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(32, 63, 43, .96), rgba(47, 125, 101, .9));
    font-size: 24px;
    font-weight: 900;
}

.expert-growth-profile-head span,
.expert-growth-source-card span {
    color: var(--expert-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.expert-growth-profile-head h2 {
    margin: 6px 0 4px;
    font-size: 30px;
    line-height: 1.05;
}

.expert-growth-profile-head p {
    margin: 0;
    color: var(--expert-muted);
    font-weight: 800;
    line-height: 1.35;
}

.expert-growth-rating {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(228, 234, 223, .95);
    border-radius: 8px;
    background: #fffdf8;
}

.expert-growth-rating strong {
    color: var(--expert-green);
    font-size: 42px;
    line-height: 1;
}

.expert-growth-rating strong:after {
    content: "★";
    margin-left: 4px;
    color: var(--expert-gold);
    font-size: 20px;
    vertical-align: top;
}

.expert-growth-rating span {
    color: var(--expert-muted);
    font-weight: 800;
    line-height: 1.35;
}

.expert-growth-source-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 18px;
    align-items: end;
    padding: 18px;
    border-radius: 8px;
    color: #fff;
    background: #203129;
}

.expert-growth-source-card strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
}

.expert-growth-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-items: end;
    height: 94px;
}

.expert-growth-bars i {
    display: block;
    min-height: 24px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #d79637, #f0c878);
}

.expert-growth-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expert-growth-profile-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--expert-line);
    border-radius: 999px;
    background: #fff;
    color: var(--expert-ink);
    font-size: 13px;
    font-weight: 900;
}

.expert-growth-channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.expert-growth-channel-grid div {
    padding: 12px 10px;
    border: 1px solid var(--expert-line);
    border-radius: 8px;
    background: #fff;
}

.expert-growth-channel-grid span,
.expert-growth-channel-grid strong {
    display: block;
}

.expert-growth-channel-grid span {
    color: var(--expert-muted);
    font-size: 11px;
    font-weight: 900;
}

.expert-growth-channel-grid strong {
    margin-top: 5px;
    color: var(--expert-green);
    font-size: 22px;
    line-height: 1;
}

.expert-growth-band {
    padding: 46px 0;
    background: #203129;
}

.expert-growth-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.expert-growth-benefits article {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
}

.expert-growth-benefits span {
    color: #c8a064;
    font-weight: 900;
}

.expert-growth-benefits h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: 24px;
}

.expert-growth-benefits p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.5;
}

.expert-growth-section,
.expert-growth-solutions,
.expert-growth-register {
    padding: 70px 0;
}

.expert-growth-split,
.expert-growth-register__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, .72fr);
    gap: 42px;
    align-items: start;
}

.expert-growth-split h2,
.expert-growth-register__copy h2 {
    margin: 14px 0 16px;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1;
}

.expert-growth-checks {
    display: grid;
    gap: 12px;
}

.expert-growth-solutions {
    background: #fffdf8;
}

.expert-growth-section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.expert-growth-section-head h2 {
    margin: 14px 0 0;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1;
}

.expert-growth-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.expert-growth-solution-grid article {
    padding: 26px;
    border: 1px solid var(--expert-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(31, 54, 40, .07);
}

.expert-growth-icon {
    position: relative;
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(47, 125, 101, .1);
    color: var(--expert-teal);
}

.expert-growth-benefits .expert-growth-icon {
    background: rgba(255, 255, 255, .1);
    color: #f0c878;
}

.expert-growth-icon:before,
.expert-growth-icon:after {
    content: "";
    position: absolute;
}

.expert-growth-icon--search:before {
    width: 17px;
    height: 17px;
    left: 12px;
    top: 11px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.expert-growth-icon--search:after {
    width: 14px;
    height: 3px;
    left: 27px;
    top: 29px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
}

.expert-growth-icon--star:before {
    width: 28px;
    height: 28px;
    left: 9px;
    top: 9px;
    background: currentColor;
    clip-path: polygon(50% 0, 62% 35%, 99% 35%, 69% 56%, 80% 92%, 50% 70%, 20% 92%, 31% 56%, 1% 35%, 38% 35%);
}

.expert-growth-icon--chart:before,
.expert-growth-icon--campaign:before {
    left: 10px;
    bottom: 10px;
    width: 6px;
    height: 17px;
    border-radius: 6px 6px 0 0;
    background: currentColor;
    box-shadow: 10px -8px 0 currentColor, 20px -2px 0 currentColor;
}

.expert-growth-icon--chart:after,
.expert-growth-icon--campaign:after {
    left: 9px;
    right: 9px;
    bottom: 9px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    opacity: .28;
}

.expert-growth-icon--profile:before {
    width: 14px;
    height: 14px;
    left: 16px;
    top: 9px;
    border-radius: 50%;
    background: currentColor;
}

.expert-growth-icon--profile:after {
    width: 25px;
    height: 13px;
    left: 10px;
    top: 27px;
    border-radius: 16px 16px 6px 6px;
    background: currentColor;
}

.expert-growth-icon--city:before {
    left: 10px;
    bottom: 9px;
    width: 7px;
    height: 22px;
    background: currentColor;
    box-shadow: 10px -9px 0 currentColor, 20px -4px 0 currentColor;
}

.expert-growth-icon--city:after {
    left: 11px;
    top: 20px;
    width: 4px;
    height: 4px;
    background: #fff;
    box-shadow: 10px -8px 0 #fff, 20px -3px 0 #fff, 0 8px 0 #fff, 10px 2px 0 #fff, 20px 6px 0 #fff;
}

.expert-growth-solution-grid strong {
    display: block;
    color: var(--expert-ink);
    font-size: 22px;
    line-height: 1.15;
}

.expert-growth-solution-grid p {
    margin: 12px 0 0;
    color: var(--expert-muted);
    font-weight: 800;
    line-height: 1.48;
}

.expert-growth-mini-chart {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.expert-growth-mini-chart span {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--expert-teal), #d79637);
}

.expert-growth-register {
    background: linear-gradient(180deg, #edf4e9, #fbfcf7);
}

.expert-growth-form-card {
    border-radius: 8px;
}

.expert-growth-location-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.expert-growth-privacy {
    display: block;
    color: var(--expert-muted);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.expert-growth-form-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(47, 125, 101, .28);
    border-radius: 999px;
    color: var(--expert-green);
    background: rgba(47, 125, 101, .08);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.expert-growth-footer {
    padding: 48px 0 28px;
    color: rgba(255, 255, 255, .78);
    background: #203129;
}

.expert-growth-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: start;
}

.expert-growth-footer .expert-brand {
    color: #fff;
}

.expert-growth-footer p {
    max-width: 640px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.55;
}

.expert-growth-footer__contact {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.expert-growth-footer__contact span {
    color: #f0c878;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.expert-growth-footer__contact a {
    color: rgba(255, 255, 255, .78);
    font-weight: 900;
    text-decoration: none;
}

.expert-growth-footer__contact a:hover {
    color: #fff;
}

.expert-growth-footer__whatsapp {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: #203129 !important;
    background: #f0c878;
}

.expert-growth-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .52);
    font-weight: 800;
}

.expert-growth-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    color: #203129;
    background: #f0c878;
    box-shadow: 0 18px 44px rgba(31, 54, 40, .22);
    font-weight: 900;
    text-decoration: none;
}

.expert-questions-hero {
    padding: 56px 0 28px;
}

.expert-questions-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(390px, .68fr);
    gap: 34px;
    align-items: start;
}

.expert-questions-copy {
    padding: 34px;
    border: 1px solid rgba(228, 234, 223, .8);
    border-radius: 38px;
    background:
        radial-gradient(circle at 92% 12%, rgba(47, 125, 101, .13), transparent 34%),
        rgba(255, 253, 248, .88);
    box-shadow: 0 20px 60px rgba(31, 54, 40, .1);
}

.expert-questions-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.07em;
}

.expert-questions-copy p {
    max-width: 650px;
    color: var(--expert-muted);
    font-size: 20px;
    line-height: 1.55;
}

.expert-target-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    max-width: 520px;
    margin-top: 24px;
    padding: 14px;
    border: 1px solid var(--expert-line);
    border-radius: 24px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(31, 54, 40, .08);
}

.expert-target-card img {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    object-fit: cover;
    background: #eef3ec;
}

.expert-target-card strong {
    display: block;
    color: var(--expert-ink);
    font-size: 20px;
}

.expert-target-card small {
    display: block;
    margin-top: 3px;
    color: var(--expert-muted);
    font-weight: 800;
}

.expert-question-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--expert-line);
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--expert-shadow);
}

.expert-question-form h2 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -.05em;
}

.expert-question-form p {
    margin: 0 0 6px;
    color: var(--expert-muted);
    line-height: 1.45;
}

.expert-question-form label {
    display: grid;
    gap: 8px;
    color: var(--expert-ink);
    font-weight: 900;
}

.expert-question-form select,
.expert-question-form textarea {
    width: 100%;
    border: 1px solid var(--expert-line);
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--expert-ink);
    background: #f9fbf7;
    outline: none;
    font: inherit;
}

.expert-question-form textarea {
    resize: vertical;
    min-height: 150px;
}

.expert-question-feed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.expert-question-row {
    min-height: 180px;
    padding: 22px;
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(31, 54, 40, .07);
}

.expert-question-row span {
    color: var(--expert-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.expert-question-row strong {
    display: block;
    margin: 12px 0;
    color: var(--expert-ink);
    font-size: 20px;
    line-height: 1.35;
}

.expert-question-row small {
    color: var(--expert-muted);
    font-weight: 800;
}

.expert-booking-hero {
    padding: 46px 0 72px;
}

.expert-booking-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    min-width: 0;
}

.expert-booking-summary,
.expert-booking-panel {
    min-width: 0;
    border: 1px solid var(--expert-line);
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--expert-shadow);
}

.expert-booking-summary {
    position: sticky;
    top: 98px;
    padding: 24px;
}

.expert-back-link {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--expert-green);
    font-weight: 900;
    text-decoration: none;
}

.expert-booking-photo {
    width: 100%;
    height: 250px;
    margin-bottom: 18px;
    border-radius: 26px;
    object-fit: cover;
    background: #eef3ec;
}

.expert-booking-summary h1 {
    margin: 16px 0 8px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.06em;
}

.expert-booking-summary p {
    color: var(--expert-muted);
    font-size: 18px;
    line-height: 1.45;
}

.expert-booking-panel {
    padding: 26px;
    overflow: hidden;
}

.expert-booking-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
    min-width: 0;
}

.expert-booking-service {
    display: grid;
    gap: 7px;
    padding: 18px;
    border: 1px solid var(--expert-line);
    border-radius: 24px;
    color: var(--expert-ink);
    background: #fff;
    text-decoration: none;
}

.expert-booking-service.is-selected,
.expert-booking-service:hover {
    border-color: rgba(47, 125, 101, .45);
    box-shadow: 0 14px 34px rgba(31, 54, 40, .1);
}

.expert-booking-service span {
    color: var(--expert-teal);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.expert-booking-service strong {
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: -.035em;
}

.expert-booking-service small {
    min-height: 40px;
    color: var(--expert-muted);
    line-height: 1.35;
}

.expert-booking-service em {
    justify-self: start;
    padding: 8px 12px;
    border-radius: 999px;
    color: #9a5d12;
    background: #fff3df;
    font-style: normal;
    font-weight: 900;
}

.expert-booking-frame-wrap,
.expert-booking-empty {
    overflow: hidden;
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    background: #f8fbf6;
}

.expert-booking-frame-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--expert-line);
}

.expert-booking-frame-head span {
    display: block;
    color: var(--expert-teal);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.expert-booking-frame-head strong {
    display: block;
    margin-top: 3px;
    font-size: 20px;
    letter-spacing: -.035em;
}

.expert-booking-frame-head a {
    color: var(--expert-green);
    font-weight: 900;
    text-decoration: none;
}

.expert-booking-frame {
    display: block;
    width: 100%;
    min-height: 980px;
    border: 0;
    background: #fff;
}

.expert-booking-empty {
    padding: 28px;
    text-align: center;
}

.expert-booking-empty h3 {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.expert-booking-empty p {
    margin: 0;
    color: var(--expert-muted);
}

.expert-booking-flow {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.expert-booking-step {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--expert-line);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf6 100%);
    overflow: hidden;
}

.expert-booking-step__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.expert-booking-step__head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #fff;
    background: var(--expert-green);
    font-weight: 900;
}

.expert-booking-step h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.045em;
}

.expert-booking-step p {
    margin: 5px 0 0;
    color: var(--expert-muted);
}

.expert-booking-date-strip {
    display: flex;
    gap: 10px;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}

.expert-booking-date {
    appearance: none;
    flex: 0 0 94px;
    padding: 14px 12px;
    border: 1px solid var(--expert-line);
    border-radius: 22px;
    color: var(--expert-ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
}

.expert-booking-date span,
.expert-booking-date small {
    display: block;
    color: var(--expert-muted);
    font-weight: 800;
}

.expert-booking-date strong {
    display: block;
    margin: 5px 0;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.04em;
}

.expert-booking-date.is-selected {
    color: #fff;
    border-color: var(--expert-teal);
    background: linear-gradient(145deg, var(--expert-green), var(--expert-teal));
}

.expert-booking-date.is-selected span,
.expert-booking-date.is-selected small {
    color: rgba(255, 255, 255, .82);
}

.expert-booking-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    min-width: 0;
}

.expert-slot {
    appearance: none;
    padding: 14px;
    border: 1px solid var(--expert-line);
    border-radius: 18px;
    color: var(--expert-ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.expert-slot strong,
.expert-slot span {
    display: block;
}

.expert-slot strong {
    font-size: 20px;
}

.expert-slot span {
    margin-top: 3px;
    color: var(--expert-muted);
    font-weight: 800;
}

.expert-slot.is-selected {
    border-color: rgba(47, 125, 101, .5);
    background: rgba(47, 125, 101, .09);
    box-shadow: 0 12px 30px rgba(31, 54, 40, .1);
}

.expert-booking-hint {
    width: 100%;
    padding: 18px;
    border: 1px dashed rgba(159, 181, 158, .7);
    border-radius: 20px;
    color: var(--expert-muted);
    background: rgba(255, 255, 255, .7);
    font-weight: 800;
}

.expert-booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.expert-booking-form label {
    display: grid;
    gap: 7px;
    color: var(--expert-ink);
    font-weight: 900;
}

.expert-booking-form input,
.expert-booking-form select,
.expert-booking-form textarea {
    width: 100%;
    border: 1px solid var(--expert-line);
    border-radius: 18px;
    padding: 13px 14px;
    color: var(--expert-ink);
    background: #fff;
    font: inherit;
    outline: 0;
}

.expert-booking-form input:focus,
.expert-booking-form select:focus,
.expert-booking-form textarea:focus {
    border-color: rgba(47, 125, 101, .55);
    box-shadow: 0 0 0 4px rgba(47, 125, 101, .12);
}

.expert-booking-form__wide,
.expert-booking-check,
.expert-booking-alert,
.expert-booking-submit {
    grid-column: 1 / -1;
}

.expert-booking-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--expert-muted) !important;
    font-weight: 700 !important;
    line-height: 1.4;
}

.expert-booking-check input {
    width: auto;
    margin-top: 4px;
}

.expert-booking-alert {
    padding: 13px 14px;
    border: 1px solid rgba(204, 88, 73, .2);
    border-radius: 18px;
    color: #8a3429;
    background: #fff1ef;
    font-weight: 800;
}

.expert-booking-submit {
    justify-self: start;
}

.expert-booking-submit:disabled {
    opacity: .72;
    cursor: wait;
}

.expert-booking-success {
    margin-top: 22px;
    padding: 32px;
    border: 1px solid rgba(47, 125, 101, .22);
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(47, 125, 101, .18), transparent 30%),
        #fff;
    box-shadow: var(--expert-shadow);
}

.expert-booking-success > span {
    color: var(--expert-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.expert-booking-success h3 {
    margin: 8px 0;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -.06em;
}

.expert-booking-success p {
    color: var(--expert-muted);
    font-size: 18px;
}

.expert-booking-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.expert-booking-success__actions .expert-action {
    flex: 1 1 220px;
}

@media (max-width: 980px) {
    .expert-nav__inner {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .expert-nav__links {
        display: none;
    }

    .expert-nav__guest-actions,
    .expert-nav__session {
        justify-content: flex-end;
        width: 100%;
    }

    .expert-nav__identity {
        max-width: none;
    }

    .expert-hero__grid,
    .expert-layout,
    .expert-profile-hero__grid,
    .expert-profile-columns,
    .expert-register-grid,
    .expert-growth-hero__grid,
    .expert-growth-split,
    .expert-growth-register__grid,
    .expert-questions-grid,
    .expert-booking-grid {
        grid-template-columns: 1fr;
    }

    .expert-growth-benefits,
    .expert-growth-proof,
    .expert-growth-solution-grid {
        grid-template-columns: 1fr;
    }

    .expert-search {
        grid-template-columns: 1fr;
    }

    .expert-card-grid,
    .expert-qa,
    .expert-service-grid,
    .expert-tip-grid,
    .expert-review-list,
    .expert-question-feed {
        grid-template-columns: 1fr;
    }

    .expert-home-layout .expert-card-grid {
        grid-template-columns: 1fr;
    }

    .expert-featured-row {
        display: flex;
        margin: 0 -20px;
        overflow-x: auto;
        padding: 0 20px 10px;
        scrollbar-width: none;
    }

    .expert-featured-row::-webkit-scrollbar {
        display: none;
    }

    .expert-featured-mini {
        flex: 0 0 220px;
    }

    .expert-home-intent__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expert-side {
        position: static;
    }

    .expert-booking-summary {
        position: static;
    }

    .expert-profile-hero {
        padding-top: 22px;
    }

    .expert-profile-actions {
        grid-template-columns: 1fr 1fr;
    }

    .expert-profile-primary-cta {
        grid-column: 1 / -1;
    }

    .expert-section__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 620px) {
    .expert-shell {
        width: min(100% - 24px, 1180px);
    }

    .expert-growth-shell,
    .expert-growth-nav {
        width: min(100% - 24px, 1180px);
    }

    .expert-nav {
        position: relative;
    }

    body.expert-directory-body {
        padding-bottom: 82px;
    }

    body.expert-growth-body {
        padding-bottom: 0;
    }

    .expert-growth-nav {
        position: relative;
        align-items: flex-start;
        width: 100%;
        padding: 12px;
        border-bottom: 1px solid rgba(228, 234, 223, .8);
    }

    .expert-growth-nav__actions a[href="/login-personal"] {
        display: none;
    }

    .expert-growth-whatsapp-link {
        display: none;
    }

    .expert-growth-hero {
        padding: 28px 0 46px;
    }

    .expert-growth-copy h1 {
        font-size: 40px;
        letter-spacing: 0;
    }

    .expert-growth-copy p,
    .expert-growth-section p,
    .expert-growth-register__copy p {
        font-size: 17px;
    }

    .expert-growth-actions .expert-pill-button {
        width: 100%;
        justify-content: center;
    }

    .expert-growth-card__body {
        padding: 18px;
    }

    .expert-growth-profile-preview {
        padding: 18px;
    }

    .expert-growth-profile-head,
    .expert-growth-rating,
    .expert-growth-source-card {
        grid-template-columns: 1fr;
    }

    .expert-growth-avatar {
        width: 64px;
        height: 64px;
        font-size: 21px;
    }

    .expert-growth-source-card strong {
        font-size: 30px;
    }

    .expert-growth-channel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expert-growth-location-fields {
        grid-template-columns: 1fr;
    }

    .expert-growth-section,
    .expert-growth-solutions,
    .expert-growth-register {
        padding: 48px 0;
    }

    .expert-growth-footer__grid,
    .expert-growth-footer__bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .expert-growth-footer__bottom {
        justify-content: start;
    }

    .expert-growth-whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding: 0 16px;
    }

    .expert-nav__inner {
        display: grid;
        grid-template-columns: auto 54px;
        gap: 10px;
        min-height: 0;
        padding: 12px 0;
    }

    .expert-brand {
        font-size: 24px;
        min-width: 0;
    }

    .expert-brand img {
        height: 44px;
        width: 44px;
    }

    .expert-nav__toggle {
        display: inline-flex;
        justify-self: end;
    }

    .expert-nav__links {
        display: none;
    }

    .expert-nav__guest-actions {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        border: 1px solid rgba(228, 234, 223, .9);
        border-radius: 22px;
        background: rgba(255, 253, 248, .98);
        box-shadow: 0 18px 42px rgba(31, 54, 40, .1);
    }

    .expert-nav__guest-actions .expert-nav__session-link {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0 14px;
        border-radius: 16px;
        background: rgba(32, 63, 43, .06);
        font-size: 15px;
        line-height: 1.15;
    }

    .expert-nav__guest-actions .expert-pill-button {
        min-height: 46px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 15px;
        text-align: center;
    }

    .expert-nav.is-open .expert-nav__guest-actions {
        display: grid;
    }

    .expert-nav__session {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        border: 1px solid rgba(228, 234, 223, .9);
        border-radius: 22px;
        background: rgba(255, 253, 248, .98);
        box-shadow: 0 18px 42px rgba(31, 54, 40, .1);
    }

    .expert-nav.is-open .expert-nav__session {
        display: grid;
    }

    .expert-nav__session .expert-nav__identity {
        grid-column: 1 / -1;
    }

    .expert-hero {
        padding-top: 38px;
    }

    .expert-home-app {
        padding: 18px 0 8px;
    }

    .expert-home-top {
        grid-template-columns: 1fr;
    }

    .expert-home-top h1 {
        font-size: 34px;
        line-height: 1;
        margin-top: 12px;
    }

    .expert-home-top p {
        font-size: 16px;
    }

    .expert-home-create {
        display: none;
    }

    .expert-mobile-search {
        border-radius: 24px;
        margin-top: 16px;
    }

    .expert-mobile-search__filters {
        grid-template-columns: 1fr;
    }

    .expert-home-stats {
        display: none;
    }

    .expert-home-intent {
        padding: 6px 0 14px;
    }

    .expert-home-intent__head {
        align-items: flex-start;
        display: grid;
        gap: 6px;
    }

    .expert-home-intent__head h2 {
        font-size: 24px;
        text-align: left;
    }

    .expert-home-intent__grid {
        display: flex;
        margin: 0 -12px;
        overflow-x: auto;
        padding: 0 12px 8px;
        scrollbar-width: none;
    }

    .expert-home-intent__grid::-webkit-scrollbar {
        display: none;
    }

    .expert-home-intent-card {
        border-radius: 20px;
        flex: 0 0 188px;
        min-height: 132px;
        padding: 14px;
    }

    .expert-home-section-head {
        align-items: center;
        flex-direction: row;
    }

    .expert-home-section-head h2 {
        font-size: 25px;
    }

    .expert-home-section-head p {
        display: none;
    }

    .expert-section {
        padding: 24px 0;
    }

    .expert-section__head h2 {
        font-size: 30px;
        line-height: 1.04;
    }

    .expert-section__head p {
        font-size: 15px;
        line-height: 1.45;
    }

    .expert-section-link {
        width: auto;
    }

    .expert-card {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
    }

    .expert-home-card {
        border-radius: 22px;
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 134px;
        overflow: hidden;
        width: 100%;
    }

    .expert-card__photo {
        border-radius: 18px;
        height: 84px;
        width: 84px;
    }

    .expert-home-card .expert-card__photo {
        height: 96px;
        width: 96px;
    }

    .expert-card h3 {
        font-size: 18px;
        line-height: 1.1;
    }

    .expert-card__role,
    .expert-card__office {
        font-size: 13px;
    }

    .expert-card__office,
    .expert-card__desc,
    .expert-card__chips {
        display: none;
    }

    .expert-card__rating {
        gap: 5px;
        margin-top: 8px;
    }

    .expert-card__rating .expert-stars {
        font-size: 13px;
        letter-spacing: 0;
    }

.expert-card__rating span:last-child {
    font-size: 13px;
}

    .expert-card__rating a {
        font-size: 13px;
    }

    .expert-card__actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        grid-column: 1 / -1;
    }

    .expert-card__actions .expert-action {
        display: inline-flex;
        font-size: 12px;
        min-height: 34px;
        min-width: 0;
        padding: 7px 8px;
        width: 100%;
    }

    .expert-home-top-profiles {
        display: none;
    }

    .expert-home-trust-strip {
        grid-template-columns: 1fr;
        margin-bottom: 16px;
        padding: 14px;
    }

    .expert-mobile-tabs {
        align-items: end;
        background: rgba(255, 253, 248, .96);
        border-top: 1px solid rgba(228, 234, 223, .95);
        bottom: 0;
        box-shadow: 0 -14px 32px rgba(31, 54, 40, .1);
        display: grid;
        gap: 4px;
        grid-template-columns: repeat(5, 1fr);
        left: 0;
        min-height: 72px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        position: fixed;
        right: 0;
        z-index: 30;
    }

    .expert-mobile-tabs a {
        align-items: center;
        color: #6f7a73;
        display: grid;
        font-size: 12px;
        font-weight: 900;
        gap: 3px;
        justify-items: center;
        text-decoration: none;
    }

    .expert-mobile-tabs span {
        align-items: center;
        display: inline-flex;
        font-size: 17px;
        height: 28px;
        justify-content: center;
        min-width: 28px;
    }

    .expert-mobile-tabs .is-active {
        color: var(--expert-green);
    }

    .expert-mobile-tabs__primary {
        color: var(--expert-green) !important;
        margin-top: -26px;
    }

    .expert-mobile-tabs__primary span {
        background: var(--expert-green);
        border-radius: 22px;
        color: #fff;
        font-size: 24px;
        height: 58px;
        width: 58px;
    }

    .expert-profile-photo-card {
        border-radius: 24px;
        padding: 0;
        overflow: hidden;
    }

    .expert-profile-photo-card img {
        display: block;
        height: min(300px, 42vh);
        border-radius: 0;
        object-position: center top;
    }

    .expert-profile-mobile-card {
        position: relative;
        display: block;
        margin: -58px 14px 14px;
        padding: 15px;
        border: 1px solid rgba(228, 234, 223, .92);
        border-radius: 22px;
        background: rgba(255, 253, 248, .96);
        box-shadow: 0 18px 42px rgba(31, 54, 40, .14);
    }

    .expert-profile-mobile-card .expert-eyebrow {
        font-size: 10px;
        padding: 7px 11px;
    }

    .expert-profile-mobile-card h1 {
        margin: 10px 0 3px;
        font-size: 26px;
        line-height: 1.02;
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }

    .expert-profile-mobile-card p {
        margin: 0;
        color: var(--expert-teal);
        font-size: 15px;
        font-weight: 900;
    }

    .expert-profile-mobile-rating {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 3px 10px;
        align-items: center;
        margin-top: 10px;
        color: var(--expert-muted);
        font-weight: 800;
    }

    .expert-profile-mobile-rating .expert-stars {
        grid-column: 1 / -1;
        font-size: 15px;
    }

    .expert-profile-mobile-rating strong {
        color: var(--expert-green);
        font-size: 25px;
        line-height: 1;
    }

    .expert-profile-mobile-rating small {
        justify-self: end;
        font-size: 13px;
    }

    .expert-profile-photo-card .expert-profile-score {
        display: none;
    }

    .expert-profile-score {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .expert-profile-summary,
    .expert-register-card {
        border-radius: 24px;
        padding: 20px;
    }

    .expert-profile-summary h1 {
        display: none;
    }

    .expert-profile-summary .expert-eyebrow,
    .expert-profile-summary .expert-profile-subtitle {
        display: none;
    }

    .expert-profile-summary {
        padding: 18px;
    }

    .expert-profile-summary p {
        letter-spacing: 0;
    }

    .expert-profile-summary p {
        font-size: 16px;
    }

    .expert-profile-facts {
        gap: 8px;
    }

    .expert-profile-facts span,
    .expert-chip {
        font-size: 13px;
        line-height: 1.2;
    }

    .expert-profile-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .expert-profile-trust span {
        border-radius: 16px;
        padding: 10px;
        text-align: center;
    }

    .expert-profile-trust strong {
        font-size: 24px;
    }

    .expert-profile-actions {
        display: none;
    }

    .expert-profile-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 28;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2px;
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 253, 248, .94);
        border-top: 1px solid rgba(228, 234, 223, .95);
        box-shadow: 0 -14px 34px rgba(31, 54, 40, .12);
        backdrop-filter: blur(18px);
    }

    .expert-profile-mobile-actions a {
        display: grid;
        place-items: center;
        gap: 3px;
        min-height: 56px;
        color: #6d7770;
        text-decoration: none;
        font-size: 11px;
        font-weight: 900;
    }

    .expert-profile-mobile-actions i {
        font-size: 22px;
        line-height: 1;
    }

    .expert-profile-mobile-actions a.is-primary {
        min-height: 68px;
        margin-top: -22px;
        border-radius: 24px;
        color: #fff;
        background: var(--expert-green);
        box-shadow: 0 14px 30px rgba(32, 63, 43, .22);
    }

    .expert-profile-mobile-actions a.is-primary i {
        font-size: 26px;
    }

    .expert-profile-page {
        padding-bottom: 92px;
    }

    .expert-service-card {
        border-radius: 22px;
        min-height: auto;
        padding: 18px;
    }

    .expert-service-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .expert-service-card__footer a {
        text-align: center;
        width: 100%;
    }

    .expert-tip-card,
    .expert-tip-empty,
    .expert-review-card,
    .expert-side {
        border-radius: 22px;
    }

    .expert-tip-card {
        grid-template-columns: 1fr;
    }

    .expert-tip-card img {
        height: auto;
        max-height: 260px;
    }

    .expert-profile-rating-picker {
        gap: 6px;
        justify-content: space-between;
    }

    .expert-profile-rating-picker button {
        height: 44px;
        width: 44px;
    }

    .expert-proof-grid {
        grid-template-columns: 1fr;
    }

    .expert-footer-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .expert-booking-panel {
        padding: 16px;
    }

    .expert-booking-services {
        grid-template-columns: 1fr;
    }

    .expert-booking-step {
        padding: 18px;
    }

    .expert-booking-form {
        grid-template-columns: 1fr;
    }

    .expert-booking-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expert-booking-date {
        flex-basis: 84px;
    }

    .expert-booking-submit,
    .expert-booking-success__actions .expert-action {
        width: 100%;
    }

    .expert-booking-frame {
        min-height: 1120px;
    }
}

@media (max-width: 720px) {
    html,
    body.expert-directory-body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .expert-home-layout,
    .expert-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        overflow: visible !important;
    }

    .expert-card-grid,
    .expert-home-layout .expert-card-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        overflow: visible !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .expert-card,
    .expert-home-card {
        display: grid !important;
        grid-template-columns: 82px minmax(0, 1fr) !important;
        gap: 12px !important;
        min-height: 0 !important;
        padding: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .expert-home-card__photo-link {
        display: block !important;
        grid-column: 1 !important;
        width: 82px !important;
    }

    .expert-home-card > div,
    .expert-card > div {
        min-width: 0 !important;
        width: 100% !important;
    }

    .expert-card__photo,
    .expert-home-card .expert-card__photo {
        border-radius: 18px !important;
        height: 82px !important;
        width: 82px !important;
    }

    .expert-card h3,
    .expert-home-card h3 {
        font-size: 18px !important;
        line-height: 1.08 !important;
        margin: 0 !important;
        overflow-wrap: anywhere;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        overflow: hidden !important;
    }

    .expert-card__role,
    .expert-card__office {
        font-size: 13px !important;
        line-height: 1.25 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        overflow: hidden !important;
    }

    .expert-card__office,
    .expert-card__desc,
    .expert-card__chips {
        display: none !important;
    }

    .expert-card__rating {
        gap: 6px !important;
        margin-top: 8px !important;
    }

    .expert-card__rating .expert-stars {
        flex-basis: 100%;
        font-size: 14px !important;
        letter-spacing: 0 !important;
    }

    .expert-card__actions,
    .expert-home-card .expert-card__actions {
        display: grid !important;
        grid-column: 1 / -1 !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        margin-top: 8px !important;
        width: 100% !important;
    }

    .expert-card__actions .expert-action,
    .expert-home-card .expert-card__actions .expert-action {
        border-radius: 999px !important;
        font-size: 12px !important;
        min-height: 36px !important;
        min-width: 0 !important;
        padding: 8px 6px !important;
        width: 100% !important;
    }
}
