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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    font-weight: 300;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 15, 15, 0.4) 50%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.scrolled::after {
    opacity: 1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 0;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.3), transparent);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 195, 255, 0.5);
}

.nav-link:hover {
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
    padding-top: 80px;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(1.1) contrast(1.05);
}

/* Imagen alternativa para móvil */
@media (max-width: 768px) {
    .hero-background {
        background-image: url('hero-image-mobile.png');
        background-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 80px 60px;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #00c3ff;
    text-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #ffffff;
    opacity: 0.9;
    max-width: 550px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-cta {
    background: rgba(0, 195, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.4);
    color: #00c3ff;
    padding: 20px 48px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 195, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 195, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta:hover {
    background: rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.8);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 195, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover::after {
    width: 300px;
    height: 300px;
}

.hero-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 195, 255, 0.3);
}

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

    .logo {
        height: 42px;
    }

    .nav-menu {
        gap: 30px;
    }

    .hero-content {
        padding: 60px 40px;
        margin-left: 3%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .logo {
        height: 38px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.9), inset 1px 0 0 rgba(255, 255, 255, 0.1);
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-content {
        padding: 40px 30px;
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }

    .hero-cta {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(15px);
        border-color: rgba(0, 195, 255, 0.6);
        color: #00c3ff;
    }

    .hero-cta:active {
        background: rgba(0, 195, 255, 0.2);
        border-color: rgba(0, 195, 255, 0.9);
        color: #ffffff;
        transform: scale(0.98);
    }

    .hero-subtitle {
        text-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
    }

    .hero-description {
        text-shadow: none;
    }

    .hero-content {
        padding-top: 20px;
        align-items: flex-start;
    }

    .hero-background {
        background-size: cover;
        background-position: center left;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo {
        height: 34px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        width: 100%;
        right: -100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(50px) saturate(180%);
        -webkit-backdrop-filter: blur(50px) saturate(180%);
    }

    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.75) 30%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero-background {
        background-size: cover;
        background-position: center center;
    }

    .hero {
        align-items: flex-start;
        padding-top: 80px;
    }

    .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-subtitle {
        text-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
    }

    .hero-description {
        text-shadow: none;
        opacity: 0.95;
    }

    .hero-cta {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(15px);
        border-color: rgba(0, 195, 255, 0.7);
        color: #00c3ff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 195, 255, 0.3);
    }

    .hero-cta:active {
        background: rgba(0, 195, 255, 0.25);
        border-color: rgba(0, 195, 255, 1);
        color: #ffffff;
        transform: scale(0.97);
        box-shadow: 0 2px 15px rgba(0, 195, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* PYME Section Styles */
.pyme-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #151515 0%, #1a1a1a 100%);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.pyme-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pyme-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pyme-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

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

.pyme-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pyme-item {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pyme-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.pyme-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 195, 255, 0.4);
    transform: translateX(10px);
    box-shadow: 0 8px 32px rgba(0, 195, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .pyme-item:active {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(0, 195, 255, 0.4);
        transform: translateX(5px);
    }
}

.pyme-item:hover::before {
    left: 100%;
}

.pyme-item:hover .pyme-icon {
    background: rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.6);
    transform: scale(1.1) rotate(5deg);
}

/* Accordion styles - Desktop: always expanded */
.pyme-item-header,
.transform-item-header,
.bbs-feature-header,
.history-accordion-header,
.team-accordion-header {
    display: none;
}

.pyme-item-content,
.transform-item-content,
.bbs-feature-content,
.history-accordion-content,
.team-accordion-content {
    display: block;
}

.pyme-accordion-arrow,
.transform-accordion-arrow,
.bbs-accordion-arrow,
.history-accordion-arrow,
.team-accordion-arrow {
    display: none;
}

.team-description-preview {
    display: none;
}

.pyme-item:hover .pyme-icon svg {
    color: #00c3ff;
    filter: drop-shadow(0 0 8px rgba(0, 195, 255, 0.6));
}

.pyme-item:hover .pyme-item-title {
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
}

.pyme-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 195, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 195, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pyme-icon svg {
    width: 32px;
    height: 32px;
    color: #00c3ff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pyme-text {
    flex: 1;
}

.pyme-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.pyme-item-description {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.pyme-item:hover .pyme-item-description {
    color: rgba(255, 255, 255, 0.9);
}

.pyme-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.pyme-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.05) contrast(1.02);
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.pyme-image-container:hover .pyme-image {
    transform: scale(1.02);
}

/* Responsive PYME Section */
@media (max-width: 1024px) {
    .pyme-section {
        padding: 100px 0;
    }

    .pyme-container {
        padding: 0 30px;
    }

    .pyme-title {
        font-size: 2.8rem;
    }

    .pyme-subtitle {
        font-size: 1.1rem;
    }

    .pyme-content {
        gap: 60px;
    }

    .pyme-item {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .pyme-section {
        padding: 80px 0;
    }

    .pyme-container {
        padding: 0 20px;
    }

    .pyme-header {
        margin-bottom: 50px;
    }

    .pyme-title {
        font-size: 2.2rem;
    }

    .pyme-subtitle {
        font-size: 1rem;
    }

    .pyme-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pyme-list {
        order: 2;
    }

    .pyme-image-container {
        order: 1;
        max-height: 400px;
        overflow: hidden;
    }

    .pyme-image {
        height: 100%;
        object-fit: cover;
    }

    .pyme-item {
        padding: 20px;
        gap: 20px;
    }

    .pyme-item:hover {
        transform: translateX(5px);
    }

    .pyme-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .pyme-icon svg {
        width: 28px;
        height: 28px;
    }

    .pyme-item-title {
        font-size: 1.05rem;
    }

    .pyme-item-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Accordion styles - Mobile: collapsible */
    .pyme-item-header,
    .transform-item-header,
    .bbs-feature-header,
    .history-accordion-header,
    .team-accordion-header {
        display: flex;
        align-items: center;
        gap: 16px;
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        text-align: left;
        color: inherit;
        font-family: inherit;
    }

    .pyme-item-header {
        justify-content: flex-start;
    }

    .transform-item-header,
    .bbs-feature-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .history-accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .team-accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pyme-accordion-arrow,
    .transform-accordion-arrow,
    .bbs-accordion-arrow,
    .history-accordion-arrow,
    .team-accordion-arrow {
        display: block;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: auto;
    }

    .transform-accordion-arrow,
    .bbs-accordion-arrow {
        margin-left: 0;
        margin-top: 8px;
    }

    .history-accordion-arrow,
    .team-accordion-arrow {
        align-self: flex-end;
        margin-top: 8px;
    }

    .pyme-item.pyme-accordion.active .pyme-accordion-arrow,
    .transform-item.transform-accordion.active .transform-accordion-arrow,
    .bbs-feature-card.bbs-accordion.active .bbs-accordion-arrow,
    .history-accordion.active .history-accordion-arrow,
    .team-accordion.active .team-accordion-arrow {
        transform: rotate(180deg);
    }

    .pyme-item-content,
    .transform-item-content,
    .bbs-feature-content,
    .history-accordion-content,
    .team-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        padding: 0;
        margin: 0;
    }

    .pyme-item.pyme-accordion.active .pyme-item-content,
    .transform-item.transform-accordion.active .transform-item-content,
    .bbs-feature-card.bbs-accordion.active .bbs-feature-content,
    .history-accordion.active .history-accordion-content,
    .team-accordion.active .team-accordion-content {
        max-height: 500px;
        padding-top: 16px;
    }

    .pyme-item.pyme-accordion {
        flex-direction: column;
        align-items: stretch;
    }

    .pyme-item.pyme-accordion .pyme-text {
        flex: 1;
    }

    .transform-item.transform-accordion {
        display: flex;
        flex-direction: column;
    }

    .transform-item.transform-accordion .transform-icon {
        margin-bottom: 0;
    }

    .bbs-feature-card.bbs-accordion {
        display: flex;
        flex-direction: column;
    }

    .bbs-feature-card.bbs-accordion .bbs-feature-icon {
        margin-bottom: 0;
    }

    .team-description-preview {
        display: block;
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }

    .team-accordion-content .team-description {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .pyme-section {
        padding: 60px 0;
    }

    .pyme-title {
        font-size: 1.5rem;
    }

    .pyme-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .pyme-item {
        padding: 18px;
        gap: 16px;
    }

    .pyme-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .pyme-icon svg {
        width: 24px;
        height: 24px;
    }

    .pyme-item-title {
        font-size: 1.1rem;
    }

    .pyme-item-description {
        font-size: 0.9rem;
    }
}

/* Transform Section Styles */
.transform-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.transform-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.transform-item {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.transform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.transform-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 195, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 195, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.transform-item:hover::before {
    opacity: 1;
}

.transform-item:hover .transform-icon {
    background: rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.6);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(0, 195, 255, 0.4);
}

.transform-item:hover .transform-icon svg {
    color: #00c3ff;
    filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.8));
}

.transform-item:hover .transform-item-title {
    color: #00c3ff;
    text-shadow: 0 0 12px rgba(0, 195, 255, 0.4);
}

.transform-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 195, 255, 0.3);
    border-radius: 16px;
    background: rgba(0, 195, 255, 0.05);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transform-icon svg {
    width: 40px;
    height: 40px;
    color: #00c3ff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transform-item-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.transform-item-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.transform-item:hover .transform-item-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Transform Section */
@media (max-width: 1024px) {
    .transform-section {
        padding: 100px 0;
    }

    .transform-container {
        padding: 0 30px;
    }

    .transform-title {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }

    .transform-grid {
        gap: 30px;
    }

    .transform-item {
        padding: 40px 30px;
    }

    .transform-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }

    .transform-icon svg {
        width: 35px;
        height: 35px;
    }

    .transform-item-title {
        font-size: 1.4rem;
    }

    .transform-item-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .transform-section {
        padding: 80px 0;
    }

    .transform-container {
        padding: 0 20px;
    }

    .transform-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .transform-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .transform-item {
        padding: 35px 25px;
    }

    .transform-item:hover {
        transform: translateY(-5px);
    }

    .transform-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .transform-icon svg {
        width: 32px;
        height: 32px;
    }

    .transform-item-title {
        font-size: 1.3rem;
    }

    .transform-item-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .transform-section {
        padding: 60px 0;
    }

    .transform-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .transform-item {
        padding: 30px 20px;
    }

    .transform-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .transform-icon svg {
        width: 28px;
        height: 28px;
    }

    .transform-item-title {
        font-size: 1.05rem;
    }

    .transform-item-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* BBS Section Styles */
.bbs-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bbs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 195, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 195, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.bbs-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.bbs-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bbs-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.4), rgba(0, 195, 255, 0.6), rgba(0, 195, 255, 0.4), transparent);
    position: relative;
}

