* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #182033;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

.siteHeader {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8ebf0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.headerInner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
    min-height: 96px;
    gap: 28px;
}

.logoLink {
    display: flex;
    align-items: center;
    padding: 10px 0;
    flex-shrink: 0;
}

.logo {
    height: 130px;
    width: auto;
    display: block;
}

.mainNav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}

.mainNav a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-size: 18px;
    font-weight: 700;
    color: #26324a;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.mainNav a:hover {
    background: #e8f1ff;
    color: #1558d6;
}

.mainNav a.active {
    background: #2563eb;
    color: #ffffff;
}

.languageSwitch {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.languageSwitch a {
    font-size: 14px;
    font-weight: 800;
    padding: 9px 12px;
    border-radius: 999px;
    background: #eef2f7;
    color: #26324a;
}

.languageSwitch a:hover {
    background: #dbeafe;
    color: #1558d6;
}

.languageSwitch a.active {
    background: #2563eb;
    color: #ffffff;
}

.hero {
    min-height: calc(100vh - 74px);
    background-image: url("../img/hero-live-coaches.jpg");
    background-size: cover;
    background-position: center center;
    position: relative;
}

.heroOverlay {
    min-height: calc(100vh - 74px);
    background: linear-gradient(
        90deg,
        rgba(10, 18, 34, 0.82) 0%,
        rgba(10, 18, 34, 0.52) 48%,
        rgba(10, 18, 34, 0.18) 100%
    );
    display: flex;
    align-items: center;
}

.hero {
    min-height: 880px;
}

.heroOverlay {
    min-height: 880px;
}

.heroContent {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px;
    color: #ffffff;
}

.heroContent h1 {
    max-width: 720px;
    margin: 0 0 20px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.heroContent p {
    max-width: 620px;
    margin: 0 0 34px;
    font-size: 22px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.heroButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.heroButton:hover {
    background: #1d4ed8;
}

.section {
    padding: 80px 24px;
}

.sectionInner {
    max-width: 1240px;
    margin: 0 auto;
}

.section h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.sectionIntro {
    margin: 0 0 34px;
    font-size: 18px;
    color: #5b6577;
}

.topicGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.topicCard {
    min-height: 190px;
    padding: 26px;
    border-radius: 24px;
    background: #f7f9fc;
    border: 1px solid #e3e8ef;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.topicCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(22, 34, 51, 0.1);
}

.topicCard h3 {
    margin: 0 0 12px;
    font-size: 21px;
}

.topicCard p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #5b6577;
}

.siteFooter {
    background: #111827;
    color: #ffffff;
    padding: 34px 24px;
}

.footerInner {
    max-width: 1240px;
    margin: 0 auto;
}

.footerInner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
    .headerInner {
        flex-wrap: wrap;
        gap: 18px;
    }

    .mainNav {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .topicGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero,
    .heroOverlay {
        min-height: 560px;
    }
}

@media (max-width: 620px) {
    .headerInner {
        padding: 14px 18px;
    }

    .logo {
        height: 40px;
    }

    .mainNav {
        font-size: 14px;
    }

    .hero,
    .heroOverlay {
        min-height: 520px;
    }

    .heroContent {
        padding: 64px 20px;
    }

    .heroContent p {
        font-size: 18px;
    }

    .topicGrid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 20px;
    }
}

/* Header Dashboard */

.headerRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.headerAccountRow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.headerLangTop {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

.headerLangTop a {
    font-size: 12px;
    font-weight: 900;
    padding: 6px 9px;
    border-radius: 999px;
    background: #eef2f7;
    color: #26324a;
}

.headerLangTop a.active {
    background: #2563eb;
    color: #ffffff;
}

.headerLoginBtn,
.headerRegisterBtn,
.headerDashboardBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.headerLoginBtn {
    background: #2563eb;
    color: #ffffff;
}

.headerRegisterBtn {
    border: 1px solid #cbd5e1;
    color: #26324a;
    background: #ffffff;
}

.headerDashboardBtn {
    background: #e8f1ff;
    color: #1558d6;
}

.headerBell {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.headerBellBadge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}


.registerLocationRow{
    display:grid;
    grid-template-columns:140px 1fr 220px;
    gap:18px;
    grid-column:span 2;
}

.zipField{
    min-width:0;
}

.cityField{
    min-width:0;
}

.countryField{
    min-width:0;
}

@media (max-width: 820px){

    .registerLocationRow{
        grid-template-columns:1fr;
    }

}


/* Kategorien INDEX */


.categoryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.categoryCard {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    box-shadow: 0 18px 40px rgba(22, 34, 51, 0.12);
}

.categoryCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.categoryOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 56px;
    padding: 12px 22px;
    background: rgba(0, 0, 0, 0.58);
    color: #ffffff;
    transition: min-height 0.32s ease, background-color 0.32s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.categoryOverlay h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.categoryOverlay p {
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease, margin-top 0.28s ease;
}

.categoryCard:hover img {
    transform: scale(1.06);
}

.categoryCard:hover .categoryOverlay {
    min-height: 100%;
    background: rgba(0, 0, 0, 0.72);
}

.categoryCard:hover .categoryOverlay p {
    margin-top: 16px;
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .categoryGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .categoryGrid {
        grid-template-columns: 1fr;
    }

    .categoryOverlay h3 {
        font-size: 24px;
    }

    .categoryOverlay p {
        font-size: 16px;
    }
}


/* Startseite Caoches */

.coachesSection {
    background: #f7f9fc;
}

.coachGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.coachCard {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e3e8ef;
    box-shadow: 0 18px 40px rgba(22, 34, 51, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coachCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(22, 34, 51, 0.14);
}

.coachImageWrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
    overflow: hidden;
}

.coachImageWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.coachCard:hover .coachImageWrap img {
    transform: scale(1.05);
}

.coachCardBody {
    padding: 24px;
}

.coachCardBody h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.coachCardBody p {
    margin: 0 0 20px;
    color: #5b6577;
    font-size: 16px;
}

.coachButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
}

@media (max-width: 980px) {
    .coachGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .coachGrid {
        grid-template-columns: 1fr;
    }
}

.coachBadges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.coachBadge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: #334155;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.coachLanguages {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.langFlag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #dbe3ee;
    font-size: 19px;
}


.coachBadges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.coachBadge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.coachLanguages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.langFlag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #dbe3ee;
    font-size: 19px;
}

.coachCard {
    position: relative;
}

.coachImageWrap {
    position: relative;
}

.coachImageLanguages {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 7px;
    z-index: 3;
}

.coachImageLanguages .langFlag {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.coachBadgePreview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 22px;
    min-height: 34px;
}

.moreBadge {
    background: #e8f1ff;
    border-color: #a8c7ff;
    color: #1558d6;
}

.coachCategoryOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: rgba(15, 23, 42, 0.94);
    color: #ffffff;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
    z-index: 8;
}

.coachCategoryOverlay h4 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
}

.coachCategoryOverlay .coachBadges {
    margin: 0;
}

.coachCard:hover .coachCategoryOverlay {
    max-height: 100%;
    opacity: 1;
    padding: 26px 24px;
}


.overlayButton {
    margin-top: 22px;
}

/* Topics */

.topicsHero {
    padding: 55px 24px 45px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 62%);
    border-bottom: 1px solid #e3e8ef;
}

