.about-testimonial {
    padding: 0;
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 50%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e40af' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about-testimonial .container {
    max-width: 100vw;
    padding: 0 4rem;
    width: 100%;
    height: 100%;
}

.testimonial-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.testimonial-number {
    position: absolute;
    left: -4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32rem;
    font-weight: 900;
    color: rgba(30, 64, 175, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: transform 0.3s ease;
}

.number-display {
    display: block;
    transition: opacity 0.6s ease;
}

.testimonial-content {
    display: flex;
    position: relative;
    z-index: 10;
}

.testimonial-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 8rem;
    border-right: 1px solid rgba(30, 64, 175, 0.2);
    min-height: 400px;
    min-width: 250px;
}

.testimonial-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    color: #1e40af;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
}

.progress-line {
    position: relative;
    width: 1px;
    height: 8rem;
    background: rgba(30, 64, 175, 0.2);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #1e40af;
    height: 50%;
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: top;
}

.testimonial-main {
    flex: 1;
    padding-left: 10rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-right: 0.5rem;
    max-width: 1400px;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #1e40af;
    border: 2px solid rgba(30, 64, 175, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
}

.badge-text {
    transition: opacity 0.4s ease;
}

.quote-container {
    margin-bottom: 1.5rem;
    min-height: 140px;
    margin-left: 4rem;
}

.testimonial-quote {
    font-size: 4rem;
    font-weight: 300;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0;
}

.word-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
    animation: wordReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    margin-right: 0.3em;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.testimonial-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 16rem;
}

.author-line {
    width: 2rem;
    height: 1px;
    background: #0f172a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.author-details {
    transition: opacity 0.4s ease;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
    transition: opacity 0.4s ease;
}

.author-role {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    transition: opacity 0.4s ease;
    font-weight: 600;
}

.navigation-buttons {
    display: flex;
    gap: 1rem;
}

.nav-button {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(30, 64, 175, 0.2);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #0f172a;
}

.nav-button:hover {
    border-color: #1e40af;
    background: #1e40af;
    color: white;
    transform: scale(0.95);
}

.bottom-ticker {
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
    height: 12rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    color: #1e40af;
    line-height: 1;
    width: 100%;
    animation: tickerAppear 0.5s ease-out forwards 1s;
    opacity: 0;
}

.ticker-logo {
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    opacity: 0;
    transform: translateX(-100px);
    animation: logoLoop 5s ease-in-out infinite;
}

.ticker-letter {
    display: inline-block;
    opacity: 0;
    transform: translateX(-50px);
    animation: letterLoop 5s ease-in-out infinite;
}

.ticker-letter:nth-child(2) { animation-delay: 1.2s; }
.ticker-letter:nth-child(3) { animation-delay: 1.4s; }
.ticker-letter:nth-child(4) { animation-delay: 1.6s; }
.ticker-letter:nth-child(5) { animation-delay: 1.8s; }
.ticker-letter:nth-child(6) { animation-delay: 2.0s; }
.ticker-letter:nth-child(7) { animation-delay: 2.2s; }
.ticker-letter:nth-child(8) { animation-delay: 2.4s; }
.ticker-letter:nth-child(9) { animation-delay: 2.6s; }
.ticker-letter:nth-child(10) { animation-delay: 2.8s; }
.ticker-letter:nth-child(11) { animation-delay: 3.0s; }
.ticker-letter:nth-child(12) { animation-delay: 3.2s; }
.ticker-letter:nth-child(13) { animation-delay: 3.4s; }
.ticker-letter:nth-child(14) { animation-delay: 3.6s; }
.ticker-letter:nth-child(15) { animation-delay: 3.8s; }
.ticker-letter:nth-child(16) { animation-delay: 4.0s; }
.ticker-letter:nth-child(17) { animation-delay: 4.2s; }
.ticker-letter:nth-child(18) { animation-delay: 4.4s; }
.ticker-letter:nth-child(19) { animation-delay: 4.6s; }

.ticker-space {
    width: 1rem;
}

@keyframes logoLoop {
    0%, 80%, 100% {
        opacity: 0;
        transform: translateX(-100px) rotate(-180deg);
    }
    10%, 70% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes letterLoop {
    0%, 80%, 100% {
        opacity: 0;
        transform: translateX(-200px) scale(0.5) rotateY(-180deg);
    }
    20%, 60% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}

@keyframes tickerAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-number {
        font-size: 20rem;
        left: -1rem;
    }
    
    .testimonial-content {
        flex-direction: column;
    }
    
    .testimonial-sidebar {
        flex-direction: row;
        padding-right: 0;
        padding-bottom: 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(30, 64, 175, 0.2);
        min-height: auto;
    }
    
    .testimonial-label {
        writing-mode: initial;
        text-orientation: initial;
        margin-bottom: 0;
        margin-right: 2rem;
    }
    
    .progress-line {
        width: 8rem;
        height: 1px;
    }
    
    .progress-fill {
        width: 50%;
        height: 100%;
        transform-origin: left;
    }
    
    .testimonial-main {
        padding-left: 0;
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 2rem;
    }
    
    .testimonial-number {
        font-size: 12rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}