.bbs-title-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #00c3ff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.8);
}

.bbs-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    text-align: center;
}

.bbs-title-gradient {
    display: inline;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 195, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 195, 255, 0.3);
    margin-right: 0.15em;
}

.bbs-title-main {
    display: inline;
    color: #00c3ff;
    text-shadow: 0 0 40px rgba(0, 195, 255, 0.5);
    position: relative;
}

.bbs-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.bbs-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.3), rgba(0, 195, 255, 0.5), rgba(0, 195, 255, 0.3), transparent);
}

.bbs-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.bbs-feature-card {
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bbs-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bbs-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 195, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 195, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .bbs-feature-card:active {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(0, 195, 255, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 195, 255, 0.2);
    }
}

.bbs-feature-card:hover::before {
    opacity: 1;
}

.bbs-feature-card:hover .bbs-feature-icon {
    background: rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.6);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(0, 195, 255, 0.4);
}

.bbs-feature-card:hover .bbs-feature-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.8));
}

.bbs-feature-card:hover .bbs-feature-title {
    color: #00c3ff;
    text-shadow: 0 0 12px rgba(0, 195, 255, 0.4);
}

.bbs-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 195, 255, 0.3);
    border-radius: 16px;
    background: rgba(0, 195, 255, 0.05);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bbs-feature-icon svg {
    width: 32px;
    height: 32px;
    color: #00c3ff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bbs-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.bbs-feature-description {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.bbs-feature-card:hover .bbs-feature-description {
    color: rgba(255, 255, 255, 0.9);
}

