* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f0f0f0;
    min-height: 100%;
    padding-bottom: 80px;
    -webkit-overflow-scrolling: touch;
}

.home-page {
    background: white;
    position: relative;
    width: 100%;
    max-width: 393px;
    min-height: 2427px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 393px) {
    .home-page,
    .test-page,
    .account-page,
    .login-page {
        max-width: 100%;
    }

    .fixgrip-bottom {
        max-width: 100%;
    }
}

/* Fixed Bottom Navigation */
.fixgrip-bottom {
    position: fixed;
    background: white;
    display: flex;
    height: 62px;
    align-items: center;
    justify-content: space-evenly;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 6px 8px;
    box-shadow: 0px -5px 5px 0px rgba(0,0,0,0.25);
    bottom: 0;
    width: 100%;
    max-width: 393px;
    z-index: 9999;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fixgrip-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 58px;
    text-decoration: none;
    position: relative;
    padding: 6px 4px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fixgrip-item p {
    font-weight: 500;
    font-size: 9px;
    color: #9ca3af;
    line-height: 1.134;
    text-align: center;
    transition: color 0.3s ease;
}

/* Inactive icon state */
.fixgrip-item .icon-mask {
    background: #9ca3af;
    transition: background 0.3s ease;
}

/* Active navigation item */
.fixgrip-item.active {
    background: rgba(0, 153, 177, 0.08);
}

.fixgrip-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #0099b1;
    border-radius: 0 0 3px 3px;
}

.fixgrip-item.active p {
    color: #0099b1;
    font-weight: 600;
}

.fixgrip-item.active .icon-mask {
    background: #0099b1;
}

/* Hover state for non-active items */
.fixgrip-item:not(.active):hover {
    background: rgba(0, 153, 177, 0.05);
}

.fixgrip-item:not(.active):hover p {
    color: #0099b1;
}

.fixgrip-item:not(.active):hover .icon-mask {
    background: #0099b1;
}

.fixgrip-item:not(.active):hover .icon-types svg {
    color: #0099b1;
}

/* Center Test button - elevated circle with white bump */
.fixgrip-item-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 58px;
    position: relative;
}

/* White protruding area behind the center circle */
.fixgrip-item-center::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.08);
}

.fixgrip-center-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -28px;
    transition: all 0.3s ease;
    background: #c0cdd4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fixgrip-center-circle .icon-mask {
    background: white;
    width: 22px;
    height: 22px;
}

.fixgrip-item-center p {
    font-weight: 500;
    font-size: 9px;
    color: #9ca3af;
    line-height: 1.134;
    text-align: center;
    margin-top: 3px;
    transition: all 0.3s ease;
}

/* Center button - active state */
.fixgrip-item-center.active .fixgrip-center-circle {
    background: #0099b1;
    box-shadow: 0 4px 16px rgba(0, 153, 177, 0.45);
}

.fixgrip-item-center.active p {
    color: #0099b1;
    font-weight: 600;
}

/* Center button - hover (non-active) */
.fixgrip-item-center:not(.active):hover .fixgrip-center-circle {
    background: #a0b4bc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.fixgrip-item-center:not(.active):hover p {
    color: #6b7a82;
}

