/* GT Americana Font - Add @font-face if you have the font files */
/* To use GT Americana, add the font files to a /fonts directory and uncomment:
@font-face {
    font-family: 'GT Americana';
    src: url('./fonts/GT-Americana-Regular.woff2') format('woff2'),
         url('./fonts/GT-Americana-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*/

:root {
    --font-weight-normal: 400;
    --tw-leading: 18px;
    --tw-font-weight: var(--font-weight-normal);
    --color-gray-700: #374151;
}

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

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    padding: 24px 0;
    background-color: #ffffff;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.header.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 1);
    width: 119.025px;
    height: 52.9px;
}

.logo-image {
    height: 52.9px;
    width: 119.025px;
    display: block;
    background-color: rgba(255, 255, 255, 1);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #514DF7, #3d37c4);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #514DF7;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 40px;
}

.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #514DF7;
}

.btn-nav {
    background-color: #514DF7;
    color: white;
    padding: 0 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-nav:hover {
    background-color: #3d37c4;
}

/* Hero Section */
.hero {
    padding-top: 24px;
    padding-bottom: 100px;
    background-color: #ffffff;
    position: relative;
}

.hero-text {
    text-align: center;
    margin-bottom: 30px;
    line-height: 0.8;
}

.hero-intro {
    font-size: 19px;
    font-weight: 300;
    color: var(--color-gray-200);
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding-left: 24px;
    padding-right: 24px;
    background-image: url('Images/SpeachBubble.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    border-radius: 0;
    background-color: transparent;
    height: 41px;
    line-height: 21px;
    position: relative;
}

.hero-intro.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-title,
.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero .container {
    max-width: 100%;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 76px;
    font-weight: 500;
    background: linear-gradient(to right, #514DF7, #C246B3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #514DF7; /* Fallback color */
    margin-top: 8px;
    margin-bottom: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 70px;
    letter-spacing: -3px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

/* Hero Phones Container */
.hero-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
    min-height: 600px;
    width: 100%;
}

.hero-phone {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-phone-left {
    position: absolute;
    left: calc(50% - 170px);
    z-index: 1;
    max-width: 300px;
    opacity: 0;
    animation: none;
    will-change: transform;
}

.hero-phone-center {
    position: relative;
    z-index: 3;
    max-width: 350px;
    margin: 0 auto;
    opacity: 0;
    animation: none;
}

.hero-phone-right {
    position: absolute;
    right: calc(50% - 170px);
    z-index: 1;
    max-width: 300px;
    opacity: 0;
    animation: none;
    will-change: transform;
}

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

@keyframes slideLeftPhone {
    from {
        left: calc(50% - 170px);
        transform: translateX(-50%);
        opacity: 0;
    }
    to {
        left: calc(50% - 400px);
        transform: translateX(0);
        opacity: 0.9;
    }
}

@keyframes slideRightPhone {
    from {
        right: calc(50% - 170px);
        transform: translateX(50%);
        opacity: 0;
    }
    to {
        right: calc(50% - 400px);
        transform: translateX(0);
        opacity: 0.9;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 22px;
    letter-spacing: -0.2px;
    font-weight: 400;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Vimeo Video Container */
.hero-vimeo-video {
    width: 100%;
    max-width: 100%;
    margin: 32px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-vimeo-video > div {
    border-radius: 20px;
    overflow: hidden;
}

/* Hero Video Container */
.hero-video-container {
    width: 100%;
    max-width: 100%;
    height: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-video-container.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-video-container .hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    pointer-events: none;
}

.hero-chat {
    max-width: 100%;
    margin-top: 0;
    min-height: 600px;
    width: 100%;
}

/* Chat Interface */
.chat-interface {
    background: linear-gradient(135deg, #514DF7 0%, #3d37c4 30%, #2d1f8f 60%, #1a0f5c 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-chat {
    padding: 0;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    display: block;
    height: 100%;
    width: 100%;
    pointer-events: none;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.chat-overlay {
    position: relative;
    z-index: 2;
    padding: 56px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(26, 92, 58, 0.85) 0%, rgba(45, 74, 58, 0.8) 30%, rgba(74, 61, 46, 0.8) 60%, rgba(107, 74, 58, 0.85) 100%);
}

.cross-channel-chat,
.intuitive-chat {
    padding: 36px;
    width: 644px;
    height: 644px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: start;
}

.chat-message {
    margin-bottom: 16px;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-chat .chat-message {
    font-size: 14px;
    padding: 20px 28px;
}

.user-message {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.agent-message {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.order-info {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.order-company {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.order-date {
    font-size: 17px;
    opacity: 0.9;
    font-weight: 400;
}

.chat-input-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 20px;
    gap: 12px;
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 17px;
    outline: none;
    font-weight: 400;
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.chat-send {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.phone-option {
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-option svg {
    width: 24px;
    height: 24px;
}

/* Cross-channel Section */
.cross-channel {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Fade-in animation for scroll-triggered sections */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Preserve transition delays for staggered animations */
.fade-in-on-scroll[style*="transition-delay"] {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title {
    font-size: 64px;
    font-weight: 300;
    color: var(--color-gray-700);
    margin-bottom: 28px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 19px;
    color: #666666;
    margin-bottom: 80px;
    max-width: 900px;
    line-height: 1.65;
    font-weight: 400;
}

.cross-channel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cross-channel-content .accordion-nav {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.cross-channel-content .accordion-nav .accordion-item {
    max-width: 100%;
}

.cross-channel-content .chat-interface.cross-channel-chat {
    transform: translateY(0) !important;
    transition: none !important;
    position: relative;
}

/* Cross-channel chat is now on the left side in the grid layout */

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.features-list .feature-item:first-child {
    margin-top: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #514DF7;
}

.feature-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.feature-title {
    --tw-leading: 18px;
    --tw-font-weight: var(--font-weight-normal);
    font-size: 16px;
    line-height: 18px;
    font-weight: var(--font-weight-normal);
    color: var(--color-gray-700);
    margin: 0;
}

.feature-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.4;
    font-weight: 400;
}

.cross-channel-chat {
    background: linear-gradient(135deg, #514DF7 0%, #3d37c4 40%, #2d1f8f 70%, #1a0f5c 100%);
}

/* Elsi Speaks Section */
.elsi-speaks {
    padding: 100px 0;
    background-color: #ffffff;
}

.elsi-speaks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.elsi-speaks-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elsi-speaks-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.waveform-container {
    width: 644px;
    height: 644px;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 120px;
}

.wave-bar {
    width: 12px;
    background-color: #1a1a1a;
    border-radius: 6px;
    min-height: 20px;
}

.elsi-speaks-text {
    font-size: 22px;
    color: #666666;
    margin-bottom: 32px;
    font-weight: 400;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #514DF7;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s;
}

.btn-full-story {
    font-size: 17px;
}

.btn-learn-more:hover {
    color: #3d37c4;
}

.arrow {
    font-size: 20px;
}

/* Intuitive Conversations Section */
.intuitive-conversations {
    padding: 100px 0;
    background-color: #ffffff;
}

.intuitive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intuitive-chat {
    background: linear-gradient(135deg, #514DF7 0%, #3d37c4 50%, #2d1f8f 100%);
    /* Chat is now on the left side */
}

.user-name {
    font-weight: 600;
    margin-right: 8px;
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background-color: #fafafa;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 32px;
    line-height: 1.5;
    color: var(--color-gray-700);
    margin-bottom: 28px;
    font-weight: 400;
    font-style: normal;
}

.testimonial-author {
    font-size: 19px;
    color: #666666;
    margin-bottom: 8px;
    font-weight: 600;
}

.testimonial-role {
    font-size: 17px;
    color: #666666;
    margin-bottom: 28px;
    font-weight: 400;
}

.btn-full-story {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #514DF7;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Beyond Q&A Section */
.beyond-qa {
    padding: 100px 0;
    background-color: #ffffff;
}

.beyond-qa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.beyond-qa-image {
    justify-self: start;
    width: 100%;
    max-width: 520px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

.beyond-qa-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Next Section */
.next-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.next-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (min-width: 1200px) {
    .next-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next-card {
    padding: 60px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.dark-card {
    background-color: #514DF7;
    color: white;
}

.light-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    padding: 60px;
    min-height: 380px;
}

.light-card .next-card-text {
    color: #666666;
    flex: 1;
}

.next-card-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gray-700);
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.next-card-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    flex: 1;
}

.btn-sdk {
    display: inline-block;
    background-color: white;
    color: #514DF7;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.2s;
    margin-top: auto;
    align-self: flex-start;
}

.light-card .btn-sdk {
    background-color: #514DF7;
    color: white;
}

.btn-sdk:hover {
    transform: translateY(-2px);
}

.btn-play {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #514DF7;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-play svg {
    width: 32px;
    height: 32px;
}

.btn-play:hover {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.cta-section .section-title {
    margin-bottom: 24px;
}

.cta-section .section-intro {
    margin: 0 auto 40px;
}

.btn-demo {
    display: inline-block;
    background-color: #514DF7;
    color: white;
    padding: 18px 48px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-demo:hover {
    background-color: #3d37c4;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #514DF7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.copyright {
    color: #666666;
    font-size: 14px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.language-selector {
    padding: 8px 32px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: white;
    font-size: 14px;
    color: #2d2d2d;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.social-icon:hover {
    background-color: #514DF7;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-title {
        font-size: 64px;
        font-weight: 500;
    }
    
    .hero-phones {
        min-height: 500px;
    }
    
    .hero-phone-left {
        max-width: 250px;
        animation: slideLeftPhoneTablet 1s cubic-bezier(0.45, 0, 0.55, 1) 0.8s forwards;
    }
    
    .hero-phone-center {
        max-width: 300px;
    }
    
    .hero-phone-right {
        max-width: 250px;
        animation: slideRightPhoneTablet 1s cubic-bezier(0.45, 0, 0.55, 1) 0.8s forwards;
    }
    
    @keyframes slideLeftPhoneTablet {
        from {
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
        }
        to {
            left: calc(50% - 320px);
            transform: translateX(0);
            opacity: 0.9;
        }
    }
    
    @keyframes slideRightPhoneTablet {
        from {
            right: 50%;
            transform: translateX(50%);
            opacity: 0;
        }
        to {
            right: calc(50% - 320px);
            transform: translateX(0);
            opacity: 0.9;
        }
    }

    .section-title {
        font-size: 52px;
    }

    .hero-chat {
        min-height: 500px;
        max-width: 100%;
    }

    .chat-overlay {
        padding: 40px;
        min-height: 500px;
    }

    .cross-channel-content,
    .intuitive-content,
    .beyond-qa-content,
    .elsi-speaks-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .elsi-speaks-left {
        display: flex;
        justify-content: center;
    }

    .waveform-container {
        width: 100%;
        max-width: 644px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .cross-channel-chat,
    .intuitive-chat {
        width: 100%;
        max-width: 644px;
        height: auto;
        min-height: 350px;
        margin-left: 0;
    }

    .beyond-qa-image {
        max-width: 100%;
        height: 400px;
        margin-left: 0;
        justify-self: center;
    }

    .next-cards {
        grid-template-columns: 1fr;
    }

    .light-card {
        min-height: 320px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 15px;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero-text {
        margin-bottom: 40px;
        order: 1;
    }

    .hero-phones {
        order: 2;
        flex-direction: column;
        gap: 24px;
        min-height: auto;
        margin: 32px 0;
        align-items: center;
    }

    .hero-video-container {
        order: 3;
    }

    .hero-vimeo-video {
        order: 4;
        margin: 32px auto;
    }

    .hero-title {
        font-size: 56px;
        font-weight: 500;
    }
    
    .hero-intro {
        font-size: 19px;
    }
    
    .hero-phone-left,
    .hero-phone-right,
    .hero-phone-center {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        max-width: 90vw;
        width: 90vw;
        opacity: 0;
        transform: translateY(20px) !important;
        animation: fadeInPhone 0.6s ease-out forwards;
    }
    
    .hero-phone-left {
        animation-delay: 0.8s;
    }
    
    .hero-phone-center {
        animation-delay: 1s;
    }
    
    .hero-phone-right {
        animation-delay: 1.2s;
    }
    
    @keyframes fadeInPhone {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-intro {
        font-size: 17px;
    }

    .hero-chat {
        min-height: 450px;
        max-width: 100%;
    }

    .chat-overlay {
        padding: 32px;
        min-height: 450px;
    }

    .cross-channel-chat,
    .intuitive-chat {
        width: 100%;
        max-width: 644px;
        height: auto;
        min-height: 320px;
        padding: 28px;
        margin-left: 0;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-avatar {
        width: 100%;
        max-width: 644px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .testimonial-avatar {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .testimonial-quote {
        font-size: 26px;
    }

    .beyond-qa-image {
        height: 350px;
        max-width: 100%;
        margin-left: 0;
    }

    .light-card {
        min-height: 300px;
        padding: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}

/* Hide all sections except hero and header */
.cross-channel,
.elsi-speaks,
.intuitive-conversations,
.testimonial,
.beyond-qa,
.next-section,
.cta-section,
.footer,
.hero-video-container {
    display: none;
}

/* Accordion Navigation Styles */
.accordion-nav {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    --accordion-border-color: #514DF7;
    --accordion-text-color: #2a2a2a;
    --accordion-hover-color: #514DF7;
    --accordion-body-color: #6b7280;
    --accordion-expanded-width: 500px;
    --accordion-animation-speed: 0.7s;
    min-width: 0;
}

.accordion-nav .accordion-item {
    background: #ffffff;
    border: 1px solid var(--accordion-border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: width var(--accordion-animation-speed) cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    box-sizing: border-box;
}

.accordion-nav .accordion-button {
    padding: 0 16px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accordion-text-color);
    user-select: none;
    white-space: nowrap;
    font-family: 'Satoshi', sans-serif;
}

.accordion-nav .accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.accordion-nav .accordion-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.accordion-nav .accordion-item.active .accordion-icon {
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.accordion-nav .accordion-button-text {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transform: translateX(0);
}

.accordion-nav .accordion-item.active .accordion-button-text {
    /* Move text left to align with body copy: icon (24px) + gap (12px) = 36px */
    transform: translateX(-36px);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.accordion-nav .accordion-item:hover .accordion-button {
    color: var(--accordion-hover-color);
}

.accordion-nav .accordion-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0.2s;
}

.accordion-nav .accordion-item.active .accordion-content {
    height: 120px;
    opacity: 1;
    visibility: visible;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                visibility 0s;
}

.accordion-nav .accordion-content-inner {
    padding: 0 16px 2rem 16px;
}

.accordion-nav .accordion-desc {
    color: var(--accordion-body-color);
    line-height: 1.2;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Satoshi', sans-serif;
}

.accordion-nav .accordion-item.active .accordion-desc {
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