.topicsHero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111827;
}

.topicsHero p {
    max-width: 520px;
    margin: 0 0 34px;
    font-size: 17px;
    line-height: 1.45;
    color: #5b6577;
}

.topicSearchBox {
    max-width: 350px;
}

.topicSearchBox input {
    width: 100%;
    height: 58px;
    border: 1px solid #ccd6e4;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 18px;
    outline: none;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(22, 34, 51, 0.08);
}

.topicSearchBox input:focus {
    border-color: #2563eb;
}

.topicsPageSection {
    background: #ffffff;
}

.topicsPageGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.topicPageCard {
    display: grid;
    grid-template-columns: 230px 1fr;
    grid-template-areas:
        "image body"
        "subtopics subtopics";
    grid-template-rows: minmax(260px, 1fr) auto;
    min-height: 260px;
    border-radius: 26px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    box-shadow: 0 18px 42px rgba(22, 34, 51, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topicPageCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(22, 34, 51, 0.14);
}

.topicPageMainLink {
    grid-area: image;
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.topicPageImage {
    position: relative;
    height: 100%;
    min-height: 260px;
    background: #111827;
    overflow: hidden;
}

.topicPageImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.topicPageCard:hover .topicPageImage img {
    transform: scale(1.06);
}

.topicPageImageOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.58);
    color: #ffffff;
}

.topicPageImageOverlay h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.15;
}

.topicPageBody {
    grid-area: body;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.topicPageTop{
    display:flex;
    justify-content:flex-end;
    margin-bottom:14px;
}

.topicPageTop h3 {
    margin: 0;
    font-size: 27px;
    line-height: 1.15;
    color: #111827;
}

.topicCoachCount {
    flex-shrink: 0;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e8f1ff;
    color: #1558d6;
    font-size: 13px;
    font-weight: 800;
}

.topicPageBody p {
    margin: 0 0 18px;
    color: #5b6577;
    font-size: 16px;
    line-height: 1.55;
}

.topicSubBar {
    grid-area: subtopics;
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 14px 18px;
    border-top: 1px solid #d7e2f3;
    background: #f4f7ff;
}

.topicSubBadges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.topicSubBadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #b9cae8;
    background: #ffffff;
    color: #174ea6;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.07);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.topicSubBadge:hover,
.topicSubBadge:focus-visible {
    border-color: #2563eb;
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-1px);
    outline: none;
}

.topicSubArrow {
    font-size: 19px;
    font-weight: 700;
    line-height: 0.8;
}

.hiddenSubBadge {
    display: none;
}

.showMoreTopics {
    border: 1px solid #b9cae8;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 39px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #e5edff;
    color: #174ea6;
    font-size: 14px;
    font-weight: 800;
}

.showMoreTopics:hover,
.showMoreTopics:focus-visible {
    border-color: #2563eb;
    background: #dbe7ff;
    outline: 3px solid rgba(37, 99, 235, 0.18);
    outline-offset: 2px;
}

.topicPageButton {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 20px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.noTopicsFound {
    padding: 40px;
    border-radius: 24px;
    background: #f7f9fc;
    border: 1px solid #e3e8ef;
    color: #5b6577;
    font-size: 18px;
    text-align: center;
}

.topicDetailHero {
    padding: 54px 20px 42px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.topicBreadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.topicBreadcrumb a {
    color: #2563eb;
}

.topicBreadcrumb a:hover,
.topicBreadcrumb a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.topicDetailPanel {
    display: grid;
    grid-template-columns: minmax(320px, 43%) 1fr;
    min-height: 410px;
    overflow: hidden;
    border: 1px solid #dfe7f2;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(22, 34, 51, 0.10);
}

.topicDetailImage {
    min-height: 410px;
    overflow: hidden;
    background: #111827;
}

.topicDetailImage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topicDetailContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 52px;
}

.topicDetailParent {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #1558d6;
    font-size: 13px;
    font-weight: 800;
}

.topicDetailContent h1 {
    margin: 0 0 18px;
    color: #111827;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.topicDetailContent p {
    max-width: 720px;
    margin: 0 0 28px;
    color: #526078;
    font-size: 18px;
    line-height: 1.65;
}

.topicDetailJump {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.20);
}

.topicDetailJump:hover,
.topicDetailJump:focus-visible {
    background: #174fc4;
    transform: translateY(-1px);
    outline: 3px solid rgba(37, 99, 235, 0.18);
    outline-offset: 3px;
}

.topicDetailSubtopics {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #d7e2f3;
    border-radius: 22px;
    background: #f4f7ff;
}

.topicDetailSubtopics a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid #b9cae8;
    border-radius: 999px;
    background: #ffffff;
    color: #174ea6;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.07);
}

.topicDetailSubtopics a:hover,
.topicDetailSubtopics a:focus-visible {
    border-color: #2563eb;
    background: #2563eb;
    color: #ffffff;
    outline: none;
}

.topicExpertsSection {
    scroll-margin-top: 24px;
    background: #ffffff;
}

.topicExpertsHeading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.topicExpertsHeading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
}

@media (max-width: 1100px) {
    .topicsPageGrid {
        grid-template-columns: 1fr;
    }

    .topicDetailPanel {
        grid-template-columns: minmax(280px, 40%) 1fr;
    }

    .topicDetailContent {
        padding: 40px;
    }
}

@media (max-width: 720px) {
    .topicsHero {
        padding: 64px 20px 52px;
    }

    .topicPageCard {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "body"
            "subtopics";
        grid-template-rows: auto;
    }

    .topicPageImage {
        height: 240px;
        min-height: 240px;
    }

    .topicPageTop {
        flex-direction: column;
        align-items: flex-start;
    }

    .topicSubBar {
        min-height: 0;
        padding: 15px 18px 18px;
    }

    .topicDetailHero {
        padding: 34px 20px 30px;
    }

    .topicDetailPanel {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 24px;
    }

    .topicDetailImage {
        height: 250px;
        min-height: 250px;
    }

    .topicDetailContent {
        padding: 30px 26px 32px;
    }

    .topicDetailContent h1 {
        font-size: 38px;
    }

    .topicDetailContent p {
        font-size: 16px;
        line-height: 1.6;
    }

    .topicDetailSubtopics {
        padding: 14px;
        border-radius: 18px;
    }

    .topicExpertsHeading {
        margin-bottom: 14px;
    }
}


/* AI Topic */

.topicAiBox {
    max-width: 400px;
    width: 100%;
    margin-top: 28px;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dbe3ee;
    box-shadow: 0 18px 44px rgba(22, 34, 51, 0.1);
}

.topicAiBox h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #111827;
}

.topicAiBox p {
    margin: 0 0 18px;
    font-size: 15px;
    color: #5b6577;
}

.topicAiBox textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border: 1px solid #ccd6e4;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 17px;
    line-height: 1.45;
    outline: none;
}

.topicAiBox textarea:focus {
    border-color: #2563eb;
}

.topicAiButton {
    margin-top: 14px;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.aiTopicResult {
    margin-top: 20px;
}

.aiTopicCards{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
    margin-top:20px;
}

.aiTopicCard {
    display: block;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.aiTopicCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(22, 34, 51, 0.12);
}

.aiTopicCard strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    color: #111827;
}