.icon-persona, .icon-test, .icon-contactus, .icon-account, .icon-types {
    position: relative;
    width: 26px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Types icon SVG color */
.icon-types svg {
    width: 22px;
    height: 22px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.fixgrip-item.active .icon-types svg {
    color: #0099b1;
}

.icon-mask {
    width: 22px;
    height: 22px;
    background: #0099b1;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* Header Background */
.home-header-background {
    position: absolute;
    height: 437px;
    left: 0;
    top: 67px;
    width: 100%;
}

.home-header-background img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partner Background */
.home-partner-background {
    position: absolute;
    background: #fafafa;
    height: 638px;
    left: -2px;
    border-radius: 14px;
    top: 1589px;
    width: calc(100% + 4px);
}

/* Home Text */
.home-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    left: 18px;
    right: 22px;
    top: 106px;
    color: white;
    z-index: 2;
}

.big-text {
    font-weight: 600;
    line-height: 1.134;
    font-size: clamp(24px, 7.4vw, 29px);
    letter-spacing: -0.58px;
    width: 100%;
}

.big-text p {
    margin: 0;
}

.small-text {
    font-weight: 400;
    line-height: 1.34;
    font-size: clamp(13px, 3.8vw, 15px);
    text-align: right;
    max-width: 197px;
}

/* Sven Picture */
.homepic-sven-wrapper {
    position: absolute;
    display: flex;
    height: 280px;
    align-items: center;
    justify-content: center;
    left: 10px;
    top: 259px;
    width: 219px;
    transform: scaleY(-1) rotate(180deg);
    z-index: 2;
}

.homepic-sven {
    height: 280px;
    width: 219px;
    overflow: hidden;
}

.homepic-sven img {
    position: absolute;
    height: 125.58%;
    left: -6.85%;
    top: 0;
    width: 106.85%;
    max-width: none;
}

/* Type Background */
.home-type-background {
    position: absolute;
    height: 427px;
    left: -14px;
    top: 832px;
    width: calc(100% + 28px);
}

.home-type-background img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header OCTA.Methode */
.headerpic-octa-methode {
    position: absolute;
    height: 48px;
    left: 15px;
    top: 12px;
    width: 241px;
    z-index: 10;
    overflow: hidden;
}

.headerpic-octa-methode img {
    position: absolute;
    height: 713.64%;
    left: -0.23%;
    top: -286.36%;
    width: 100.46%;
    max-width: none;
}

/* Logo */
.homepic-logo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 254px;
    top: 415px;
    width: 91.258px;
    z-index: 3;
}

.weyh-logo {
    height: 41px;
    width: 42px;
}

.weyh-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sven-logo {
    aspect-ratio: 123/31;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sven-logo img {
    position: absolute;
    height: 135.48%;
    left: -0.11%;
    top: -35.48%;
    width: 100.21%;
    max-width: none;
}

/* Partner Picture 1 */
.home-partner-pic1 {
    position: absolute;
    height: 265px;
    left: 26px;
    top: 1619px;
    width: 139px;
    overflow: hidden;
}

.home-partner-pic1 img {
    position: absolute;
    height: 100%;
    left: -11.86%;
    top: 0;
    width: 127.33%;
    max-width: none;
}

/* Article Type */
.home-articletype {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 9px;
    left: 16px;
    right: 16px;
    top: 855px;
    z-index: 2;
}

.title-articletype {
    font-weight: 600;
    line-height: 1.134;
    color: #4269b2;
    font-size: clamp(28px, 8.4vw, 33px);
    letter-spacing: -0.66px;
}

.title-articletype p {
    margin: 0;
}

.description-articletype {
    font-weight: 300;
    line-height: 1.34;
    color: #343e4e;
    font-size: clamp(12px, 3.3vw, 13px);
    letter-spacing: -0.26px;
    max-width: 232px;
}

.description-articletype p {
    margin: 0;
}

.description-articletype .bold {
    font-weight: 500;
}

/* Article News & Events */
.home-articlenewsevent {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 7px;
    left: 21px;
    right: 21px;
    top: 1245px;
}

.home-articlenewsevent .title {
    font-weight: 600;
    line-height: 1.134;
    color: #68943d;
    font-size: clamp(28px, 8.4vw, 33px);
    letter-spacing: -0.66px;
}

.home-articlenewsevent .description {
    font-weight: 300;
    line-height: 1.34;
    color: #343e4e;
    font-size: clamp(12px, 3.3vw, 13px);
    letter-spacing: -0.26px;
}

.home-articlenewsevent .description p {
    margin: 0;
}

.home-articlenewsevent .description .bold {
    font-weight: 500;
}

/* Article Partner */
.home-articlepartner {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: flex-end;
    left: 35px;
    right: 35px;
    text-align: right;
    top: 1612px;
}

.home-articlepartner .title {
    font-weight: 600;
    line-height: 1.134;
    color: #8450a7;
    font-size: clamp(24px, 7.4vw, 29px);
    letter-spacing: -0.58px;
}

.home-articlepartner .description {
    font-weight: 300;
    line-height: 1.34;
    color: #343e4e;
    font-size: clamp(10px, 2.8vw, 11px);
    letter-spacing: -0.22px;
    max-width: 189px;
}

.home-articlepartner .description .bold {
    font-weight: 500;
}

/* Statistics */
.home-statisticnumber {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 4px 0;
    left: 30px;
    right: 30px;
    text-align: center;
    top: 624px;
    z-index: 3;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-weight: 600;
    font-size: clamp(28px, 8.1vw, 32px);
    letter-spacing: -0.64px;
    line-height: 1.134;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 41px;
}

.stat-item .label {
    font-weight: 400;
    color: #343e4e;
    font-size: clamp(11px, 3.1vw, 12px);
    letter-spacing: -0.48px;
    line-height: 1.134;
    min-height: 32px;
    padding: 0 5px;
}

.stat-item .label p {
    margin: 0;
}

.stat-item .label .bold {
    font-weight: 700;
}

.stat-33 {
    grid-column: 1;
    grid-row: 1;
}

.stat-33 .number {
    color: #deca35;
}

.stat-21 {
    grid-column: 2;
    grid-row: 1;
}

.stat-21 .number {
    color: #c25151;
}

.stat-12k {
    grid-column: 1;
    grid-row: 3;
}

.stat-12k .number {
    color: #68943d;
}

.stat-92 {
    grid-column: 2;
    grid-row: 3;
}

.stat-92 .number {
    color: #4269b2;
}

/* Personality Wheel */
.home-personalitywheel-pic-wrapper {
    position: absolute;
    display: flex;
    height: 152.058px;
    align-items: center;
    justify-content: center;
    left: 254px;
    top: 778px;
    width: 151.626px;
    z-index: 3;
}

.home-personalitywheel-pic {
    height: 119.915px;
    width: 119.221px;
    border-radius: 50%;
    background: radial-gradient(circle, #0099b1 0%, #4269b2 100%);
    animation: wheelSpin 30s linear infinite;
}

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.home-personalitywheel-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Button Test */
.home-buttontest {
    position: absolute;
    background: #0099b1;
    display: flex;
    align-items: center;
    height: 62px;
    left: 22px;
    padding: 0 5px;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    top: 539px;
    width: 211px;
    text-decoration: none;
    z-index: 3;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-buttontest:active {
    transform: scale(0.98);
    box-shadow: -2px 2px 2px 0px rgba(0,0,0,0.25);
}

.home-buttontest .button-text {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.134;
    text-align: center;
    color: white;
    width: 172px;
}

.home-buttontest .button-arrow {
    transform: rotate(90deg);
    height: 14.316px;
    width: 18.156px;
}

.home-buttontest .button-arrow img {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0) invert(1);
}

/* Button Type */
.home-buttontype {
    position: absolute;
    background: #4269b2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34.733px;
    left: 21.94px;
    padding: 3px 15px;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    top: 1157px;
    width: 147.157px;
    text-decoration: none;
    z-index: 3;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-buttontype:active {
    transform: scale(0.98);
    box-shadow: -2px 2px 2px 0px rgba(0,0,0,0.25);
}

.home-buttontype .button-text {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.36px;
    line-height: 1.134;
    text-align: center;
    color: white;
    width: 98px;
}

.home-buttontype .button-arrow {
    transform: rotate(90deg);
    height: 10px;
    width: 12.349px;
}

.home-buttontype .button-arrow img {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0) invert(1);
}

/* Contact Us Button */
.home-contactus-button {
    position: absolute;
    background: #8450a7;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 23px;
    left: 242px;
    padding: 4px 9px;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    top: 1851px;
    width: 107px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-contactus-button:active {
    transform: scale(0.98);
    box-shadow: -2px 2px 2px 0px rgba(0,0,0,0.25);
}

.home-contactus-button div {
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.3px;
    line-height: 1.134;
    text-align: center;
    color: white;
}

/* News Slider */
.home-news-slider {
    position: absolute;
    background: #f4f4f4;
    display: flex;
    gap: 6px;
    height: 170px;
    align-items: center;
    justify-content: flex-start;
    left: 0;
    padding: 9px 10px;
    top: 1389px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.home-news-slider::-webkit-scrollbar {
    height: 4px;
}

.home-news-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.instagram-pic {
    height: 137px;
    width: 90px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.instagram-pic img {
    position: absolute;
    height: 100%;
    max-width: none;
}

.instagram-pic:nth-child(1) img,
.instagram-pic:nth-child(5) img {
    left: -0.16%;
    width: 114.17%;
}

.instagram-pic:nth-child(2) img,
.instagram-pic:nth-child(6) img {
    left: -170.91%;
    width: 270.75%;
}

.instagram-pic:nth-child(3) img,
.instagram-pic:nth-child(7) img {
    left: -111.12%;
    top: -0.05%;
    width: 230.25%;
}

.instagram-pic:nth-child(4) img,
.instagram-pic:nth-child(8) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

/* Partner Logos */
.home-partner-logos {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: flex-start;
    left: 178px;
    top: 1737px;
    width: 171px;
}

.home-partner-logos img {
    object-fit: cover;
}

/* image94 - first logo */
.home-partner-logos img:nth-child(1) {
    width: 30px;
    height: 30px;
}

/* image90 */
.home-partner-logos img:nth-child(2) {
    width: 28px;
    height: 28px;
}

/* weyh-logo (image89) */
.home-partner-logos img:nth-child(3) {
    width: 24px;
    height: 24px;
}

/* image88 */
.home-partner-logos img:nth-child(4) {
    width: 46px;
    height: 22px;
}

/* image93 */
.home-partner-logos img:nth-child(5) {
    width: 48px;
    height: 34px;
}

/* image92 */
.home-partner-logos img:nth-child(6) {
    width: 45px;
    height: 22px;
}

/* image91 */
.home-partner-logos img:nth-child(7) {
    width: 50px;
    height: 22px;
}

/* Partner Picture 2 */
.home-partner-pic2 {
    position: absolute;
    height: 274px;
    left: 0;
    top: 1933px;
    width: 100%;
    overflow: hidden;
}

.home-partner-pic2 img {
    position: absolute;
    height: 100%;
    left: -4.42%;
    top: 0;
    width: 104.42%;
    max-width: none;
}

/* Footer */
.home-footer {
    position: absolute;
    left: 0;
    top: 2207px;
    width: 100%;
}

.home-footer-background {
    position: absolute;
    height: 220px;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, #e8f4ff 0%, #f0f8ff 100%);
}

.home-footer-background img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-heading {
    position: absolute;
    font-weight: 600;
    line-height: 1.134;
    left: 19px;
    color: #343e4e;
    font-size: clamp(20px, 6.1vw, 24px);
    top: 14px;
    letter-spacing: -0.48px;
    max-width: 189px;
}

.home-footer-menu {
    position: absolute;
    display: flex;
    gap: 20px;
    align-items: center;
    left: 19px;
    color: #0099b1;
    font-size: clamp(10px, 2.8vw, 11px);
    top: 85px;
    letter-spacing: -0.22px;
    flex-wrap: wrap;
}

.home-footer-menu p,
.home-footer-menu a {
    height: 17px;
    line-height: 1.34;
    font-weight: 300;
    margin: 0;
    text-decoration: none;
    color: #0099b1;
}

.footer-address {
    position: absolute;
    font-weight: 300;
    line-height: 1.134;
    right: 19px;
    color: #343e4e;
    font-size: clamp(10px, 2.8vw, 11px);
    text-align: right;
    top: 121px;
    letter-spacing: -0.22px;
    max-width: 213px;
}

.footer-address p {
    margin: 0;
}

.footer-address .bold {
    font-weight: 500;
}

.home-footer-pic1 {
    position: absolute;
    right: 19px;
    width: 57px;
    height: 57px;
    top: 45px;
}

.home-footer-pic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-footer-pic2 {
    position: absolute;
    height: 16px;
    right: 19px;
    top: 20px;
    width: 81px;
    overflow: hidden;
}

.home-footer-pic2 img {
    position: absolute;
    height: 713.64%;
    left: -0.23%;
    top: -286.36%;
    width: 100.46%;
    max-width: none;
}

.home-footer-icons {
    position: absolute;
    display: flex;
    gap: 7px;
    align-items: center;
    left: 19px;
    top: 129px;
}

.home-footer-icons img {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

/* Header Menu */
.header-menu {
    position: absolute;
    height: 25.781px;
    right: 22px;
    top: 19px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-search {
    width: 25px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-mask {
    width: 100%;
    height: 100%;
    background: #0099b1;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.icon-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
}

.icon-menu img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bold {
    font-weight: 500;
}


/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

.login-page {
    background: #dadada;
    position: relative;
    width: 100%;
    max-width: 393px;
    min-height: 720px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 45px;
    padding: 52px 18px 80px;
}

.singlesignin {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: center;
    width: 100%;
}

.signin-title {
    font-weight: 600;
    font-size: 32px;
    color: #343e4e;
    text-align: center;
    line-height: 1.134;
}

.google-singlesignin {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    width: 300px;
    height: 48px;
    padding: 12px 17px;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    text-decoration: none;
}

.google-singlesignin .google-icon {
    width: 21px;
    height: 21px;
}

.google-singlesignin span {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    color: #3d3d3d;
    text-align: center;
}

.login-line {
    width: 100%;
    height: 1px;
    margin: 25px 0;
    display: flex;
    justify-content: center;
}

.login-line img {
    width: 342px;
    height: auto;
}

.register-section {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: center;
    width: 100%;
}

.register-title {
    font-weight: 600;
    font-size: 32px;
    color: #343e4e;
    text-align: center;
    line-height: 1.134;
    margin-bottom: 10px;
}

.register-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f1f1f1;
    width: 309px;
    height: 43px;
    padding: 9px 16px;
    border-radius: 13px;
}

.register-field .field-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

.register-field .phone-icon {
    transform: scaleY(-1);
}

.register-field .password-icon {
    width: 22px;
    height: 18px;
    opacity: 0.6;
}

.register-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #343e4e;
    outline: none;
}

.register-input::placeholder {
    color: #a0a0a0;
}

.dsgvo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 273px;
    margin: 30px auto;
}

.dsgvo-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dsgvo-icon {
    width: 14px;
    height: 17px;
}

.dsgvo-header span {
    font-weight: 600;
    font-size: 12px;
    color: #343e4e;
    letter-spacing: -0.24px;
}

.dsgvo-checkbox {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 3px 0;
}

.dsgvo-checkbox input[type="checkbox"] {
    width: 12px;
    height: 11px;
    border: 0.5px solid #b9b9b9;
    background: #fbfbfb;
    cursor: pointer;
}

.dsgvo-checkbox label {
    font-size: 12px;
    color: #343e4e;
    letter-spacing: -0.48px;
    line-height: 1.134;
    cursor: pointer;
}

.login-error {
    background: #c25151;
    color: white;
    padding: 10px 16px;
    border-radius: 14px;
    margin: 0 20px 16px;
    font-size: 14px;
    text-align: center;
}

.login-error p {
    margin: 0;
}

.login-switch {
    text-align: center;
    margin: 0 auto;
}

.login-switch p {
    font-size: 14px;
    color: #343e4e;
}

.login-switch a {
    color: #0099b1;
    font-weight: 600;
    text-decoration: none;
}

.signup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 232px;
    height: 51px;
    background: #0099b1;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    margin: 20px auto 0;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.signup-button span {
    font-weight: 600;
    font-size: 16px;
    color: white;
    letter-spacing: 0.48px;
}

/* ========================================
   TEST PAGE STYLES
   ======================================== */

.test-page {
    background: white;
    position: relative;
    width: 100%;
    max-width: 393px;
    min-height: 1526px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.test-page .headerpic-octa-methode {
    left: 18px;
}

.test-headtitle {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 14px;
    right: 14px;
    top: 93px;
    text-align: center;
    color: #343e4e;
}

.test-headtitle .main-title {
    font-weight: 600;
    font-size: 29px;
    letter-spacing: -0.58px;
    line-height: 1.134;
}

.test-headtitle .sub-title {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.134;
    margin-top: 5px;
}

.test-headtitle .sub-title .bold {
    font-weight: 700;
}

.test-instruction-background {
    position: absolute;
    background: rgba(94, 142, 138, 0.1);
    height: 180px;
    left: -13px;
    border-radius: 7px;
    top: 207px;
    width: 249px;
}

.test-instruction {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
    left: 22px;
    top: 229px;
    width: 202px;
}

.test-instruction .instruction-text {
    font-weight: 400;
    font-size: 15px;
    color: #343e4e;
    text-align: right;
    line-height: 1.34;
    letter-spacing: -0.3px;
}

.test-instruction .instruction-arrow {
    width: 12px;
    height: 10px;
    transform: rotate(90deg);
}

.test-instruction-line {
    position: absolute;
    height: 2px;
    left: -28px;
    top: 385px;
    width: 260px;
}

.test-instruction-line img {
    width: 100%;
    height: 100%;
}

.test-instruction-button {
    position: absolute;
    height: 7px;
    left: 197px;
    top: 394px;
    width: 27px;
}

.test-instruction-button img {
    width: 100%;
    height: 100%;
}

.test-character {
    position: absolute;
    height: 314px;
    left: 236px;
    top: 194px;
    width: 147px;
    z-index: 2;
}

.test-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-background {
    position: absolute;
    height: 685px;
    left: 0;
    top: 496px;
    width: 100%;
}

.test-background img {
    width: 100%;
    height: 100%;
}

.test-questions-section {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    left: 18px;
    right: 18px;
    top: 555px;
    z-index: 2;
}

.test-questions-section .question-text {
    font-weight: 600;
    font-size: 18px;
    color: #343e4e;
    line-height: 1.34;
    letter-spacing: -0.36px;
    width: 100%;
}

.test-answer {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.test-answer .answer-radio {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.test-answer .answer-radio.selected {
    width: 20px;
    height: 20px;
}

.test-answer span {
    font-weight: 400;
    font-size: 15px;
    color: #343e4e;
    line-height: 1.34;
    letter-spacing: -0.3px;
}

.test-buttons {
    position: absolute;
    display: flex;
    gap: 18px;
    left: 50%;
    transform: translateX(-50%);
    top: 1214px;
    z-index: 2;
}

.test-prev-button,
.test-next-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 51px;
    background: #0099b1;
    border: none;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    letter-spacing: 0.48px;
    cursor: pointer;
}

.test-page .home-footer {
    position: absolute;
    left: 0;
    top: 1361px;
    width: 100%;
}

/* ========================================
   ACCOUNT PAGE STYLES
   ======================================== */

.account-page {
    background: white;
    position: relative;
    width: 100%;
    max-width: 393px;
    min-height: 1176px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.account-page .headerpic-octa-methode {
    left: 24px;
}

.account-icons {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    right: 60px;
    top: 104px;
    z-index: 10;
}

.account-icons .logout-icon {
    width: 20px;
    height: 31px;
}

.account-icons .profile-icon {
    width: 32px;
    height: 30px;
}

.account-header {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 18px;
    left: 17px;
    top: 104px;
    width: 360px;
}

.account-title {
    font-weight: 700;
    font-size: 29px;
    color: #0099b1;
    line-height: 1.134;
    letter-spacing: -0.58px;
}

.account-description {
    font-weight: 300;
    font-size: 13px;
    color: #343e4e;
    line-height: 1.34;
    letter-spacing: -0.26px;
}

.account-information {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 13px;
    left: 17px;
    top: 217px;
    width: 360px;
}

.account-information .info-title {
    font-weight: 600;
    font-size: 13px;
    color: #343e4e;
    line-height: 1.34;
    letter-spacing: -0.26px;
}

.info-field {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f1f1f1;
    width: 205px;
    height: 27px;
    padding: 6px 8px;
    border-radius: 13px;
}

.info-field .info-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.info-field .info-icon.phone {
    transform: scaleY(-1);
}

.info-field span {
    font-size: 12px;
    color: #a0a0a0;
    line-height: normal;
}

.info-field input {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #a0a0a0;
    line-height: normal;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    width: 100%;
}

.info-field input:read-only {
    opacity: 0.6;
}

.account-save-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 23px;
    background: #0099b1;
    border: none;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    left: 130px;
    top: 170px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: white;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.account-lasttest {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 7px;
    left: 17px;
    top: 441px;
    width: 360px;
}

.account-lasttest .lasttest-label {
    font-weight: 600;
    font-size: 13px;
    color: #343e4e;
    line-height: 1.34;
    letter-spacing: -0.26px;
}

.account-lasttest .lasttest-result {
    font-weight: 700;
    font-size: 29px;
    color: #cfbb26;
    line-height: 1.134;
    letter-spacing: -0.58px;
}

.account-lasttest .lasttest-date {
    font-weight: 400;
    font-size: 12px;
    color: #a0a0a0;
    line-height: normal;
}

.account-character {
    position: absolute;
    height: 265px;
    left: 247px;
    top: 197px;
    width: 133px;
    transform: scaleY(-1) rotate(180deg);
    z-index: 2;
}

.account-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-download-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 347px;
    height: 51px;
    background: #0099b1;
    border-radius: 140px;
    box-shadow: -4px 4px 4px 0px rgba(0,0,0,0.25);
    left: 22px;
    top: 554px;
    padding: 11px 53px;
    text-decoration: none;
    z-index: 5;
}

.account-download-button img {
    width: 19px;
    height: 23px;
}

.account-download-button span {
    font-weight: 600;
    font-size: 16px;
    color: white;
    letter-spacing: 0.48px;
}

.account-gradient {
    position: absolute;
    height: 414px;
    left: -1px;
    top: 548px;
    width: calc(100% + 2px);
    background: linear-gradient(to bottom, rgba(0, 153, 177, 0) 0%, #0099b1 100%);
}

.account-bottom-image {
    position: absolute;
    height: 386px;
    left: -1px;
    top: 626px;
    width: calc(100% + 2px);
    overflow: hidden;
}

.account-bottom-image img {
    width: 100%;
    height: 153%;
    object-fit: cover;
    object-position: top;
}

.account-page .home-footer {
    position: absolute;
    left: 0;
    top: 1011px;
    width: 100%;
}

/* ==========================================
   PAGE TRANSITION ANIMATIONS
   ========================================== */

/* Page content animation on load */
.home-page,
.test-page,
.account-page,
.login-page,
.types-page,
.contact-page {
    animation: fadeSlideIn 0.4s ease-out;
}

/* Page exit state */
body.page-exit .home-page,
body.page-exit .test-page,
body.page-exit .account-page,
body.page-exit .login-page,
body.page-exit .types-page,
body.page-exit .contact-page {
    animation: fadeSlideOut 0.3s ease-out forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-15px);
    }
}

/* ==========================================
   LAZY LOADING SKELETON
   ========================================== */

.skeleton-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: inherit;
}

.skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite ease-in-out;
    border-radius: inherit;
    z-index: 1;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-wrapper img {
    position: relative;
    z-index: 2;
    display: block;
}

/* Skeleton error state */
.skeleton-error {
    background: #f5f5f5;
    animation: none;
}

.skeleton-error::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Rounded skeleton for circular images */
.homepic-sven .skeleton,
.home-personalitywheel-pic .skeleton,
.profile-icon .skeleton {
    border-radius: 50%;
}

/* Partner logos skeleton */
.home-partner-logos .skeleton-wrapper {
    min-width: 60px;
    min-height: 40px;
}

/* Instagram pics skeleton */
.instagram-pic .skeleton-wrapper {
    min-width: 137px;
    min-height: 137px;
    border-radius: 17px;
}

/* Types page character images skeleton */
.personalitype-pic .skeleton-wrapper,
.personalitype-footer-pic .skeleton-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

/* Contact page images skeleton */
.contactus-pic .skeleton-wrapper,
.contactus-information-pic .skeleton-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

/* Dashboard/results page images skeleton */
.dashboard-result-pic .skeleton-wrapper,
.dashboard-unlockmore-pic .skeleton-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

/* Account page images skeleton */
.account-character .skeleton-wrapper,
.account-bottom-image .skeleton-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

/* ==========================================
   CONTACT US PAGE
   ========================================== */

.contact-page {
    background: white;
    position: relative;
    width: 100%;
    max-width: 393px;
    min-height: 1231px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-page .headerpic-octa-methode {
    left: 24px;
}

.contact-page .header-menu {
    position: absolute;
    right: 19px;
    top: 19px;
}

/* Contact Head Section */
.contactus-head {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 11px;
    left: 17px;
    top: 104px;
    width: 360px;
}

.contactus-head-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 340px;
    height: 33px;
}

.contactus-title {
    font-weight: 700;
    font-size: 29px;
    color: #0099b1;
    letter-spacing: -0.58px;
    line-height: 1.134;
}

.contactus-icon {
    width: 23px;
    height: 23px;
    transform: rotate(180deg) scaleY(-1);
}

.contactus-description {
    font-weight: 300;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    line-height: 1.34;
    width: 100%;
}

.contactus-email {
    font-weight: 300;
    font-style: italic;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    line-height: 1.34;
    text-decoration: underline;
}

/* Contact Character Image */
.contactus-information-pic {
    position: absolute;
    width: 139px;
    height: 265px;
    left: 236px;
    top: 240px;
    transform: rotate(180deg) scaleY(-1);
}

.contactus-information-pic img {
    width: 127.33%;
    height: 100%;
    object-fit: cover;
    margin-left: -11.86%;
}

/* Contact Form */
.contactus-information {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 9px;
    left: 17px;
    top: 281px;
    width: 214px;
}

.contactus-info-title {
    font-weight: 600;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    line-height: 1.34;
}

.contactus-field {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f1f1f1;
    border-radius: 13px;
    padding: 6px 10px;
    width: 205px;
    height: 27px;
}

.contactus-field .field-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.contactus-input {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #343e4e;
    width: 100%;
    outline: none;
}

.contactus-input::placeholder {
    color: #a0a0a0;
}

.contactus-textarea-field {
    height: 128px;
    align-items: flex-start;
    padding: 8px 12px;
}

.contactus-textarea {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #343e4e;
    width: 100%;
    height: 100%;
    outline: none;
    resize: none;
}

.contactus-textarea::placeholder {
    color: #a0a0a0;
}

/* Disclaimer */
.contactus-disclaimer {
    position: absolute;
    left: 24px;
    top: 519px;
    width: 312px;
    font-size: 10px;
    font-weight: 400;
    color: #343e4e;
    letter-spacing: -0.4px;
    line-height: 1.134;
}

.contactus-disclaimer p {
    margin: 0;
}

/* Send Button */
.contactus-send-button {
    position: absolute;
    left: 143px;
    top: 576px;
    width: 107px;
    height: 23px;
    background: #0099b1;
    border-radius: 140px;
    box-shadow: -4px 4px 4px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 10px;
    color: white;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contactus-send-button:hover {
    transform: translateY(-2px);
    box-shadow: -4px 6px 8px rgba(0,0,0,0.3);
}

/* Background Gradient */
.contactus-background {
    position: absolute;
    left: -1px;
    top: 519px;
    width: 394px;
    height: 443px;
    background: linear-gradient(180deg, rgba(0,153,177,0) 0%, #0099b1 100%);
    pointer-events: none;
}

/* Bottom Image */
.contactus-pic {
    position: absolute;
    left: -1px;
    top: 630px;
    width: 394px;
    height: 386px;
    overflow: hidden;
}

.contactus-pic img {
    width: 100%;
    height: 153.11%;
    object-fit: cover;
    object-position: top;
}

/* Footer positioning */
.contact-page .home-footer {
    position: absolute;
    left: 0;
    top: 1011px;
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 393px) {
    .contact-page {
        max-width: 100%;
    }
}

/* ==========================================
   SEARCH OVERLAY
   ========================================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 393px;
    padding: 0 20px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-title {
    font-size: 24px;
    font-weight: 600;
    color: #0099b1;
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #343e4e;
    transition: color 0.2s ease;
}

.search-close:hover {
    color: #0099b1;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-input {
    width: 100%;
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    padding: 0 20px 0 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #343e4e;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
    border-color: #0099b1;
    box-shadow: 0 0 0 4px rgba(0, 153, 177, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-suggestions {
    margin-top: 20px;
}

.suggestions-title {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 153, 177, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #0099b1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.suggestion-tag:hover {
    background: #0099b1;
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   SIDEBAR MENU
   ========================================== */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 10001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #343e4e;
    transition: color 0.2s ease;
}

.sidebar-close:hover {
    color: #0099b1;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #343e4e;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0099b1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(0, 153, 177, 0.05);
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
    opacity: 1;
}

.sidebar-link.active {
    color: #0099b1;
    background: rgba(0, 153, 177, 0.1);
}

.sidebar-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-icon .icon-mask {
    width: 20px;
    height: 20px;
    background: #9ca3af;
    transition: background 0.2s ease;
}

.sidebar-link:hover .icon-mask,
.sidebar-link.active .icon-mask {
    background: #0099b1;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.sidebar-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: #0099b1;
    border-radius: 22px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 177, 0.3);
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.sidebar-social a {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.sidebar-social a:hover {
    opacity: 1;
}

.sidebar-social img {
    width: 24px;
    height: 24px;
}

/* Make header icons clickable */
.icon-search,
.icon-menu {
    cursor: pointer;
}

.icon-search {
    transition: transform 0.2s ease;
}

.icon-search:hover {
    transform: scale(1.1);
}

.icon-menu {
    transition: transform 0.2s ease;
}

.icon-menu:hover {
    transform: scale(1.1);
}

/* ==========================================
   PARALLAX EFFECTS
   ========================================== */

.homepic-sven-wrapper,
.home-buttontest,
.home-buttontype,
.home-personalitywheel-pic-wrapper,
.home-partner-pic1,
.home-partner-pic2 {
    transition: transform 0.1s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Ensure parallax elements don't cause layout shifts */
.home-page {
    overflow-x: hidden;
}

/* ==========================================
   TEST PAGE - DYNAMIC ELEMENTS
   ========================================== */

/* Test Progress Bar */
.test-progress-container {
    position: absolute;
    top: 520px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 340px;
    z-index: 5;
}

.test-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.test-progress-fill {
    height: 100%;
    background: #0099b1;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.test-progress-text {
    margin-top: 8px;
    font-size: 13px;
    color: #343e4e;
    text-align: center;
    font-weight: 500;
}

/* Test Answers Container */
.test-answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

/* Test Answer Options - Improved */
.test-answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.test-answer:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.test-answer.selected {
    background: #ffffff;
    border-color: #0099b1;
    box-shadow: 0 4px 16px rgba(0, 153, 177, 0.2);
}

.answer-radio-wrapper {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.answer-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    transition: all 0.2s ease;
    position: relative;
}

.test-answer:hover .answer-radio {
    border-color: #0099b1;
}

.test-answer.selected .answer-radio {
    border-color: #0099b1;
    background: #0099b1;
}

.test-answer.selected .answer-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.test-answer span {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Question Transition Animations */
.test-questions-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.test-questions-section.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.test-questions-section.fade-in {
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.test-questions-section.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Test Completion Animation */
.test-completion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.completion-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.completion-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.completion-subtext {
    font-size: 14px;
    color: #666;
}

/* Error Toast */
.error-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #ef4444;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.error-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Test Prev and Next Buttons */
.test-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.test-prev-button,
.test-next-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 51px;
    background: #0099b1;
    border: none;
    border-radius: 140px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.48px;
    cursor: pointer;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.test-prev-button:hover:not(:disabled),
.test-next-button:hover:not(:disabled) {
    background: #007d94;
    transform: translateY(-2px);
    box-shadow: -4px 6px 8px rgba(0, 0, 0, 0.3);
}

.test-prev-button:disabled,
.test-next-button:disabled {
    background: #b0b0b0;
    cursor: not-allowed;
    box-shadow: none;
}

.test-prev-button:active:not(:disabled),
.test-next-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.25);
}

.all-answered-message p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.all-answered-message p:first-child {
    font-weight: 600;
    font-size: 18px;
    color: #0099b1;
}

/* ==========================================
   TYPES PAGE (Personality Types)
   ========================================== */

.types-page {
    position: relative;
    background: white;
    max-width: 393px;
    margin: 0 auto;
    overflow: hidden;
}

.types-page .headerpic-octa-methode {
    z-index: 100;
}

.types-page .header-menu {
    z-index: 100;
}

/* Personality Type Section */
.personalitype-section {
    position: relative;
    min-height: 280px;
    overflow: visible;
}

.personalitype-background {
    position: absolute;
    top: 0;
    left: -23px;
    width: 437px;
    height: calc(100% + 100px);
    z-index: 1;
    overflow: hidden;
}

.personalitype-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personalitype-content {
    position: relative;
    z-index: 2;
    padding: 20px 14px;
    padding-right: 120px;
}

.personalitype-icon {
    position: absolute;
    left: 88px;
    top: 10px;
    width: 40px;
    height: 40px;
    z-index: 3;
}

.personalitype-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.personalitype-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin: 0 0 5px;
    letter-spacing: -0.26px;
    line-height: 1.134;
}

.personalitype-line {
    width: 222px;
    height: 2px;
    margin-bottom: 10px;
}

.personalitype-line img {
    width: 100%;
    height: 100%;
}

.personalitype-name {
    font-family: 'Poppins', sans-serif;
    font-size: 29px;
    font-weight: 700;
    color: white;
    margin: 0 0 17px;
    letter-spacing: -0.58px;
    line-height: 1.134;
}

.personalitype-description {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: white;
    line-height: 1.34;
    letter-spacing: -0.26px;
    margin: 0 0 17px;
    max-width: 247px;
}

.personalitype-readmore {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-decoration: underline;
    letter-spacing: -0.26px;
    line-height: 1.34;
}

.personalitype-readmore:hover {
    opacity: 0.8;
}

/* Type Detail Modal */
.type-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.type-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.type-modal {
    background: white;
    width: 100%;
    max-width: 393px;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 28px 24px 40px;
}

.type-modal-overlay.active .type-modal {
    transform: translateY(0);
}

.type-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.type-modal-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    margin: 0 0 4px 0;
}

.type-modal-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 29px;
    letter-spacing: -0.58px;
    line-height: 1.134;
    margin: 0;
}

.type-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #343e4e;
    flex-shrink: 0;
}

.type-modal-close:hover {
    opacity: 0.6;
}

.type-modal-body p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #343e4e;
    letter-spacing: -0.28px;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.type-modal-body p:last-child {
    margin-bottom: 0;
}

.personalitype-pic {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 110px;
    z-index: 3;
    transition: transform 0.1s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.personalitype-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* First section (Direktor) - special top padding for header */
.personalitype-direktor {
    padding-top: 71px;
}

.personalitype-direktor .personalitype-background {
    top: 71px;
    height: calc(100% - 71px + 100px);
}

.personalitype-direktor .personalitype-content {
    padding-top: 42px;
}

.personalitype-direktor .personalitype-icon {
    top: 32px;
}

.personalitype-direktor .personalitype-pic {
    top: 94px;
    height: 279px;
}

/* Koordinator */
.personalitype-koordinator .personalitype-pic {
    height: 237px;
}

/* Analytiker */
.personalitype-analytiker .personalitype-pic {
    height: 265px;
}
.personalitype-analytiker .personalitype-pic img {
    object-position: left center;
}

/* Motivator */
.personalitype-motivator .personalitype-pic {
    height: 241px;
}

/* Unterstützer */
.personalitype-unterstutzer .personalitype-pic {
    height: 259px;
}
.personalitype-unterstutzer .personalitype-pic img {
    object-position: 55% center;
}

/* Taktiker */
.personalitype-taktiker .personalitype-pic {
    height: 240px;
}

/* Inspirator */
.personalitype-inspirator .personalitype-pic {
    height: 265px;
}
.personalitype-inspirator .personalitype-pic img {
    object-position: 60% center;
}

/* Berater */
.personalitype-berater .personalitype-pic {
    height: 240px;
}
.personalitype-berater .personalitype-pic img {
    object-position: left center;
}

/* Personality Footer Pic */
.personalitype-footer-pic {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 386px;
    overflow: hidden;
    transition: transform 0.1s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.personalitype-footer-pic img {
    width: 100%;
    height: auto;
}

.types-page .home-footer {
    position: relative;
    top: auto;
    left: auto;
    min-height: 220px;
    z-index: 5;
}

/* ==========================================
   DASHBOARD / RESULTS PAGE
   ========================================== */

.dashboard-page {
    position: relative;
    background: white;
    width: 100%;
    max-width: 393px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Dashboard Head Result */
.dashboard-headresult {
    position: relative;
    padding: 97px 18px 20px;
}

.dashboard-head-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}

.octa-type-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
}

.certificate-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #343e4e;
    text-decoration: none;
    letter-spacing: 0.39px;
}

.dashboard-head-line {
    height: 2px;
    background: linear-gradient(90deg, #0099b1 0%, transparent 100%);
    margin-bottom: 10px;
}

.dashboard-head-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.primary-type-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 29px;
    letter-spacing: -0.58px;
    margin: 0;
}

.dashboard-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    line-height: 1.34;
    margin-top: 10px;
}

/* Dashboard Statistics */
.dashboard-statistic {
    position: relative;
    margin: 20px 6px;
    padding: 60px 47px 20px;
}

.dashboard-statistic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.dashboard-statistic-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dashboard-statistic-numbers {
    position: relative;
    z-index: 1;
}

.statistic-row {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 43px;
}

.statistic-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    min-width: 90px;
}

.statistic-percent {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 20px;
    letter-spacing: -0.4px;
    min-width: 50px;
}

.statistic-bar-container {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}

.statistic-bar {
    height: 100%;
    border-radius: 1px;
    transition: width 0.5s ease;
}

/* Dashboard Result Picture */
.dashboard-result-pic {
    position: absolute;
    right: 0;
    top: 304px;
    width: 161px;
    height: 374px;
    z-index: 2;
}

.dashboard-result-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Dashboard Buttons */
.dashboard-buttons {
    position: relative;
    padding: 20px 19px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.dashboard-download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    height: 51px;
    background: #c25151;
    border-radius: 140px;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.48px;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.dashboard-download-button:hover {
    background: #a84444;
    transform: translateY(-2px);
}

/* Dashboard Strength Section */
.dashboard-strength-section {
    position: relative;
    padding: 60px 24px 40px;
}

.dashboard-strength-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 462px;
    background: linear-gradient(180deg, rgba(0, 153, 177, 0.1) 0%, transparent 100%);
    transform: scaleY(-1);
    z-index: 0;
}

.dashboard-strength,
.dashboard-weakness {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.strength-title,
.weakness-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 33px;
    letter-spacing: -0.66px;
    margin: 0 0 28px 0;
}

.strength-description,
.weakness-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    line-height: 1.34;
}

/* Dashboard Unlock More Section */
.dashboard-unlockmore-section {
    position: relative;
    padding: 40px 24px;
    display: flex;
    gap: 20px;
}

.dashboard-unlockmore-pic {
    width: 139px;
    flex-shrink: 0;
}

.dashboard-unlockmore-pic img {
    width: 100%;
    height: auto;
}

.dashboard-unlockmore-content {
    flex: 1;
    text-align: right;
}

.unlockmore-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    margin: 0 0 5px 0;
}

.unlockmore-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 29px;
    color: #0099b1;
    letter-spacing: -0.58px;
    margin: 0 0 17px 0;
}

.unlockmore-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #343e4e;
    letter-spacing: -0.26px;
    line-height: 1.34;
    margin: 0 0 20px 0;
}

.unlockmore-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    background: #0099b1;
    border-radius: 140px;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.3px;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.unlockmore-contact-button:hover {
    background: #007d94;
    transform: translateY(-2px);
}

.dashboard-page .home-footer {
    position: relative;
    top: auto;
    margin-top: 0;
}

