/* =================================================================
 // Table of Contents

 1. ABOUT HERO SECTION
 2. BRAND CAROUSEL SECTION
 3. CEO SECTION
 4. TIMELINE SECTION
 5. POWER SLIDER SECTION
================================================================= */


/* ========== 1. ABOUT HERO SECTION ========== */
.ah-hero-section {
    font-family: var(--font-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--navbar-height) + 10px) 5% 40px;
    color: #1a202c;
}

.ah-hero-content {
    text-align: center;
    width: 100%;
    max-width: 56rem;
}

.ah-hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: black;
    margin-top: var(--space-m);
    padding-bottom: var(--space-m);
    overflow: hidden;
}

.ah-hero-title .block {
    display: block;
}

.ah-hero-title .line-1 {
    font-size: var(--fs-700);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.ah-hero-title .line-2 {
    font-size: 3.75rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.ah-hero-subtitle {
    color: #4a5568;
    font-size: var(--fs-400);
    line-height: 1.625;
    max-width: 50rem;
    margin: 0 auto var(--space-m);
    overflow: hidden;
}

.ah-hero-subtitle .block {
    display: block;
}

.ah-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    justify-content: center;
}

.ah-btn {
    font-size: var(--fs-200);
    font-family: var(--font-primary);
    margin-bottom: var(--space-xs);
    padding: var(--space-s) var(--space-m);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.ah-btn:hover {
    transform: scale(1.05);
}

.ah-btn.ah-btn-primary {
    background-color: black;
    color: white;
}

.ah-btn.ah-btn-primary:hover {
    background-color: #2d3748;
}

.ah-btn.ah-btn-secondary {
    background-color: white;
    border-color: #d1d5db;
    color: #1a202c;
}

.ah-btn.ah-btn-secondary:hover {
    background-color: #f3f4f6;
}

.ah-hero-footer {
    width: 100%;
    max-width: 80rem;
    padding: var(--space-m) var(--space-l);
}

.ah-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-m);
}

.ah-trusted-by-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.ah-trusted-text {
    font-size: var(--fs-100);
    color: #6b7281;
    font-weight: 500;
    text-align: center;
}

.ah-avatar-container {
    display: flex;
    margin-left: var(--space-xs);
}

.ah-avatar-container>* {
    margin-left: calc(-1 * var(--space-xs));
}

.ah-footer-divider {
    display: none;
    height: var(--space-xl);
    width: 1px;
    background-color: #d1d5db;
}

.ah-tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-m);
    color: #4a5568;
    font-weight: 600;
    font-size: var(--fs-200);
}

.ah-hero-logos {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.ah-avatar-wrapper {
    position: relative;
    cursor: pointer;
}

.ah-avatar-wrapper img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ah-avatar-wrapper:hover img {
    transform: scale(1.15);
    z-index: 10;
}

.ah-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    background: black;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    z-index: 20;
}

.ah-tooltip .name {
    font-weight: bold;
    font-size: 13px;
}

.ah-tooltip .role {
    font-size: 11px;
    opacity: 0.8;
}

@media (min-width: 640px) {
    .ah-hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .ah-hero-title .line-1 {
        font-size: var(--fs-900);
        line-height: 1;
    }

    .ah-hero-title .line-2,
    .ah-hero-title .line-3 {
        font-size: 6rem;
    }

    .ah-hero-subtitle {
        font-size: var(--fs-500);
    }

    .ah-footer-content {
        flex-direction: row;
    }

    .ah-trusted-text {
        text-align: left;
    }

    .ah-footer-divider {
        display: block;
    }
}

@media (max-width: 480px) {

    .ah-hero-title .line-1 {
        font-size: 1.3rem;
    }

    .ah-hero-title .line-2 {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    .ah-hero-subtitle {
        font-size: var(--fs-300);
    }
}


/* ========== 2. BRAND CAROUSEL SECTION ========== */

.bc-title-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 50px;
    cursor: pointer;
}

.bc-title-decorator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a202c;
    margin-right: var(--space-m);
    transform-origin: left;
}

.bc-section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: var(--font-primary);
    font-weight: 800;
    color: #1a202c;
    overflow: hidden;
    display: inline-block;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    cursor: pointer;
}