.bbs-closing {
    margin-bottom: 50px;
    padding-top: 40px;
    position: relative;
    text-align: center;
}

.bbs-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.4), rgba(0, 195, 255, 0.6), rgba(0, 195, 255, 0.4), transparent);
}

.bbs-closing-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 20px;
}

.bbs-closing-text-strong {
    font-size: 1.4rem;
    font-weight: 500;
    background: linear-gradient(135deg, #00c3ff 0%, rgba(0, 195, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.6;
    text-shadow: 0 0 30px rgba(0, 195, 255, 0.3);
    position: relative;
    margin-bottom: 0;
}

.bbs-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 50px;
    position: relative;
}

.bbs-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.4), rgba(0, 195, 255, 0.6), rgba(0, 195, 255, 0.4), transparent);
}

.bbs-logo-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.bbs-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.4s ease;
    opacity: 0.8;
}

.bbs-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
    opacity: 1;
}

.bbs-cta-container {
    display: flex;
    justify-content: center;
}

.bbs-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(0, 195, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.4);
    color: #00c3ff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.bbs-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.bbs-cta-button:hover {
    background: rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.8);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 195, 255, 0.3);
}

.bbs-cta-button:hover svg {
    transform: translateX(4px);
}

/* Responsive BBS Section */
@media (max-width: 1024px) {
    .bbs-section {
        padding: 100px 0;
    }

    .bbs-container {
        padding: 0 30px;
    }

    .bbs-title {
        font-size: 2.6rem;
    }

    .bbs-title-wrapper {
        gap: 20px;
    }

    .bbs-title-line {
        flex: 0.5;
    }


    .bbs-intro-text {
        font-size: 1.2rem;
    }

    .bbs-paragraph {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .bbs-section {
        padding: 80px 0;
    }

    .bbs-container {
        padding: 0 20px;
    }

    .bbs-header {
        margin-bottom: 60px;
    }

    .bbs-logo {
        height: 50px;
    }

    .bbs-footer {
        gap: 30px;
        padding-top: 40px;
    }

    .bbs-title {
        font-size: 2rem;
    }

    .bbs-title-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .bbs-title-line {
        width: 60%;
        flex: none;
    }

    .bbs-features-grid {
        gap: 25px;
        margin-bottom: 50px;
    }

    .bbs-feature-card {
        padding: 30px 25px;
    }

    .bbs-feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .bbs-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .bbs-feature-title {
        font-size: 1.2rem;
    }

    .bbs-feature-description {
        font-size: 0.95rem;
    }

    .bbs-closing-text {
        font-size: 1.1rem;
    }

    .bbs-closing-text-strong {
        font-size: 1.2rem;
    }

    .bbs-cta-button {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bbs-section {
        padding: 60px 0;
    }

    .bbs-logo {
        height: 45px;
    }

    .bbs-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .bbs-title-wrapper {
        gap: 15px;
    }

    .bbs-title-line {
        width: 50%;
    }

    .bbs-footer {
        gap: 25px;
        padding-top: 30px;
    }

    .bbs-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bbs-feature-card {
        padding: 25px 20px;
    }

    .bbs-feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }

    .bbs-feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .bbs-feature-title {
        font-size: 1rem;
    }

    .bbs-feature-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .bbs-closing-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .bbs-closing-text-strong {
        font-size: 1rem;
        line-height: 1.4;
    }

    .bbs-cta-button {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
}

/* History Section Styles */
.history-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.history-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.history-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.history-image-container:hover::before {
    opacity: 1;
}

.history-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.05) contrast(1.02);
    transition: transform 0.6s ease;
}