.aiTopicCard span {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: #5b6577;
}

@media (max-width: 760px) {
    .aiTopicCards {
        grid-template-columns: 1fr;
    }
}



.aiTopicCard{
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    box-sizing: border-box;
}

@media (max-width: 700px){
    .aiTopicCard{
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.aiTopicResult .aiTopicCards > .aiTopicCard{
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
    box-sizing: border-box;
}

@media (max-width: 760px) {
    .aiTopicResult .aiTopicCards > .aiTopicCard{
        width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
    }
}

.aiTopicCards{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    margin-top:18px;
}

@media (max-width: 760px){
    .aiTopicCards{
        grid-template-columns:1fr;
    }
}



.topicsHeroInner {
    display: grid;
    grid-template-columns: 420px 820px;
    gap: 42px;
    align-items: start;
}

.topicAiBox {
    max-width: 760px;
    width: 100%;
    margin-top: 0;
}

@media (max-width: 900px) {
    .topicsHeroInner {
        grid-template-columns: 1fr;
    }

    .topicAiBox {
        max-width: 520px;
    }
}


/* Experts */

.expertsHero {
    padding: 58px 24px 42px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 62%);
    border-bottom: 1px solid #e3e8ef;
}

.expertsHero h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: #111827;
}

.expertsHero p {
    margin: 0 0 26px;
    max-width: 620px;
    font-size: 18px;
    color: #5b6577;
}

.expertFilterBox {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) repeat(2, minmax(170px, 1fr));
    gap: 14px;
    align-items: center;
    max-width: 900px;
}

/* Öffentliche Mobilnavigation */
.mobileNavState,
.mobileNavToggle { display:none; }
.mobileNavPanel { display:contents; }
@media (max-width:760px) {
    .headerInner { position:relative; min-height:68px; padding:10px 16px; gap:10px; align-items:center; flex-wrap:nowrap; }
    .logoLink { margin-right:auto; padding:4px 0; }
    .logo { height:42px; }
    .mobileNavState { position:absolute; inline-size:1px; block-size:1px; opacity:0; pointer-events:none; }
    .mobileNavToggle { display:inline-flex; align-items:center; gap:9px; min-height:42px; padding:0 12px; border:1px solid #cbd5e1; border-radius:10px; background:#fff; color:#182b49; font:inherit; font-size:13px; font-weight:850; cursor:pointer; }
    .mobileNavToggleIcon { display:grid; gap:4px; width:17px; }
    .mobileNavToggleIcon i { display:block; width:17px; height:2px; border-radius:2px; background:currentColor; }
    .mobileNavToggleText { margin-left:5px; }
    .mobileNavToggleText b { display:block; font-weight:850; }
    .mobileNavToggleText b:last-child { display:none; }
    .mobileNavPanel { display:none; }
    .mobileNavState:checked ~ .mobileNavPanel { display:block; position:absolute; top:100%; left:0; right:0; z-index:51; padding:8px 16px 16px; background:#fff; border-top:1px solid #e4eaf2; border-bottom:1px solid #dbe3ee; box-shadow:0 14px 28px rgba(20,42,75,.16); }
    .mobileNavPanel .mainNav { display:flex; width:100%; flex:none; margin:0; flex-direction:column; align-items:stretch; border:0; }
    .mobileNavPanel .mainNav a { min-height:48px; padding:0 13px; border-bottom:1px solid #edf1f6; font-size:16px; }
    .mobileNavPanel .mainNav a:last-child { border-bottom:0; }
    .mobileNavPanel .headerRight { display:flex; width:100%; margin:14px 0 0; padding-top:14px; border-top:1px solid #edf1f6; align-items:stretch; }
    .mobileNavState:checked + .mobileNavToggle .mobileNavToggleText b:first-child { display:none; }
    .mobileNavState:checked + .mobileNavToggle .mobileNavToggleText b:last-child { display:block; }
    .mobileNavPanel .headerLangTop { justify-content:flex-start; flex-wrap:wrap; }
    .mobileNavPanel .headerAccountRow { flex-wrap:wrap; justify-content:flex-start; }
}

.expertFilterBox input,
.expertFilterBox select {
    width: 100%;
    height: 48px;
    border: 1px solid #ccd6e4;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
}

.expertFilterBox button {
    height: 48px;
    border: 0;
    cursor: pointer;
    padding: 0 24px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.expertLetters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    max-width: 980px;
}

.expertLetters a {
    min-width: 36px;
    height: 36px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.expertLetters a.active,
.expertLetters a:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.activeFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filterBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e8f1ff;
    color: #1558d6;
    font-size: 14px;
    font-weight: 800;
}

.filterBadge span {
    font-size: 18px;
    line-height: 1;
}

.expertResultTop {
    margin-bottom: 24px;
    color: #26324a;
    font-size: 17px;
}

.expertPagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 42px;
}

.expertPagination a,
.expertPagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.expertPagination a.active,
.expertPagination a:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

@media (max-width: 820px) {
    .expertFilterBox {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .expertFilterBox button {
        width: fit-content;
    }
}

/* About */

.aboutHero {
    padding: 72px 24px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 62%);
    border-bottom: 1px solid #e3e8ef;
}

.aboutHeroInner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 52px;
    align-items: center;
}

.aboutHeroText h1 {
    margin: 0 0 18px;
    max-width: 720px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111827;
}

.aboutHeroText p {
    margin: 0 0 30px;
    max-width: 680px;
    font-size: 20px;
    line-height: 1.5;
    color: #5b6577;
}

.aboutHeroImage img,
.aboutImageBlock img {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 22px 55px rgba(22, 34, 51, 0.14);
}

.aboutHeroImage img {
    aspect-ratio: 4 / 3;
}

.aboutGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    align-items: stretch;
}

.aboutTextBlock {
    padding: 34px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    box-shadow: 0 18px 42px rgba(22, 34, 51, 0.07);
}

.aboutTextBlock h2 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.15;
    color: #111827;
}

.aboutTextBlock p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #5b6577;
}

.aboutImageBlock img {
    height: 100%;
    min-height: 300px;
}

.aboutCta {
    padding: 72px 24px;
    background: #111827;
    color: #ffffff;
}

.aboutCtaInner {
    text-align: center;
}

.aboutCta h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 48px);
}

.aboutCta p {
    margin: 0 auto 28px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}

@media (max-width: 980px) {
    .aboutHeroInner,
    .aboutGrid {
        grid-template-columns: 1fr;
    }

    .aboutHeroImage {
        max-width: 520px;
    }
}

@media (max-width: 620px) {
    .aboutHero {
        padding: 54px 20px;
    }

    .aboutTextBlock {
        padding: 26px;
    }

    .aboutTextBlock h2 {
        font-size: 25px;
    }
}

/* Contact */

.contactHero {
    padding: 68px 24px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 62%);
}

.contactHeroInner {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 52px;
    align-items: start;
}

.contactIntro h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    color: #111827;
}

.contactIntro p {
    max-width: 620px;
    margin: 0 0 28px;
    font-size: 19px;
    line-height: 1.55;
    color: #5b6577;
}

.contactApplyBox {
    max-width: 520px;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dbe3ee;
    box-shadow: 0 18px 42px rgba(22, 34, 51, 0.08);
}