.bc-title-char {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.bc-title-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #1a202c;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}

.bc-carousel {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.bc-carousel-track {
    display: flex;
    width: calc(140px * 14);
    animation: bc-infinite-scroll 40s linear infinite;
    will-change: transform;
}

.bc-carousel:hover .bc-carousel-track {
    animation-play-state: paused;
}

@keyframes bc-infinite-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-140px * 7));
    }
}

.bc-logo {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    padding: 0 var(--space-m);
    display: flex;
    justify-content: center;
    align-items: center;
}

.bc-logo img {
    max-width: 100%;
    max-height: 40px;
    border-radius: var(--border-radius-medium);
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.bc-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media screen and (max-width: 480px) {
    .bc-title-decorator {
        width: 30px;
        height: 3px;
        margin-right: var(--space-xs);
    }

    .bc-logo {
        width: 100px;
        padding: 0;
    }
}


/* ========== 3. CEO SECTION ========== */
.ceo-section {
    width: 100%;
    box-sizing: border-box;
}

.ceo-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: end;
}

.ceo-left-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 500px;
}

/* --- Consistent Title Styles --- */
.ceo-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.ceo-title-decorator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a202c;
    margin-right: var(--space-m);
    transform-origin: left;
}

.ceo-section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: var(--font-primary);
    font-weight: 800;
    color: #1a202c;
    overflow: hidden;
    display: inline-block;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    cursor: pointer;
}

.ceo-title-char {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.ceo-title-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #1a202c;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}

/* --- Section Content --- */
.ceo-image-wrapper {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    max-width: 450px;
    align-self: flex-start;
}

.ceo-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.ceo-text-content {
    padding-bottom: var(--space-m);
}

.ceo-text-content h2 {
    font-size: var(--fs-900);
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: var(--space-m);
    color: #333;
}

.ceo-text-content p {
    font-size: var(--fs-400);
    line-height: 1.8;
    color: #555;
    max-width: 520px;
}

.ceo-text-content .ceo-highlight {
    text-decoration: none;
    color: #8a4ca8;
    font-weight: 600;
    cursor: pointer;
}

/* --- Responsive Styles --- */
@media (max-width: 960px) {

    .ceo-container {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }

    .ceo-title-container {
        margin-bottom: 0px;
    }

    .ceo-left-column {
        min-height: auto;
        gap: var(--space-xl);
    }

    .ceo-image-wrapper {
        clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    }

    .ceo-text-content {
        text-align: center;
    }

    .ceo-text-content p {
        margin: 0 auto;
    }

    .ceo-title-decorator {
        width: 40px;
        margin-right: var(--space-s);
    }
}

@media (max-width: 500px) {
    .ceo-section {
        box-sizing: border-box;
    }

    .ceo-text-content h2 {
        font-size: var(--fs-800);
    }

    .ceo-title-decorator {
        width: 30px;
        margin-right: var(--space-xs);
    }

    .ceo-left-column {
        min-height: auto;
        gap: var(--space-s);
    }
}

/* ========== 4. TIMELINE SECTION ========== */
.timeline-slider-section {
    font-family: "Open Sans", sans-serif;
    color: #1a202c;
    width: 100%;
}

.ts-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    box-sizing: border-box;
}

/* --- Consistent Title Styles --- */
.ts-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.ts-title-decorator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a202c;
    margin-right: var(--space-m);
    transform-origin: left;
}

.ts-section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: var(--font-primary);
    font-weight: 800;
    color: #1a202c;
    overflow: hidden;
    display: inline-block;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    cursor: pointer;
}

.ts-title-char {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.ts-title-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #1a202c;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}

/* --- Section Content --- */
.ts-timeline {
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
}

.ts-timeline .ts-swiper-container {
    height: 600px;
    width: 100%;
    border-radius: 20px;
    position: relative;
}

.ts-timeline .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ts-timeline .swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -115%;
    bottom: -10%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    border-radius: 100%;
}

.ts-timeline .ts-swiper-slide-content {
    position: absolute;
    text-align: center;
    width: 80%;
    max-width: 400px;
    right: 50%;
    top: 13%;
    transform: translate(50%, 0);
    font-size: var(--fs-100);
    z-index: 2;
}

.ts-timeline .swiper-slide .ts-timeline-year {
    display: block;
    font-style: italic;
    font-size: var(--fs-800);
    margin-bottom: 50px;
    transform: translate3d(20px, 0, 0);
    color: #ededed;
    font-weight: 300;
    opacity: 0;
    transition: 0.2s ease 0.4s;
}