.history-image-container:hover {
    box-shadow: 0 20px 60px rgba(0, 195, 255, 0.3);
    transform: translateY(-5px);
}

.history-image-container:hover .history-image {
    transform: scale(1.05);
}

.history-text-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.history-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.history-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.history-paragraph {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.history-paragraph strong {
    font-weight: 500;
    color: #00c3ff;
}

.history-paragraph-highlight {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    padding: 30px;
    background: rgba(0, 195, 255, 0.05);
    border-left: 4px solid rgba(0, 195, 255, 0.5);
    border-radius: 12px;
    letter-spacing: 0.01em;
    position: relative;
}

.history-paragraph-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.03) 0%, transparent 100%);
    border-radius: 12px;
    pointer-events: none;
}

/* Responsive History Section */
@media (max-width: 1024px) {
    .history-section {
        padding: 100px 0;
    }

    .history-container {
        padding: 0 30px;
    }

    .history-content {
        gap: 60px;
    }

    .history-title {
        font-size: 2.8rem;
    }

    .history-paragraph {
        font-size: 1.1rem;
    }

    .history-paragraph-highlight {
        font-size: 1.15rem;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 80px 0;
    }

    .history-container {
        padding: 0 20px;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .history-image-container {
        order: 1;
    }

    .history-text-container {
        order: 2;
    }

    .history-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .history-text {
        gap: 24px;
    }

    .history-paragraph {
        font-size: 1rem;
    }

    .history-paragraph-highlight {
        font-size: 1.1rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 60px 0;
    }

    .history-title {
        font-size: 1.5rem;
    }

    .history-text {
        gap: 18px;
    }

    .history-paragraph {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .history-paragraph-highlight {
        font-size: 0.9rem;
        padding: 16px;
        line-height: 1.6;
    }
}

/* Team Section Styles */
.team-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #151515 0%, #1a1a1a 100%);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.team-section-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 195, 255, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 195, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .team-card:active {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(0, 195, 255, 0.4);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 195, 255, 0.2);
    }
}

