*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #e8f0f4;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 20px;
}
.page {
    width: 100%;
    max-width: 1290px;
}
.card {
    background: #fff;
    border-radius: 34px;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.06);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}
.card .card-header {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    min-height: 331px;
    border-radius: 34px 34px 0 0;
    background: linear-gradient(137.63deg, rgba(0,184,216,0.75) 0%, rgba(0,144,172,0.75) 52%, rgba(0,118,141,0.75) 100%);
    box-shadow: 0 13px 57px rgba(0,144,172,0.3);
    overflow: hidden;
}
.card-header .header-logo {
    position: absolute;
    top: 21px;
    left: 55px;
    width: 54px;
    height: 54px;
    object-fit: contain;
    z-index: 3;
}
.card-header .header-character {
     position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    /* height: 335px; */
    height: 100%;
    width: auto;
    opacity: 0.5;
    pointer-events: none;
    object-fit: contain;
    /* position: absolute;
    top: 0px;
    left: 0%;
    width: 100%;
    opacity: 0.5;
    pointer-events: none;
    object-fit: cover; */
}
.card .profile {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 29px 0 57px;
    min-height: 331px;
}
.profile .avatar-wrap {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.70) 100%);
    box-shadow: 0 17px 36px rgba(0,0,0,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-wrap img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}
.profile .profile-info {
    flex: 1;
    padding: 0 0 0 42px;
}
.profile-info .name-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.name-group h1 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: -0.63px;
}
.name-group .verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    flex-shrink: 0;
}
.name-group .verified-badge img {
    width: 11px;
    height: 11px;
}
.profile-info .company {
    display: none;
}
.profile-info .tagline {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}
.tagline .gold {
    color: #ffe08a;
    font-weight: 600;
}
.profile .profile-btns {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 379px;
}
.profile-btns .btn-save,
.profile-btns .btn-appt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 65px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 24px;
    transition: opacity 0.2s, transform 0.1s;
}
.profile-btns .btn-save {
    background: white;
    color: #0090ac;
    box-shadow: 0 10px 12px rgba(0,0,0,0.12);
}
.profile-btns .btn-appt {
    background: linear-gradient(106.1deg, #00B3D2 7.79%, #007A90 85.82%);
    color: white;
}
.profile-btns .btn-save:hover,
.profile-btns .btn-appt:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.profile-btns .btn-icon {
    width: 23px;
    height: 23px;
    object-fit: contain;
}
.card .section-label-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 24px 0;
}
.section-label-row .section-label {
    font-size: 15px;
    font-weight: 700;
    color: #9aa7ad;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.section-label-row .section-line {
    flex: 1;
    height: 1.2px;
    background: #e7ecef;
}
.card .contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
    padding: 22px 24px 0;
}
.contacts-grid .contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(0,179,210,0.04);
    border-radius: 13px;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.1s;
    min-height: 99px;
}
.contacts-grid .contact-card.card-tall {
    min-height: 125px;
}
.contacts-grid .contact-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}
.contact-card .card-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card .card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.contact-card .card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.card-body .card-title {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #18242c;
    line-height: 1.3;
}
.card-body .card-sub {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #8a969c;
    line-height: 1.3;
     margin-top: 2px;
     word-break: break-all;
}
.contact-card .card-arrow {
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card .download-wrap {
    padding: 40px 15px 44px;
    text-align: center;
}
.download-wrap .download-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 22px;
}
.download-wrap .store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.download-wrap .store-badges a img {
    height: 96px;
    width: 268px;
    object-fit: contain;
    display: block;
}