.ts-timeline .swiper-slide .ts-timeline-title {
    font-weight: 800;
    font-family: var(--font-primary);
    font-size: var(--fs-700);
    margin: 0 0 var(--space-l);
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.5s;
}

.ts-timeline .swiper-slide .ts-timeline-text {
    font-weight: 400;
    font-family: var(--font-primary);
    font-size: var(--fs-200);
    margin-top: var(--space-s);
    line-height: 1.5;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.6s;
}

.ts-timeline .swiper-slide-active .ts-timeline-year,
.ts-timeline .swiper-slide-active .ts-timeline-title,
.ts-timeline .swiper-slide-active .ts-timeline-text {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.ts-timeline .swiper-slide-active .ts-timeline-year {
    transition: 0.4s ease 1.6s;
}

.ts-timeline .swiper-slide-active .ts-timeline-title {
    transition: 0.4s ease 1.7s;
}

.ts-timeline .swiper-slide-active .ts-timeline-text {
    transition: 0.4s ease 1.8s;
}

.ts-timeline .ts-swiper-pagination {
    display: none;
}

.ts-timeline .swiper-pagination-bullet {
    width: auto;
    height: auto;
    text-align: center;
    opacity: 1;
    font-weight: 500;
    background: transparent;
    color: #ededed;
    margin: var(--space-s) 0 !important;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ededed !important;
}

.ts-timeline .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -32.5px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #ededed;
    transform: scale(0);
    transition: 0.2s;
}

.ts-timeline .swiper-pagination-bullet-active {
    color: #ededed;
}

.ts-timeline .swiper-pagination-bullet-active::before {
    transform: scale(1);
}

.ts-timeline .ts-swiper-button-next,
.ts-timeline .ts-swiper-button-prev {
    background-size: 20px 20px;
    top: 15%;
    width: 20px;
    height: 20px;
    margin-top: 0;
    z-index: 2;
    transition: 0.2s;
}

.ts-timeline .ts-swiper-button-prev {
    left: 8%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23E07C9D'%2F%3E%3C%2Fsvg%3E");
}

.ts-timeline .ts-swiper-button-prev:hover {
    transform: translateX(-3px);
}

.ts-timeline .ts-swiper-button-next {
    right: 8%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23E07C9D'%2F%3E%3C%2Fsvg%3E");
}

.ts-timeline .ts-swiper-button-next:hover {
    transform: translateX(3px);
}

/* --- Responsive Styles --- */
@media (max-width: 960px) {
    .ts-title-container {
        justify-content: center;
    }

    .ts-section-title {
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    .ts-timeline .ts-swiper-container {
        height: 400px;
        width: 100%;
        position: relative;
    }
}

@media screen and (min-width: 768px) {

    .ts-title-decorator {
        width: 40px;
        margin-right: var(--space-s);
    }

    .ts-timeline .ts-swiper-pagination {
        right: 15% !important;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-style: italic;
        font-weight: 300;
        font-size: var(--fs-400);
        z-index: 1;
    }

    .ts-timeline .ts-swiper-pagination::before {
        content: "";
        position: absolute;
        left: -30px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .ts-timeline .swiper-slide::after {
        right: -30%;
        bottom: -8%;
        width: 240px;
        height: 50%;
        box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
    }

    .ts-timeline .ts-swiper-slide-content {
        right: 30%;
        top: 50%;
        transform: translateY(-50%);
        font-size: var(--fs-100);
        text-align: right;
    }

    .ts-timeline .swiper-slide .ts-timeline-year {
        margin-bottom: 0;
        font-size: var(--fs-700);
    }

    .ts-timeline .swiper-slide .ts-timeline-title {
        font-size: var(--fs-900);
        margin: 0;
    }

    .ts-timeline .ts-swiper-button-prev {
        top: 15%;
        left: auto;
        right: 15%;
        transform: rotate(90deg) translate(0, 10px);
    }

    .ts-timeline .ts-swiper-button-prev:hover {
        transform: rotate(90deg) translate(-3px, 10px);
    }

    .ts-timeline .ts-swiper-button-next {
        top: auto;
        bottom: 15%;
        right: 15%;
        transform: rotate(90deg) translate(0, 10px);
    }

    .ts-timeline .ts-swiper-button-next:hover {
        transform: rotate(90deg) translate(3px, 10px);
    }
}

@media screen and (min-width: 1024px) {
    .ts-timeline .swiper-slide::after {
        right: -20%;
        bottom: -12%;
        width: 240px;
        height: 50%;
        box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
    }

    .ts-timeline .ts-swiper-slide-content {
        right: 25%;
    }
}

@media (max-width: 480px) {

    .ts-timeline .ts-swiper-container {
        height: 400px;
        width: 100%;
        position: relative;
    }

    .ts-title-decorator {
        width: 30px;
        margin-right: var(--space-xs);
    }
}

/* ========== 5. POWER SLIDER SECTION ========== */
.power-slider-section {
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: #000;
    overflow: hidden;
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.power-slider-section .ps-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(69, 183, 209, 0.1) 0%, transparent 50%);
}

.power-slider-section .ps-header {
    text-align: center;
    max-width: 1200px;
    margin: var(--space-xs) auto;
    padding: var(--space-m);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-medium);
}