.team-card:hover::before {
    opacity: 1;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-card:hover .team-image-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 195, 255, 0.2) 100%);
}

.team-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.team-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.team-card:hover .team-description {
    color: rgba(255, 255, 255, 0.95);
}

.team-linkedin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(0, 195, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.3);
    color: #00c3ff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.team-linkedin-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.team-linkedin-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.team-linkedin-button:hover {
    background: rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.8);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 195, 255, 0.4);
}

.team-linkedin-button:hover::before {
    left: 100%;
}

.team-linkedin-button:hover svg {
    transform: scale(1.1);
}

/* Responsive Team Section */
@media (max-width: 1024px) {
    .team-section {
        padding: 100px 0;
    }

    .team-container {
        padding: 0 30px;
    }

    .team-section-title {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }

    .team-grid {
        gap: 50px;
    }

    .team-image-wrapper {
        min-height: 450px;
    }

    .team-content {
        padding: 35px;
    }


    .team-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }

    .team-container {
        padding: 0 20px;
    }

    .team-section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

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

    .team-image-wrapper {
        min-height: 400px;
        max-height: 450px;
    }

    .team-image {
        object-fit: cover;
    }

    .team-content {
        padding: 30px;
        gap: 20px;
    }


    .team-description {
        font-size: 1rem;
    }

    .team-linkedin-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }

    .team-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .team-image-wrapper {
        min-height: 350px;
        max-height: 400px;
    }

    .team-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .team-content {
        padding: 25px;
        gap: 18px;
    }


    .team-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .team-linkedin-button {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* Process Section Styles */
.process-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-image-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.process-header-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.process-image-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-image-container:hover .process-header-image {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(0, 195, 255, 0.3));
}

.process-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.process-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.process-intro-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.process-intro-text strong {
    font-weight: 500;
    color: #00c3ff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 195, 255, 0.3) 0%, rgba(0, 195, 255, 0.1) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 195, 255, 0.1);
    border: 2px solid rgba(0, 195, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.timeline-item:hover .timeline-marker,
.timeline-item.active .timeline-marker {
    background: rgba(0, 195, 255, 0.2);
    border-color: rgba(0, 195, 255, 0.6);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.4);
}

.timeline-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00c3ff;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-number {
    color: #ffffff;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-content,
.timeline-item.active .timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 195, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 195, 255, 0.15);
}