.contactApplyBox h2 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #111827;
}

.contactFormCard {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #dbe3ee;
    box-shadow: 0 22px 55px rgba(22, 34, 51, 0.12);
}

.formRow {
    margin-bottom: 18px;
}

.formRow label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 800;
    color: #26324a;
}

.formRow input,
.formRow textarea {
    width: 100%;
    border: 1px solid #ccd6e4;
    border-radius: 16px;
    padding: 13px 15px;
    font-size: 16px;
    outline: none;
}

.formRow textarea {
    min-height: 140px;
    resize: vertical;
}

.formRow input:focus,
.formRow textarea:focus {
    border-color: #2563eb;
}

.contactButton {
    border: 0;
    cursor: pointer;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.formSuccess {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #e8f8ee;
    color: #146c2e;
    font-weight: 700;
}

.formError {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fdecec;
    color: #9f1d1d;
    font-weight: 700;
}

.hpField {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

@media (max-width: 980px) {
    .contactHeroInner {
        grid-template-columns: 1fr;
    }

    .contactFormCard {
        max-width: 620px;
    }
}


/* Expert Apply */

.applyHero{
    padding:70px 24px;
    background:linear-gradient(135deg,#eef5ff 0%,#ffffff 62%);
}

.applyIntroFull{
    max-width:780px;
    margin-bottom:34px;
}

.applyIntroFull h1{
    margin:0 0 14px;
    font-size:clamp(38px,5vw,60px);
    line-height:1.05;
    color:#111827;
}

.applyIntroFull p{
    margin:0;
    font-size:19px;
    line-height:1.55;
    color:#5b6577;
}

.applyCard{
    width:100%;
    padding:32px;
    border-radius:28px;
    background:#ffffff;
    border:1px solid #dbe3ee;
    box-shadow:0 22px 55px rgba(22,34,51,0.12);
}

.formGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.applyCategoryList{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:10px;
}

.applyCategoryGroup{
    border:1px solid #dbe3ee;
    border-radius:18px;
    background:#f8fafc;
    overflow:hidden;
}

.applyCategoryToggle{
    width:100%;
    border:0;
    cursor:pointer;
    background:#ffffff;
    padding:15px 16px;
    display:flex;
    align-items:center;
    gap:10px;
    text-align:left;
    color:#111827;
}

.applyCategoryToggle strong{
    flex:1;
    font-size:15px;
}

.applyCategoryToggle small{
    min-width:28px;
    height:24px;
    border-radius:999px;
    background:#e8f1ff;
    color:#1558d6;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:800;
}

.applyToggleIcon{
    width:24px;
    height:24px;
    border-radius:999px;
    background:#2563eb;
    color:#ffffff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.applySubCategories{
    display:none;
    padding:14px;
    border-top:1px solid #dbe3ee;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.applySubCategories.open{
    display:grid;
}

.checkItem{
    display:flex;
    align-items:center;
    gap:8px;
    padding:11px 12px;
    border-radius:14px;
    background:#ffffff;
    border:1px solid #dbe3ee;
    font-weight:700;
}

.mainCheck{
    background:#e8f1ff;
    border-color:#a8c7ff;
    color:#1558d6;
}

.checkboxGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-top:10px;
}

.captchaRow{
    max-width:260px;
}

@media (max-width: 980px){
    .formGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .applyCategoryList{
        grid-template-columns:1fr;
    }

    .checkboxGrid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 680px){
    .formGrid,
    .checkboxGrid,
    .applySubCategories{
        grid-template-columns:1fr;
    }

    .applyCard{
        padding:24px;
    }
}

.formRowWide{
    grid-column: span 3;
}

@media (max-width: 980px){
    .formRowWide{
        grid-column: span 2;
    }
}

@media (max-width: 680px){
    .formRowWide{
        grid-column: span 1;
    }
}



/* Expert Detail */

.expertDetailHero{
    padding:64px 24px;
    background:linear-gradient(135deg,#eef5ff 0%,#ffffff 62%);
    border-bottom:1px solid #e3e8ef;
}

.expertDetailHeroInner{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:52px;
    align-items:center;
}

.expertDetailImage img{
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    display:block;
    border-radius:32px;
    box-shadow:0 24px 60px rgba(22,34,51,0.14);
}

.backLink{
    display:inline-flex;
    margin-bottom:18px;
    color:#1558d6;
    font-weight:800;
}

.expertDetailIntro h1{
    margin:0 0 16px;
    font-size:clamp(38px,5vw,66px);
    line-height:1.04;
    color:#111827;
    letter-spacing:-1.5px;
}

.expertLead{
    max-width:760px;
    margin:0 0 26px;
    font-size:20px;
    line-height:1.55;
    color:#5b6577;
}

.expertLanguageBox{
    margin-bottom:28px;
}

.expertLanguageBox > strong{
    display:block;
    margin-bottom:10px;
    color:#26324a;
}

.expertLanguageList{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.expertLangBadge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid #cbd5e1;
    color:#334155;
    font-weight:800;
    font-size:14px;
}

.expertLangBadge span{
    font-size:19px;
}

.expertLangBadge.active{
    border-color:#2563eb;
    background:#e8f1ff;
    color:#1558d6;
}

.expertHeroActions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.secondaryButton{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 26px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid #cbd5e1;
    color:#26324a;
    font-size:16px;
    font-weight:800;
}

.expertDetailSection{
    background:#ffffff;
}

.expertDetailGrid{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 380px;
    gap:34px;
    align-items:start;
}

.expertMainColumn{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.expertInfoCard{
    padding:30px;
    border-radius:26px;
    background:#ffffff;
    border:1px solid #e3e8ef;
    box-shadow:0 18px 42px rgba(22,34,51,0.07);
}

.expertInfoCard h2{
    margin:0 0 14px;
    font-size:28px;
    line-height:1.15;
    color:#111827;
}

.expertInfoCard p{
    margin:0;
    font-size:17px;
    line-height:1.65;
    color:#5b6577;
}

.expertTwoCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.expertTopicGroups{
    display:grid;
    gap:18px;
}

.expertTopicGroup{
    padding:18px;
    border-radius:20px;
    background:#f8fafc;
    border:1px solid #dbe3ee;
}

.expertTopicGroup h3{
    margin:0 0 12px;
    font-size:19px;
    color:#111827;
}

.expertTopicBadges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.expertTopicBadge{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid #cbd5e1;
    color:#334155;
    font-size:14px;
    font-weight:800;
}

.mainTopicBadge{
    background:#e8f1ff;
    border-color:#a8c7ff;
    color:#1558d6;
}

.expertSideColumn{
    position:relative;
}

.expertStickyBox{
    position:sticky;
    top:120px;
    padding:24px;
    border-radius:28px;
    background:#f8fafc;
    border:1px solid #dbe3ee;
    box-shadow:0 18px 42px rgba(22,34,51,0.08);
}

.expertStickyBox h2{
    margin:0 0 18px;
    font-size:26px;
    color:#111827;
}

.expertFeaturedIntro{
    margin:-7px 0 18px;
    color:#5b6577;
    font-size:14px;
    line-height:1.45;
}

.expertServiceList{
    display:grid;
    gap:16px;
}

.expertAllServices{
    padding-top:0;
    background:#ffffff;
}

.expertAllServicesHead{
    margin:0 0 22px;
}

.expertAllServicesHead h2{
    margin:0 0 8px;
    color:#111827;
    font-size:30px;
}

.expertAllServicesHead p{
    margin:0;
    color:#5b6577;
    font-size:16px;
    line-height:1.5;
}

.expertServiceGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.expertServiceCard{
    padding:18px;
    border-radius:22px;
    background:#ffffff;
    border:1px solid #dbe3ee;
}

.serviceTypeLabel{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-bottom:10px;
    padding:6px 10px;
    border-radius:999px;
    background:#e8f1ff;
    color:#1558d6;
    font-size:12px;
    font-weight:900;
}

.serviceTypeIcon{
    display:inline-grid;
    place-items:center;
    width:19px;
    height:19px;
    flex:0 0 19px;
    border-radius:50%;
    background:rgba(21,88,214,.14);
}

.serviceTypeIcon svg{
    width:12px;
    height:12px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.expertServiceCard h3{
    margin:0 0 10px;
    font-size:20px;
    color:#111827;
}

.serviceCategoryBadge{
    display:inline-flex;
    margin-bottom:10px;
    padding:6px 10px;
    border-radius:999px;
    background:#f1f5f9;
    border:1px solid #dbe3ee;
    color:#334155;
    font-size:12px;
    font-weight:800;
}

.expertServiceCard p{
    margin:0 0 14px;
    font-size:14px;
    line-height:1.5;
    color:#5b6577;
}

.servicePriceLine{
    display:flex;
    align-items:baseline;
    flex-wrap:wrap;
    gap:8px;
    margin:12px 0 16px;
}

.servicePriceLine strong{
    font-size:24px;
    color:#111827;
}

.servicePriceLine span{
    font-size:14px;
    color:#5b6577;
    font-weight:700;
}

.serviceBookButton{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    border-radius:999px;
    background:#2563eb;
    color:#ffffff;
    font-weight:900;
}

.emptyText{
    margin:0;
    color:#5b6577;
    line-height:1.5;
}

@media (max-width: 1050px){
    .expertDetailHeroInner{
        grid-template-columns:280px 1fr;
        gap:34px;
    }

    .expertDetailGrid{
        grid-template-columns:1fr;
    }

    .expertStickyBox{
        position:static;
    }
}

@media (max-width: 760px){
    .expertDetailHeroInner{
        grid-template-columns:1fr;
    }

    .expertDetailImage{
        max-width:340px;
    }

    .expertTwoCards{
        grid-template-columns:1fr;
    }

    .expertInfoCard{
        padding:24px;
    }
}


/* MESSAGES */

.quickQuestions {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0 0 16px;
}

.quickQuestions button {
    border:1px solid #cbd5e1;
    cursor:pointer;
    padding:8px 12px;
    border-radius:999px;
    background:#f8fafc;
    color:#334155;
    font-size:13px;
    font-weight:800;
}


.accountTabs{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:26px 0 24px;
}

.accountTabs a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid #d8e1ee;
    color:#334155;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    transition:all 0.18s ease;
    box-shadow:0 6px 16px rgba(15,23,42,0.05);
}

.accountTabs a:hover{
    border-color:#2563eb;
    color:#2563eb;
    transform:translateY(-1px);
}

.accountTabs a.active{
    background:#2563eb;
    border-color:#2563eb;
    color:#ffffff;
    box-shadow:0 10px 22px rgba(37,99,235,0.28);
}

.accountMessageDirection{
    display:inline-flex;
    align-items:center;
    width:fit-content;
    margin-top:8px;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.accountMessageDirection.sent{
    background:#eef2f7;
    color:#334155;
}

.accountMessageDirection.received{
    background:#e8f1ff;
    color:#1558d6;
}

.accountMessageCard.hasUnread .accountMessageDirection.received{
    background:#2563eb;
    color:#ffffff;
}


/* Contact Coach */

.contactCoachPage{
    padding:60px 24px;
    background:linear-gradient(135deg,#eef5ff 0%,#ffffff 62%);
}

.contactCoachLayout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:42px;
    align-items:start;
    margin-top:22px;
}

.contactCoachSidebar{
    position:sticky;
    top:120px;
}

.contactCoachImageWrap{
    margin-bottom:22px;
}

.contactCoachImageWrap img{
    width:100%;
    aspect-ratio:1 / 1;
    display:block;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 24px 60px rgba(22,34,51,0.14);
}

.contactCoachSidebar h1{
    margin:0 0 12px;
    font-size:clamp(34px,4vw,54px);
    line-height:1.05;
    color:#111827;
}

.contactCoachSidebar p{
    margin:0 0 20px;
    font-size:18px;
    line-height:1.55;
    color:#5b6577;
}

.contactCoachLanguages{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

.contactCoachTopics{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.contactCoachForm{
    max-width:640px;
    margin-left:auto;
}

.contactCoachForm h2{
    margin:0 0 8px;
    font-size:30px;
    color:#111827;
}

.contactCoachFormIntro{
    margin:0 0 24px;
    color:#5b6577;
    line-height:1.5;
}

@media (max-width: 980px){
    .contactCoachLayout{
        grid-template-columns:1fr;
    }

    .contactCoachSidebar{
        position:static;
        max-width:520px;
    }

    .contactCoachForm{
        max-width:680px;
        margin-left:0;
    }
}

/* Auth / Account */

.authPage,
.accountPage{
    padding:70px 24px;
    background:linear-gradient(135deg,#eef5ff 0%,#ffffff 62%);
}

.authLayout{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:52px;
    align-items:start;
}

.authIntro h1,
.accountPage h1{
    margin:0 0 14px;
    font-size:clamp(38px,5vw,62px);
    line-height:1.05;
    color:#111827;
}

.authIntro p{
    max-width:620px;
    margin:0;
    font-size:19px;
    line-height:1.55;
    color:#5b6577;
}

.authCard{
    padding:30px;
    border-radius:28px;
    background:#ffffff;
    border:1px solid #dbe3ee;
    box-shadow:0 22px 55px rgba(22,34,51,0.12);
}

.formGrid.twoCols{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.authSwitch{
    margin:18px 0 0;
    font-size:15px;
    color:#5b6577;
}

.authSwitch a{
    font-weight:800;
    color:#1558d6;
}

.accountGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:32px;
}

.accountTile{
    padding:26px;
    border-radius:24px;
    background:#ffffff;
    border:1px solid #dbe3ee;
    box-shadow:0 18px 42px rgba(22,34,51,0.08);
}

.accountTile strong{
    display:block;
    margin-bottom:8px;
    font-size:20px;
    color:#111827;
}

.accountTile span{
    color:#5b6577;
}

@media (max-width:980px){
    .authLayout{
        grid-template-columns:1fr;
    }

    .accountGrid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:620px){
    .formGrid.twoCols,
    .accountGrid{
        grid-template-columns:1fr;
    }
}

.authIntroFull{
    max-width: 760px;
    margin-bottom: 32px;
}

.authIntroFull h1{
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    color: #111827;
}


.authIntroFull{
    max-width: 760px;
    margin-bottom: 32px;
}

.authIntroFull h1{
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    color: #111827;
}

.authIntroFull p{
    margin: 0;
    max-width: 680px;
    font-size: 19px;
    line-height: 1.55;
    color: #5b6577;
}

.authCardWide{
    width: 100%;
    max-width: none;
}

.authCardWide form{
    display: block;
}

.registerGrid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
    margin-bottom:24px;
}

.registerWide{
    grid-column:span 2;
}

.authCardWide .contactButton{
    width:auto;
    min-height:52px;
    margin-top:0;
    padding:0 28px;
}

.authSwitch{
    margin-top:20px;
}

.authRoleLinks{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin:16px 0 0}.authRoleLinks a{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 14px;border:1px solid #bfdbfe;border-radius:999px;background:#eff6ff;color:#1d4ed8;font-size:13px;font-weight:800;line-height:1;text-decoration:none;transition:background-color .18s ease,border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease}.authRoleLinks a:hover,.authRoleLinks a:focus-visible{border-color:#2563eb;background:#2563eb;color:#fff;box-shadow:0 5px 12px rgba(37,99,235,.22);outline:none;transform:translateY(-1px)}

@media (max-width:720px){
    .registerGrid{
        grid-template-columns:1fr;
    }

    .registerWide{
        grid-column:span 1;
    }
}


.authCardSmall{
    max-width:520px;
}


/* Account messages */

.accountMessageList{
    display:grid;
    gap:16px;
    margin-top:30px;
}

.accountMessageCard{
    display:grid;
    grid-template-columns:84px 1fr;
    gap:18px;
    padding:18px;
    border-radius:24px;
    background:#ffffff;
    border:1px solid #dbe3ee;
    box-shadow:0 14px 34px rgba(22,34,51,0.07);
}

.accountMessageCard.hasUnread{
    border-color:#2563eb;
    background:#f8fbff;
}

.accountMessageImage img{
    width:84px;
    height:84px;
    border-radius:20px;
    object-fit:cover;
    display:block;
}

.accountMessageTop{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.accountMessageTop strong{
    font-size:19px;
    color:#111827;
}

.accountMessageMeta{
    margin-top:5px;
    color:#5b6577;
    font-size:14px;
    font-weight:700;
}

.accountMessageBody p{
    margin:10px 0 0;
    color:#5b6577;
    line-height:1.5;
}

.accountUnreadBadge{
    min-width:24px;
    height:24px;
    padding:0 7px;
    border-radius:999px;
    background:#ef4444;
    color:#ffffff;
    font-size:12px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.emptyTextBox{
    padding:34px;
    border-radius:24px;
    background:#ffffff;
    border:1px solid #dbe3ee;
    color:#5b6577;
}


/* Account Profile */

.profileLayout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:28px;
    align-items:start;
}

.profileImageCard{
    padding:28px;
    border-radius:28px;
    background:#ffffff;
    border:1px solid #dbe3ee;
    box-shadow:0 18px 42px rgba(22,34,51,0.08);
}

.profileImageCard h2{
    margin:0 0 18px;
    font-size:24px;
    color:#111827;
}

.profileImagePreview{
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    background:#e8f1ff;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.profileImagePreview img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.profileInitials{
    font-size:54px;
    font-weight:900;
    color:#1558d6;
}

.profileHelpText{
    margin:16px 0 0;
    font-size:14px;
    line-height:1.45;
    color:#5b6577;
}

.profileChecks{
    display:grid;
    gap:12px;
    margin:22px 0;
}

.profileCheckItem{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:16px;
    border-radius:18px;
    background:#f8fafc;
    border:1px solid #dbe3ee;
}

.profileCheckItem input{
    margin-top:4px;
}

.profileCheckItem strong{
    display:block;
    margin-bottom:4px;
    color:#111827;
}

.profileCheckItem small{
    display:block;
    color:#5b6577;
    line-height:1.4;
}

.cropModal{
    position:fixed;
    inset:0;
    z-index:9999;
    background:rgba(15,23,42,0.72);
    align-items:center;
    justify-content:center;
    padding:24px;
}

.cropModalInner{
    width:min(760px, 100%);
    padding:24px;
    border-radius:28px;
    background:#ffffff;
}

.cropModalInner h2{
    margin:0 0 18px;
    color:#111827;
}

.cropImageBox{
    max-height:520px;
    overflow:hidden;
    border-radius:20px;
    background:#111827;
}

.cropImageBox img{
    max-width:100%;
    display:block;
}

.cropActions{
    display:flex;
    gap:12px;
    margin-top:18px;
}

@media (max-width: 900px){
    .profileLayout{
        grid-template-columns:1fr;
    }

    .profileImageCard{
        max-width:420px;
    }
}

.passwordCard{
    margin-top:28px;
}

.formRow select{
    width:100%;
    height:48px;
    border:1px solid #ccd6e4;
    border-radius:16px;
    padding:0 16px;
    font-size:16px;
    font-family:inherit;
    outline:none;
    background:#ffffff;
    color:#182033;
}

.formRow select:focus{
    border-color:#2563eb;
}


/* MESSAGE THREATS */

.messageThreadHeader{
    display:flex;
    align-items:center;
    gap:18px;
    margin:28px 0;
}

.messageThreadHeader h1{
    margin:0 0 6px;
}

.accountConversation{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:26px 0;
}

.accountMessageBubble{
    max-width:760px;
    padding:18px;
    border-radius:22px;
    border:1px solid #dbe3ee;
    background:#ffffff;
}

.accountMessageBubble.fromUser{
    align-self:flex-end;
    background:#e8f1ff;
    border-color:#bcd3ff;
}

.accountMessageBubble.fromCoach{
    align-self:flex-start;
    background:#ffffff;
}

.accountMessageBubbleMeta{
    margin-bottom:8px;
    font-size:13px;
    font-weight:900;
    color:#5b6577;
}

.accountMessageBubbleText{
    color:#182033;
    line-height:1.55;
}

.accountReplyForm{
    max-width:760px;
    margin-top:28px;
}

.accountConversation{
    display:flex;
    flex-direction:column;
    gap:0;
    margin:26px 0;
    max-width:860px;
    border:1px solid #dbe3ee;
    border-radius:24px;
    overflow:hidden;
    background:#ffffff;
}

.accountMessageItem{
    padding:18px 22px;
    border-bottom:1px solid #e5eaf2;
    background:#ffffff;
}

.accountMessageItem:last-child{
    border-bottom:0;
}

.accountMessageItem.fromUser{
    background:#f8fbff;
}

.accountMessageItem.fromCoach{
    background:#ffffff;
}

.accountMessageItemHeader{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:10px;
}

.accountMessageSender{
    font-size:15px;
    font-weight:900;
    color:#111827;
}

.accountMessageItem.fromUser .accountMessageSender{
    color:#1558d6;
}

.accountMessageDate{
    flex-shrink:0;
    text-align:right;
    font-size:13px;
    font-weight:800;
    color:#64748b;
    line-height:1.25;
}

.accountMessageDate span{
    display:block;
    font-size:12px;
    font-weight:700;
    color:#94a3b8;
}

.accountMessageItemText{
    font-size:16px;
    line-height:1.55;
    color:#182033;
    white-space:normal;
}

@media (max-width:620px){
    .accountMessageItemHeader{
        flex-direction:column;
        gap:4px;
    }

    .accountMessageDate{
        text-align:left;
    }
}

/* Wallet Page */

.walletPage {
    padding: 50px 0;
    background: #f5f7fb;
    min-height: 70vh;
}

.walletBox {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}

.walletHeader {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.walletHeader h1 {
    margin: 0 0 8px 0;
    font-size: 34px;
}

.walletHeader p {
    margin: 0;
    color: #667085;
    max-width: 680px;
    line-height: 1.5;
}

.walletBack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    background: #ffffff;
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.walletGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 26px;
}

.walletCard {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef0f4;
}

.walletCardLabel {
    font-size: 14px;
    color: #667085;
    margin-bottom: 8px;
    font-weight: 700;
}

.walletCardAmount {
    font-size: 30px;
    font-weight: 900;
    color: #111827;
}

.walletSection {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef0f4;
    margin-bottom: 26px;
}

.walletSection h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
}

.walletSectionText {
    color: #667085;
    margin: 0 0 20px 0;
}

.topupGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.topupOption {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    background: #f9fafb;
    text-align: center;
}

.topupAmount {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.topupButton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
    width: 100%;
}

.walletTableWrap {
    overflow-x: auto;
}

.walletTable {
    width: 100%;
    border-collapse: collapse;
}

.walletTable th,
.walletTable td {
    padding: 13px 12px;
    border-bottom: 1px solid #eef0f4;
    text-align: left;
    vertical-align: top;
}

.walletTable th {
    color: #667085;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.walletEmpty {
    color: #667085;
    padding: 18px 0;
}

@media (max-width: 820px) {
    .walletHeader {
        flex-direction: column;
    }

    .walletGrid,
    .topupGrid {
        grid-template-columns: 1fr;
    }

    .walletHeader h1 {
        font-size: 28px;
    }
}


.accountWalletSummary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 20px;
    margin: 22px 0 28px 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.accountWalletSummary strong {
    display: block;
    font-size: 14px;
    color: #667085;
    margin-bottom: 4px;
}

.accountWalletSummary span {
    font-size: 24px;
    font-weight: 900;
    color: #111827;
}

.accountWalletButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .accountWalletSummary {
        flex-direction: column;
        align-items: flex-start;
    }

    .accountWalletButton {
        width: 100%;
    }
}

.topupBonus {
    margin-top: -4px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #18713a;
}

.topupTotal {
    margin-bottom: 12px;
    font-size: 13px;
    color: #667085;
    font-weight: 700;
}


/* BOOKING */


.bookingPage {
    padding: 46px 0;
    background: #f5f7fb;
    min-height: 70vh;
}

.bookingBox {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.bookingHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 24px;
}

.bookingHeader h1 {
    margin: 0 0 8px 0;
    font-size: 34px;
}

.bookingHeader p {
    margin: 0;
    color: #667085;
}

.bookingBack {
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.bookingLayout {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 22px;
    align-items: start;
}

.bookingCard {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.serviceSummary {
    margin-bottom: 20px;
}

.serviceSummary h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.serviceMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.serviceMeta span {
    background: #f3f4f6;
    border-radius: 999px;
    padding: 7px 11px;
    font-weight: 800;
    color: #374151;
    font-size: 14px;
}

.calendarNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendarNav a {
    text-decoration: none;
    background: #111827;
    color: #ffffff;
    border-radius: 10px;
    padding: 9px 13px;
    font-weight: 900;
}

.calendarTitle {
    font-size: 22px;
    font-weight: 900;
}

.bookingCalendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendarWeekday {
    text-align: center;
    font-size: 13px;
    color: #667085;
    font-weight: 900;
    padding: 8px 0;
}

.calendarDay {
    min-height: 86px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 10px;
    text-decoration: none;
    color: #111827;
    font-weight: 900;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.calendarDay.available {
    background: #ffffff;
    border-color: #111827;
    cursor: pointer;
}

.calendarDay.available:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

.calendarDay.disabled {
    background: #eef0f4;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.calendarDay.selected {
    background: #111827;
    color: #ffffff;
}

.calendarEmpty {
    min-height: 86px;
}

.slotList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.slotOption {
    position: relative;
}

.slotOption input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slotOption span {
    display: block;
    text-align: center;
    border: 1px solid #d1d5db;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    font-weight: 900;
    cursor: pointer;
}

.slotOption input:checked + span {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.bookingTextarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 12px;
    font-size: 15px;
    margin-bottom: 16px;
}

.bookingButton {
    width: 100%;
    border: none;
    background: #111827;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
    font-size: 16px;
}

.bookingNotice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.bookingSuccess {
    background: #e8f7ee;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.bookingError {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .bookingLayout {
        grid-template-columns: 1fr;
    }

    .slotList {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .calendarDay,
    .calendarEmpty {
        min-height: 52px;
        border-radius: 12px;
        padding: 7px;
    }

    .calendarWeekday {
        font-size: 11px;
    }

    .slotList {
        grid-template-columns: 1fr;
    }

    .bookingHeader {
        flex-direction: column;
    }
}


/* account bookings */ 


.bookingCards {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.bookingCardItem {
    background: #ffffff;
    border: 1px solid #dbe4f0;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.bookingCardTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf1f7;
}

.bookingCardGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.bookingLabel {
    font-size: 13px;
    font-weight: 800;
    color: #667085;
    margin-bottom: 5px;
}

.bookingValue {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.bookingExpert {
    font-size: 20px;
}

.bookingSmall {
    margin-top: 4px;
    font-size: 13px;
    color: #667085;
}

.bookingDateBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.bookingDateBlock {
    background: #f8fafc;
    border: 1px solid #e5edf6;
    border-radius: 16px;
    padding: 16px;
}

.bookingCounterDate {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.bookingMessageBox {
    margin-top: 18px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 16px;
}

.bookingMessageText {
    line-height: 1.5;
    color: #7c2d12;
    font-weight: 600;
}

.bookingActions {
    margin-top: 20px;
}

.bookingActionForm textarea {
    width: 100%;
    min-height: 92px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px;
    font-size: 15px;
    resize: vertical;
    margin-bottom: 14px;
}

.bookingButtonRow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bookingPrimaryButton,
.bookingSecondaryButton {
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
}

.bookingPrimaryButton {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.bookingSecondaryButton {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.bookingStatus {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    background: #eef2ff;
    color: #3730a3;
}

.bookingStatus-pending_coach {
    background: #fff7ed;
    color: #9a3412;
}

.bookingStatus-counter_proposed {
    background: #eff6ff;
    color: #1d4ed8;
}

.bookingStatus-confirmed {
    background: #ecfdf3;
    color: #166534;
}

.bookingStatus-declined,
.bookingStatus-cancelled {
    background: #fef2f2;
    color: #991b1b;
}

.bookingNoAction {
    color: #667085;
    font-weight: 800;
}

@media (max-width: 760px) {
    .bookingCardTop,
    .bookingCardGrid,
    .bookingDateBox {
        grid-template-columns: 1fr;
        display: grid;
    }

    .bookingButtonRow {
        flex-direction: column;
    }

    .bookingPrimaryButton,
    .bookingSecondaryButton {
        width: 100%;
    }
}

.accountTileWithBadge {
    position: relative;
}

.accountRedDot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 11px;
    height: 11px;
    background: #ef4444;
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
}

.bookingProposalList {
    margin-top: 22px;
}

.bookingProposalItem {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
    margin-top: 14px;
    background: #ffffff;
}

.bookingProposal-pending {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.bookingProposal-accepted {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.bookingProposal-declined {
    border-color: #fecaca;
    background: #fef2f2;
    opacity: 0.88;
}

.bookingProposal-superseded {
    opacity: 0.68;
}

.bookingProposalMain {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.proposalInlineForm {
    margin-top: 16px;
}

.bookingActionForm input[type="datetime-local"] {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px;
    font-size: 15px;
    margin-top: 8px;
    background: #ffffff;
}

.bookingActionForm label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 700;
    color: #334155;
}

.bookingActionForm textarea,
.proposalInlineForm textarea {
    width: 100%;
    min-height: 90px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px;
    font-size: 15px;
    resize: vertical;
    margin-top: 14px;
    margin-bottom: 14px;
}

.bookingActions {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
}

.bookingSlotPicker {
    margin-top: 14px;
}

.miniSlotList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 14px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
}

.miniSlotOption {
    position: relative;
}

.miniSlotOption input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.miniSlotOption span {
    display: block;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #ffffff;
    padding: 11px 13px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.miniSlotOption input:checked + span {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

@media (max-width: 760px) {
    .miniSlotList {
        grid-template-columns: 1fr;
    }
}

.bookingMiniCalendarWrap {
    margin-top: 14px;
    margin-bottom: 18px;
}

.miniBookingCalendar .calendarDay,
.miniBookingCalendar .calendarEmpty {
    min-height: 54px;
}

.miniProposalSlotList {
    margin-top: 14px;
    margin-bottom: 16px;
}

.bookingSlotPickerButton {
    margin-top: 14px;
    margin-bottom: 22px;
}

.bookingProposalChooser {
    margin-top: 18px;
}

/* Credit gifts */
.giftPromoSection{padding:54px 24px;background:linear-gradient(135deg,#0b1830 0%,#12294d 58%,#173c6e 100%)}
.giftPromoSection .sectionInner{max-width:1240px}
.giftPromoCard{position:relative;overflow:hidden;display:grid;grid-template-columns:280px minmax(0,1fr);align-items:center;min-height:310px;background:transparent;color:#fff}
.giftPromoVisual{position:relative;display:grid;place-items:center;height:100%;min-height:310px;background:radial-gradient(circle at 50% 45%,rgba(255,196,67,.28),transparent 44%)}
.giftPromoVisual span{position:relative;z-index:2;font-size:116px;filter:drop-shadow(0 16px 20px rgba(0,0,0,.28));transform:rotate(-4deg)}
.giftPromoVisual i,.giftPromoVisual b{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.18)}
.giftPromoVisual i{width:240px;height:240px}.giftPromoVisual b{width:170px;height:170px}
.giftPromoCopy{padding:44px 0 44px 28px;max-width:900px}
.giftPromoCopy small,.giftEyebrow{display:inline-flex;align-items:center;padding:7px 12px;border-radius:999px;background:rgba(255,255,255,.12);color:#ffd66b;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.giftPromoCopy h2{margin:14px 0 12px;font-size:clamp(30px,4vw,48px);line-height:1.04;color:#fff}
.giftPromoCopy p{font-size:18px;line-height:1.6;color:#dbe8fb;max-width:820px}
.giftPromoSafe{margin:18px 0;color:#bcebd0;font-weight:750}
.giftPromoCopy a,.giftClaimButton{display:inline-flex;justify-content:center;align-items:center;padding:14px 22px;border-radius:999px;background:#ffad22;color:#101827;text-decoration:none;font-weight:900;border:0;cursor:pointer}
.giftPage{max-width:1120px}.giftPageHero{display:flex;justify-content:space-between;gap:25px;align-items:flex-end;margin:20px 0 22px}.giftPageHero h1{margin:12px 0 5px}.giftBalance{min-width:220px;padding:18px;border-radius:18px;background:#10213d;color:#fff}.giftBalance small{display:block;color:#b9c9df}.giftBalance strong{display:block;margin-top:5px;font-size:25px}.giftRule{padding:15px 18px;border:1px solid #f0c76d;border-radius:14px;background:#fff7dd;color:#694c00;font-weight:700;margin-bottom:18px}.giftColumns{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:20px}.giftForm,.giftHistory,.giftCreated{padding:20px;border:1px solid #dbe3ef;border-radius:18px;background:#fff}.giftForm{display:grid;gap:14px}.giftForm label{display:grid;gap:7px;font-weight:800}.giftForm input,.giftForm select,.giftForm textarea,.giftCreated input{width:100%;box-sizing:border-box;padding:12px;border:1px solid #cbd7e7;border-radius:10px;font:inherit}.giftForm textarea{min-height:110px}.giftForm button,.giftCreated button{padding:13px 18px;border:0;border-radius:10px;background:#2563eb;color:#fff;font-weight:900;cursor:pointer}.giftCreated{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:12px;margin:16px 0}.giftHistory h2{margin-top:0}.giftHistory article{display:grid;grid-template-columns:1fr auto auto;gap:12px;align-items:center;padding:13px 0;border-bottom:1px solid #e7edf5}.giftHistory article:last-child{border-bottom:0}.giftHistory article small{display:block;color:#65738a;margin-top:4px}.giftStatus{padding:6px 9px;border-radius:999px;font-size:12px;font-weight:850;background:#eef2f7}.giftStatus.pending{background:#fff0bd;color:#795500}.giftStatus.claimed{background:#dff7e8;color:#126438}.giftStatus.expired{background:#f1f3f6;color:#667085}
.giftClaimPage{min-height:70vh;display:grid;place-items:center;padding:60px 20px;background:linear-gradient(160deg,#f4f8ff,#fff9eb)}.giftClaimCard{width:min(620px,100%);box-sizing:border-box;padding:38px;border-radius:28px;background:#fff;border:1px solid #dbe4f0;box-shadow:0 24px 70px rgba(15,35,68,.14);text-align:center}.giftClaimIcon{font-size:78px}.giftClaimCard h1{font-size:38px;margin:10px 0}.giftClaimAmount{margin:22px 0;padding:22px;border-radius:18px;background:#10213d;color:#fff}.giftClaimAmount small{display:block;color:#bbcae0}.giftClaimAmount strong{display:block;font-size:34px;margin-top:4px}.giftClaimMessage{padding:16px;border-radius:14px;background:#f4f7fb;text-align:left}.giftClaimMessage p{font-size:18px}.giftClaimExpiry{color:#667085}.giftClaimActions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}.giftClaimButton{font:inherit}.giftClaimButton.secondary{background:#e8eef7;color:#10213d}.giftBack{display:inline-block;margin-top:22px;color:#44546b}
@media(max-width:760px){.giftPromoCard{grid-template-columns:1fr}.giftPromoVisual{min-height:190px}.giftPromoVisual span{font-size:88px}.giftPromoCopy{padding:10px 24px 30px}.giftColumns{grid-template-columns:1fr}.giftPageHero{align-items:stretch;flex-direction:column}.giftCreated{grid-template-columns:1fr}.giftHistory article{grid-template-columns:1fr auto}.giftStatus{grid-column:1/-1}.giftClaimCard{padding:25px}.giftClaimCard h1{font-size:30px}}