.power-slider-section .ps-header h1 {
    font-size: var(--fs-800);
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 25%, #45B7D1 50%, #96C93D 75%, #A569BD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    animation: ps-titleFloat 4s ease-in-out infinite;
}

@keyframes ps-titleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.power-slider-section .interface-container {
    max-width: 1200px;
    margin: var(--space-xs) auto;
    padding: var(--space-m);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-medium);
}

.power-slider-section .power-section {
    margin: var(--space-xs) 0;
}

.power-slider-section .power-title {
    font-size: var(--fs-500);
    text-align: center;
    margin-bottom: var(--space-s);
    color: #1a202c;
    font-weight: 300;
}

.power-slider-section .slider-container {
    position: relative;
    padding: var(--space-xs);
}

.power-slider-section .power-slider {
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1, #96C93D, #A569BD);
    border-radius: 10px;
    outline: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.power-slider-section .power-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.power-slider-section .power-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.power-slider-section .power-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-s);
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.power-slider-section .power-indicator {
    flex: 1;
    min-width: 90px;
    max-width: 130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.power-slider-section .power-indicator:hover,
.power-slider-section .power-indicator:focus-within {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.power-slider-section .power-indicator.active {
    opacity: 1;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #fff;
}

.power-slider-section .power-slider:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.power-slider-section .power-indicator:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.power-slider-section .power-icon {
    font-size: var(--fs-600);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.power-slider-section .power-name {
    font-size: var(--fs-200);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.power-slider-section .power-display {
    margin-top: var(--space-xl);
    padding: var(--space-s);
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.power-slider-section .power-display-title {
    font-size: var(--fs-600);
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 25%, #45B7D1 50%, #96C93D 75%, #A569BD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.power-slider-section .power-description {
    font-size: var(--fs-300);
    line-height: 1.4;
    margin: 0 auto;
    max-width: 600px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .power-slider-section .ps-header h1 {
        font-size: var(--fs-800);
    }

    .power-slider-section .power-indicator {
        /* min-width: 100px; */
        max-width: 130px;
    }
}

@media (max-width: 768px) {
    .power-slider-section .ps-header h1 {
        font-size: 2.2rem;
    }

    .power-slider-section .interface-container {
        margin: var(--space-s) 0;
        padding: var(--space-m);
    }

    .power-slider-section .power-indicators {
        justify-content: center;
        gap: var(--space-xs);
    }

    .power-slider-section .power-indicator {
        flex: 0 0 calc(33.33% - 1rem);
    }

    .power-slider-section .power-display-title {
        font-size: var(--fs-600);
    }

}

@media (max-width: 576px) {

    .power-slider-section .ps-header h1 {
        font-size: var(--fs-600);
    }

    .power-slider-section .interface-container {
        margin: var(--space-xs) 0;
        padding: var(--space-s);
    }

    .power-slider-section .power-indicators {
        gap: var(--space-s);
    }

    .power-slider-section .power-indicator {
        flex: 0 0 calc(50% - 0.6rem);
        max-width: none;
    }

    .power-slider-section .power-slider {
        height: 15px;
    }

    .power-slider-section .power-slider::-webkit-slider-thumb {
        width: 30px;
        height: 30px;
    }

    .power-slider-section .power-display-title {
        font-size: var(--fs-500);
    }

}

/* =========================== END of About Page =========================== */