.timeline-header {
    width: 100%;
    padding: 30px 35px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.timeline-header:hover {
    background: rgba(0, 195, 255, 0.05);
}

.timeline-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.timeline-item.active .timeline-title {
    color: #00c3ff;
}

.timeline-arrow {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.timeline-item.active .timeline-arrow {
    transform: rotate(180deg);
    color: #00c3ff;
}

.timeline-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 35px;
}

.timeline-item.active .timeline-description {
    max-height: 500px;
    padding: 0 35px 30px;
}

.timeline-description p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    padding-top: 20px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* Responsive Process Section */
@media (max-width: 1024px) {
    .process-section {
        padding: 100px 0;
    }

    .process-container {
        padding: 0 30px;
    }

    .process-title {
        font-size: 2.8rem;
    }

    .process-intro-text {
        font-size: 1.2rem;
    }

    .timeline {
        padding-left: 50px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -50px;
        width: 40px;
        height: 40px;
    }

    .timeline-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }

    .process-container {
        padding: 0 20px;
    }

    .process-header-image {
        max-width: 100%;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .process-intro {
        margin-bottom: 60px;
    }

    .process-intro-text {
        font-size: 1.1rem;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-marker {
        left: -40px;
        width: 36px;
        height: 36px;
    }

    .timeline-number {
        font-size: 1rem;
    }

    .timeline-header {
        padding: 25px 20px;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline-description {
        padding: 0 20px;
    }

    .timeline-item.active .timeline-description {
        padding: 0 20px 25px;
    }

    .timeline-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 0;
    }

    .process-title {
        font-size: 1.5rem;
    }

    .process-intro-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .timeline {
        padding-left: 35px;
    }

    .timeline-marker {
        left: -35px;
        width: 32px;
        height: 32px;
    }

    .timeline-number {
        font-size: 0.9rem;
    }

    .timeline-header {
        padding: 20px 15px;
    }

    .timeline-title {
        font-size: 1.05rem;
    }

    .timeline-description p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

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

.cta-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.cta-description {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.cta-subdescription {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 48px;
    background: rgba(0, 195, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.4);
    color: #00c3ff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    max-width: fit-content;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: rgba(0, 195, 255, 0.15);
    border-color: rgba(0, 195, 255, 0.8);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 195, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover svg {
    transform: scale(1.1);
}

.cta-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cta-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.cta-image-container:hover::before {
    opacity: 1;
}

.cta-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.05) contrast(1.02);
    transition: transform 0.6s ease;
}

.cta-image-container:hover {
    box-shadow: 0 20px 60px rgba(0, 195, 255, 0.3);
    transform: translateY(-5px);
}

.cta-image-container:hover .cta-image {
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #151515 0%, #000000 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #00c3ff;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-info {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #00c3ff;
    text-shadow: 0 0 8px rgba(0, 195, 255, 0.3);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive CTA Section */
@media (max-width: 1024px) {
    .cta-section {
        padding: 100px 0;
    }

    .cta-container {
        padding: 0 30px;
    }

    .cta-content {
        gap: 60px;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-subdescription {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-image-container {
        order: 1;
    }

    .cta-text-wrapper {
        order: 2;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-subdescription {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .cta-subdescription {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-subtitle {
        font-size: 0.9rem;
    }

    .footer-info {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 25px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    isolation: isolate;
}

.chat-widget * {
    box-sizing: border-box;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c3ff 0%, #0088cc 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 195, 255, 0.4), 0 0 0 0 rgba(0, 195, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10000;
}

.chat-toggle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 195, 255, 0.5), 0 0 0 8px rgba(0, 195, 255, 0.1);
    background: linear-gradient(135deg, #00d4ff 0%, #0099dd 100%);
}

.chat-toggle:active {
    transform: translateY(-2px) scale(1.02);
}

.chat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 195, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    max-height: 85vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 195, 255, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 9998;
}

.chat-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 195, 255, 0.05);
}

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

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c3ff 0%, #0088cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 195, 255, 0.3);
}

.chat-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-agent-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.chat-agent-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.chat-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 195, 255, 0.3);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 195, 255, 0.5);
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: messageSlideIn 0.3s ease-out;
    max-width: 85%;
}

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

.chat-message-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-message-bot {
    align-self: flex-start;
}

.chat-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c3ff 0%, #0088cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 195, 255, 0.3);
}

.chat-message-user .chat-message-avatar {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.chat-message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message-user .chat-message-content {
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.2) 0%, rgba(0, 136, 204, 0.2) 100%);
    border-color: rgba(0, 195, 255, 0.3);
    color: #ffffff;
}

.chat-message-content p {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.chat-message-content strong {
    color: #00c3ff;
    font-weight: 600;
}

.chat-link-button {
    display: inline-block;
    margin: 8px 0;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.2) 0%, rgba(0, 136, 204, 0.2) 100%);
    border: 1px solid rgba(0, 195, 255, 0.4);
    border-radius: 12px;
    color: #00c3ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    word-break: break-all;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.chat-link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.chat-link-button:hover {
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.3) 0%, rgba(0, 136, 204, 0.3) 100%);
    border-color: rgba(0, 195, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 195, 255, 0.3);
}

.chat-link-button:hover::before {
    left: 100%;
}

.chat-link-button:active {
    transform: translateY(0);
}

.chat-link-button::after {
    content: '↗';
    margin-left: 6px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.chat-typing {
    padding: 0 24px 16px;
    display: none;
}

.chat-typing.active {
    display: block;
    animation: typingFadeIn 0.3s ease-out;
}

@keyframes typingFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.chat-typing-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    width: fit-content;
}

.chat-typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 195, 255, 0.6);
    animation: typingDot 1.4s ease-in-out infinite;
}

.chat-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.chat-input-container {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 18px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 195, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.1);
}

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

.chat-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c3ff 0%, #0088cc 100%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 195, 255, 0.4);
}

.chat-send:active {
    transform: scale(0.95);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Chat Styles */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
        left: auto;
    }

    .chat-toggle {
        width: 56px;
        height: 56px;
        box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
    }

    .chat-toggle:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 8px 24px rgba(0, 195, 255, 0.5);
    }

    .chat-toggle:active {
        transform: translateY(0) scale(0.98);
    }

    .chat-popup {
        position: fixed !important;
        width: calc(100vw - 40px) !important;
        max-width: 100% !important;
        height: calc(100vh - 120px) !important;
        max-height: 85vh !important;
        bottom: 90px !important;
        right: 20px !important;
        left: 20px !important;
        margin: 0 !important;
        border-radius: 20px;
    }

    .chat-header {
        padding: 16px 20px;
    }

    .chat-messages {
        padding: 20px;
        gap: 12px;
    }

    .chat-input-container {
        padding: 16px 20px;
    }

    .chat-send {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-toggle {
        width: 52px;
        height: 52px;
    }

    .chat-toggle svg {
        width: 20px;
        height: 20px;
    }

    .chat-popup {
        width: calc(100vw - 32px) !important;
        right: 16px !important;
        left: 16px !important;
        bottom: 80px !important;
        height: calc(100vh - 100px) !important;
        border-radius: 16px;
        position: fixed !important;
    }

    .chat-header {
        padding: 14px 16px;
    }

    .chat-avatar {
        width: 40px;
        height: 40px;
    }

    .chat-agent-name {
        font-size: 1rem;
    }

    .chat-agent-status {
        font-size: 0.8rem;
    }

    .chat-messages {
        padding: 16px;
        gap: 10px;
    }

    .chat-message {
        max-width: 88%;
    }

    .chat-message-content {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    .chat-input-container {
        padding: 14px 16px;
    }

    .chat-input {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .chat-send {
        width: 38px;
        height: 38px;
    }

    .chat-send svg {
        width: 18px;
        height: 18px;
    }
}


