@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800;900&display=swap');

:root {
    --purple: #6B2B8C; /* Morado principal del logo */
    --pink: #FF69B4; /* Rosa del logo */
    --blue: #2B3990; /* Azul del logo como acento */
    --white: #FFFFFF;
    --text-dark: #333333;
    --gradient: linear-gradient(135deg, var(--pink), var(--purple));
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    --dark-bg: #222;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: var(--font-regular);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Global text styles for a more minimalist look */
p {
    font-weight: var(--font-regular);
}

li, .challenge-content p, .experience-item p, 
.input-item p, .output-item p, .process-content p, 
.roi-description, .metric-label, .solutions-note p,
.service-features li, .voice-transcript p, .message-bubble p {
    font-weight: var(--font-regular);
}

/* Keep headings bold */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
}

/* Presentation Container - Overall Layout */
.presentation-container {
    width: 100%;
    overflow: visible;
    position: relative;
    background: var(--white);
    height: auto;
}

/* Continuous background pattern */
.presentation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(107, 43, 140, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: visible;
}

.content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-sizing: border-box; /* Ensure padding is included in width calculation */
}

/* Front Page */
#front-page {
    background: var(--white);
    position: relative;
    overflow: visible;
}

#front-page .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slogan-container {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Circle background patterns - Adjusted positioning */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(107, 43, 140, 0.03);
    z-index: 1;
}

/* Front page circles - Repositioned to avoid overlap */
.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 25%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

.circle-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 30%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.circle-5 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 35%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.circle-6 {
    width: 50px;
    height: 50px;
    bottom: 50%;
    left: 50%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.connection {
    position: absolute;
    background: rgba(107, 43, 140, 0.05);
    z-index: 1;
    transform-origin: center;
    animation: pulse 4s ease-in-out infinite;
}

.connection-1 {
    width: 2px;
    height: 200px;
    top: 10%;
    left: 30%;
    transform: rotate(45deg);
}

.connection-2 {
    width: 2px;
    height: 150px;
    bottom: 20%;
    right: 25%;
    transform: rotate(-30deg);
}

.connection-3 {
    width: 2px;
    height: 100px;
    top: 40%;
    right: 40%;
    transform: rotate(60deg);
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

.logo-container {
    margin-bottom: 2rem;
    width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 800px;
}

.slogan {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    position: relative;
    color: var(--text-dark);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.slogan .aceleradora {
    display: block; /* Changed from inline to block for better mobile display */
    font-size: 3.5rem;
    font-weight: var(--font-black);
    color: var(--purple);
    position: relative;
    width: 100%; /* Ensure it takes full width */
    word-break: break-word; /* Allow word breaking */
}

.slogan .implementacion {
    display: block;
    color: var(--text-dark);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0.5rem;
    font-weight: var(--font-medium);
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple);
    z-index: 2;
    animation: pulse-node 3s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.node-2 {
    bottom: 30%;
    right: 25%;
    animation-delay: 1s;
}

.node-3 {
    top: 40%;
    left: 20%;
    animation-delay: 1.5s;
}

.node-4 {
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes pulse-node {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 43, 140, 0.4);
    }
    70% {
        transform: scale(1.5);
        box-shadow: 0 0 0 10px rgba(107, 43, 140, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 43, 140, 0);
    }
}

/* AI Implementation Challenges Section */
#challenges {
    background: var(--white);
    position: relative;
    overflow: visible;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 4rem; /* Add padding at the bottom to ensure content is fully visible */
}

/* Connecting circle between sections - Adjusted for better transition */
.connecting-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(107, 43, 140, 0.03);
    border-radius: 50%;
    bottom: -200px;
    left: 10%;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

/* Challenge section background elements - Repositioned to avoid overlap */
.challenge-circle-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    right: 5%;
    background: rgba(107, 43, 140, 0.03);
    animation: float 10s ease-in-out infinite;
}

.challenge-circle-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 5%;
    background: rgba(255, 105, 180, 0.03);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.challenge-circle-3 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 20%;
    background: rgba(107, 43, 140, 0.03);
    animation: float 12s ease-in-out infinite;
    animation-delay: 2s;
}

.challenge-circle-4 {
    width: 120px;
    height: 120px;
    top: 25%;
    left: 25%;
    background: rgba(255, 105, 180, 0.03);
    animation: float 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Section transition element */
.section-transition {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    z-index: 1;
}

/* Challenge section background elements */
.challenge-connection-1 {
    width: 2px;
    height: 300px;
    top: 10%;
    left: 30%;
    transform: rotate(45deg);
    background: rgba(107, 43, 140, 0.05);
    animation: pulse 8s ease-in-out infinite;
}

.challenge-connection-2 {
    width: 2px;
    height: 200px;
    bottom: 20%;
    right: 25%;
    transform: rotate(-30deg);
    background: rgba(255, 105, 180, 0.05);
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 1s;
}

.challenge-connection-3 {
    width: 2px;
    height: 250px;
    top: 40%;
    right: 40%;
    transform: rotate(60deg);
    background: rgba(107, 43, 140, 0.05);
    animation: pulse 7s ease-in-out infinite;
    animation-delay: 2s;
}

.challenge-node-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0.5s;
    background: var(--purple);
}

.challenge-node-2 {
    bottom: 25%;
    right: 35%;
    animation-delay: 1.2s;
    background: var(--pink);
}

.challenge-node-3 {
    top: 35%;
    left: 15%;
    animation-delay: 1.8s;
    background: var(--purple);
}

.challenge-node-4 {
    bottom: 15%;
    left: 40%;
    animation-delay: 2.4s;
    background: var(--pink);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: var(--purple);
    font-size: 2.5rem;
    font-weight: var(--font-extrabold);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -1px;
    padding: 0 2rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    border-radius: 2px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(107, 43, 140, 0.05);
    left: -25px;
    top: -15px;
    z-index: -1;
}

.challenges-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 3;
    margin: 0 auto;
    max-width: 1200px;
    margin-top: 2rem;
}

.challenge-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(107, 43, 140, 0.1);
}

.challenge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.challenge-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(107, 43, 140, 0.1);
    z-index: 4;
}

.challenge-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 43, 140, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.challenge-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px dashed rgba(107, 43, 140, 0.3);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.challenge-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

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

.challenge-content h3 {
    color: var(--purple);
    margin-bottom: 0.8rem;
    font-weight: var(--font-bold);
}

.challenge-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: var(--font-regular);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .challenges-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slogan {
        font-size: 2.8rem;
        padding: 0 10px;
        text-align: center;
    }

    .slogan .aceleradora {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        display: block;
        width: 100%;
    }

    .slogan .implementacion {
        font-size: 1.8rem;
        text-align: center;
    }

    .content {
        padding: 1rem;
        width: 100%;
    }

    .circle-1, .circle-2, .circle-3 {
        width: 150px;
        height: 150px;
    }

    .circle-4, .circle-5, .circle-6 {
        width: 60px;
        height: 60px;
    }
    
    .challenges-container {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .challenge-item {
        padding: 1.5rem;
    }
    
    #challenges {
        margin-top: -5rem;
        padding-top: 5rem;
    }
    
    .connecting-circle {
        width: 200px;
        height: 200px;
        bottom: -100px;
    }
    
    .section-transition {
        height: 50px;
    }
}

/* Add a specific media query for very small devices */
@media (max-width: 480px) {
    .slogan {
        font-size: 2.2rem;
    }

    .slogan .aceleradora {
        font-size: 2rem;
    }

    .slogan .implementacion {
        font-size: 1.5rem;
    }

    #front-page .content {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }
}

/* Who We Are Section */
#who-we-are {
    background: var(--white);
    position: relative;
    overflow: visible;
    min-height: 100vh;
    margin-top: -8rem;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

/* Team background elements */
.team-circle-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: -150px;
    background: rgba(107, 43, 140, 0.03);
    animation: float 12s ease-in-out infinite;
}

.team-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -100px;
    background: rgba(255, 105, 180, 0.03);
    animation: float 10s ease-in-out infinite;
    animation-delay: 1.5s;
}

.team-circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    background: rgba(107, 43, 140, 0.03);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.team-connection-1 {
    width: 2px;
    height: 250px;
    top: 15%;
    right: 30%;
    transform: rotate(30deg);
    background: rgba(107, 43, 140, 0.05);
    animation: pulse 7s ease-in-out infinite;
}

.team-connection-2 {
    width: 2px;
    height: 200px;
    bottom: 20%;
    left: 25%;
    transform: rotate(-45deg);
    background: rgba(255, 105, 180, 0.05);
    animation: pulse 5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.team-node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0.7s;
    background: var(--purple);
}

.team-node-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1.4s;
    background: var(--pink);
}

.team-node-3 {
    top: 50%;
    left: 40%;
    animation-delay: 2.1s;
    background: var(--purple);
}

/* DNA Connector Animation */
.dna-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 80%;
    background: rgba(107, 43, 140, 0.03);
    z-index: 1;
}

.dna-strand {
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, rgba(107, 43, 140, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 2px;
    animation: dna-rotate 8s linear infinite;
}

.dna-strand:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.dna-strand:nth-child(2) {
    top: 35%;
    animation-delay: 1.6s;
}

.dna-strand:nth-child(3) {
    top: 50%;
    animation-delay: 3.2s;
}

.dna-strand:nth-child(4) {
    top: 65%;
    animation-delay: 4.8s;
}

.dna-strand:nth-child(5) {
    top: 80%;
    animation-delay: 6.4s;
}

@keyframes dna-rotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
        width: 40px;
    }
    25% {
        transform: translateX(-20px) rotate(180deg);
        width: 80px;
    }
    50% {
        transform: translateX(20px) rotate(360deg);
        width: 40px;
    }
    75% {
        transform: translateX(-20px) rotate(540deg);
        width: 80px;
    }
    100% {
        transform: translateX(-50%) rotate(720deg);
        width: 40px;
    }
}

/* Team Container */
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.founder-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 43, 140, 0.1);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 43, 140, 0.15);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.founder-photo-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(107, 43, 140, 0.1), rgba(255, 105, 180, 0.1));
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 4rem;
    opacity: 0.5;
    background: linear-gradient(135deg, rgba(107, 43, 140, 0.1), rgba(255, 105, 180, 0.1));
}

#founder2-overlay {
    transition: opacity 0.3s ease;
}

#founder2-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.tech-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(107, 43, 140, 0.3);
    border-radius: 18px;
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.founder-info {
    text-align: center;
}

.founder-info h3 {
    color: var(--purple);
    margin-bottom: 0.5rem;
    font-weight: var(--font-bold);
}

.founder-role {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: var(--font-medium);
}

.experience-list {
    text-align: left;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.experience-item i {
    color: var(--purple);
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.experience-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: var(--font-regular);
}

.team-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100px;
    margin: 0 1rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(107, 43, 140, 0.1), rgba(255, 105, 180, 0.1));
}

.divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 1rem;
    box-shadow: 0 4px 10px rgba(107, 43, 140, 0.3);
}

.team-tagline {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: var(--font-regular);
}

.team-tagline .highlight-text {
    color: var(--purple);
    font-weight: var(--font-medium);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-card {
        width: 100%;
        max-width: 500px;
        margin-bottom: 2rem;
    }
    
    .team-divider {
        transform: rotate(90deg);
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .founder-photo-container {
        width: 150px;
        height: 150px;
    }
    
    .team-tagline {
        font-size: 1.2rem;
    }
    
    .dna-connector {
        display: none;
    }
}

/* Value Proposition Section */
#value-prop {
    background: var(--white);
    position: relative;
    overflow: visible;
    min-height: 90vh;
    margin-top: -4rem;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Additional background circles with new positions */
.value-circle-1 {
    width: 450px;
    height: 450px;
    top: 5%;
    right: -200px;
    background: rgba(107, 43, 140, 0.03);
    animation: float 15s ease-in-out infinite;
}

.value-circle-2 {
    width: 350px;
    height: 350px;
    bottom: 15%;
    left: -150px;
    background: rgba(255, 105, 180, 0.03);
    animation: float 12s ease-in-out infinite;
    animation-delay: 1s;
}

.value-circle-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 20%;
    background: rgba(107, 43, 140, 0.03);
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.value-circle-4 {
    width: 200px;
    height: 200px;
    bottom: 30%;
    right: 15%;
    background: rgba(255, 105, 180, 0.03);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.value-circle-5 {
    width: 150px;
    height: 150px;
    top: 25%;
    right: 35%;
    background: rgba(107, 43, 140, 0.03);
    animation: float 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

.value-circle-6 {
    width: 100px;
    height: 100px;
    bottom: 45%;
    left: 40%;
    background: rgba(255, 105, 180, 0.03);
    animation: float 7s ease-in-out infinite;
    animation-delay: 2.5s;
}

.value-circle-7 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    background: rgba(107, 43, 140, 0.03);
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.8s;
}

.value-circle-8 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 25%;
    background: rgba(255, 105, 180, 0.03);
    animation: float 11s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Workflow Diagram */
.workflow-diagram {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    min-height: 400px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Input Section */
.input-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.input-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 43, 140, 0.1);
    max-width: 250px;
}

.input-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.input-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    transform: translateY(-50%);
    opacity: 0.3;
}

.input-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 43, 140, 0.1), rgba(255, 105, 180, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    position: relative;
}

.input-icon i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Center */
.process-center {
    flex: 0 0 200px;
    height: 200px;
    margin: 0 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-space {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(107, 43, 140, 0.1);
}

.process-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(107, 43, 140, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.process-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.process-rays::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(107, 43, 140, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse 4s ease-in-out infinite;
}

/* Output Section */
.output-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.output-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 43, 140, 0.1);
    max-width: 250px;
    margin-left: auto;
}

.output-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.output-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    transform: translateY(-50%);
    opacity: 0.3;
}

.output-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 43, 140, 0.1), rgba(255, 105, 180, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    position: relative;
}

.output-icon i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover effects */
.input-item:hover, .output-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 43, 140, 0.15);
}

/* Item content styles */
.input-item h3, .output-item h3 {
    color: var(--purple);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: var(--font-bold);
}

.input-item p, .output-item p {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: var(--font-regular);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .workflow-diagram {
        flex-direction: column;
        gap: 2rem;
    }

    .input-section, .output-section {
        align-items: center;
    }

    .input-item, .output-item {
        margin: 0;
        max-width: 250px;
    }

    .input-item::after {
        right: 50%;
        top: 100%;
        width: 2px;
        height: 50px;
        transform: translateX(50%);
    }

    .output-item::after {
        left: 50%;
        bottom: 100%;
        width: 2px;
        height: 50px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .process-center {
        flex: 0 0 150px;
        height: 150px;
    }

    .logo-space {
        width: 120px;
        height: 120px;
    }
}

/* Services Section */
#services {
    background: var(--white);
    position: relative;
    overflow: visible;
    min-height: 90vh;
    margin-top: -4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Service background elements */
.service-circle-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -150px;
    background: rgba(107, 43, 140, 0.03);
    animation: float 12s ease-in-out infinite;
}

.service-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -100px;
    background: rgba(255, 105, 180, 0.03);
    animation: float 10s ease-in-out infinite;
    animation-delay: 1.5s;
}

.service-circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    background: rgba(107, 43, 140, 0.03);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.service-connection-1 {
    width: 2px;
    height: 250px;
    top: 15%;
    right: 30%;
    transform: rotate(30deg);
    background: rgba(107, 43, 140, 0.05);
    animation: pulse 7s ease-in-out infinite;
}

.service-connection-2 {
    width: 2px;
    height: 200px;
    bottom: 20%;
    left: 25%;
    transform: rotate(-45deg);
    background: rgba(255, 105, 180, 0.05);
    animation: pulse 5s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* Services Diagram Layout */
.services-diagram {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: 0 auto;
    margin-top: 1rem;
}

/* Central Element */
.service-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(107, 43, 140, 0.3);
    position: relative;
}

/* Service Cards */
.service-card {
    position: absolute;
    width: 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 43, 140, 0.1);
    z-index: 5;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 43, 140, 0.15);
}

.top-card {
    top: 50px;
    right: 150px;
}

.left-card {
    left: 100px;
    top: 300px;
}

.right-card {
    right: 100px;
    top: 450px;
}

/* Service Icons */
.service-icon-wrapper {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(248, 240, 252, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(107, 43, 140, 0.1);
    z-index: 6;
}

.left-card .service-icon-wrapper {
    top: -60px;
    left: -60px;
    transform: none;
}

.top-card .service-icon-wrapper {
    top: -60px;
    right: -60px;
    left: auto;
    transform: none;
}

.right-card .service-icon-wrapper {
    top: -60px;
    right: -60px;
    left: auto;
    transform: none;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(248, 240, 252, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--purple);
}

/* Service Content */
.service-card h3 {
    color: var(--purple);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: var(--font-regular);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li i {
    color: var(--purple);
    margin-right: 0.8rem;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Connectors */
.service-connector {
    position: absolute;
    z-index: 1;
}

.top-connector {
    top: 150px;
    left: 50%;
    width: 100px;
    transform: translateX(-50%) rotate(45deg);
}

.left-connector {
    top: 350px;
    left: 250px;
    width: 150px;
    transform: rotate(0deg);
}

.right-connector {
    top: 450px;
    right: 250px;
    width: 150px;
    transform: rotate(0deg);
}

.connector-line {
    position: absolute;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    opacity: 0.3;
}

.top-connector .connector-line,
.left-connector .connector-line, 
.right-connector .connector-line {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.connector-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--purple);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-node 3s ease-in-out infinite;
}

.top-connector .connector-dot {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.left-connector .connector-dot {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.right-connector .connector-dot {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-diagram {
        height: 800px;
        max-width: 900px;
    }
    
    .service-card {
        width: 300px;
    }
    
    .top-card {
        right: 100px;
    }
    
    .left-card {
        left: 50px;
    }
    
    .right-card {
        right: 50px;
    }
    
    .top-connector {
        left: 45%;
    }
    
    .left-connector {
        left: 200px;
    }
    
    .right-connector {
        right: 200px;
    }
}

@media (max-width: 992px) {
    .services-diagram {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4rem;
        padding: 4rem 1rem;
    }
    
    .service-center {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .service-card {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        max-width: 450px;
        margin-top: 3rem;
    }
    
    .service-connector {
        display: none;
    }
}

/* Additional service background elements */
.service-circle-4 {
    width: 250px;
    height: 250px;
    top: 70%;
    left: 10%;
    background: rgba(255, 105, 180, 0.03);
    animation: float 12s ease-in-out infinite;
    animation-delay: 2s;
}

.service-circle-5 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 5%;
    background: rgba(107, 43, 140, 0.02);
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

.service-connection-3 {
    width: 2px;
    height: 300px;
    top: 40%;
    left: 40%;
    transform: rotate(60deg);
    background: rgba(107, 43, 140, 0.05);
    animation: pulse 8s ease-in-out infinite;
    animation-delay: 2s;
}

.service-node-4 {
    width: 8px;
    height: 8px;
    top: 25%;
    left: 35%;
    animation: pulse-node 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.service-node-5 {
    width: 6px;
    height: 6px;
    bottom: 30%;
    right: 25%;
    animation: pulse-node 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Floating tech icons */
.floating-tech {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(107, 43, 140, 0.1);
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.floating-tech i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0.5s;
}

.tech-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.tech-3 {
    top: 30%;
    right: 30%;
    animation-delay: 2.5s;
}

/* Pulse rings around center */
.pulse-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid var(--purple);
    border-bottom: 2px solid var(--pink);
    animation: pulse-expand 3s ease-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.ring-2 {
    width: 100%;
    height: 100%;
    animation-delay: 1s;
}

.ring-3 {
    width: 100%;
    height: 100%;
    animation-delay: 2s;
}

@keyframes pulse-expand {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Card particles */
.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.3;
}

.p1 {
    top: 20%;
    left: 10%;
    animation: particle-float 8s ease-in-out infinite;
}

.p2 {
    top: 70%;
    left: 80%;
    animation: particle-float 12s ease-in-out infinite;
    animation-delay: 1s;
}

.p3 {
    top: 40%;
    left: 50%;
    animation: particle-float 10s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 10px);
    }
    50% {
        transform: translate(10px, 20px);
    }
    75% {
        transform: translate(-10px, 10px);
    }
}

/* Network grid */
.network-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.horizontal-1 {
    width: 80%;
    height: 1px;
    top: 30%;
    left: 10%;
    animation: grid-pulse 8s ease-in-out infinite;
}

.horizontal-2 {
    width: 60%;
    height: 1px;
    top: 70%;
    left: 20%;
    animation: grid-pulse 8s ease-in-out infinite;
    animation-delay: 2s;
}

.vertical-1 {
    width: 1px;
    height: 60%;
    top: 20%;
    left: 30%;
    background: linear-gradient(180deg, transparent, var(--purple), transparent);
    animation: grid-pulse 8s ease-in-out infinite;
    animation-delay: 1s;
}

.vertical-2 {
    width: 1px;
    height: 40%;
    top: 30%;
    left: 70%;
    background: linear-gradient(180deg, transparent, var(--purple), transparent);
    animation: grid-pulse 8s ease-in-out infinite;
    animation-delay: 3s;
}

.grid-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple);
    animation: pulse-node 4s ease-in-out infinite;
}

.d1 {
    top: 30%;
    left: 30%;
}

.d2 {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.d3 {
    top: 70%;
    left: 30%;
    animation-delay: 2s;
}

.d4 {
    top: 70%;
    left: 70%;
    animation-delay: 3s;
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Enhance service card hover effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 43, 140, 0.2);
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.05);
}

.service-icon {
    transition: all 0.4s ease;
}

/* Responsive adjustments for new elements */
@media (max-width: 992px) {
    .floating-tech, .network-grid {
        display: none;
    }
    
    .pulse-rings {
        opacity: 0.5;
    }
}

/* Methodology Section */
#methodology {
    position: relative;
    overflow: hidden;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.method-circle-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    background: var(--purple);
    animation: float 8s ease-in-out infinite;
}

.method-circle-2 {
    top: 60%;
    right: 5%;
    width: 250px;
    height: 250px;
    opacity: 0.07;
    background: var(--pink);
    animation: float 10s ease-in-out infinite;
}

.method-circle-3 {
    bottom: 10%;
    left: 15%;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    background: var(--purple);
    animation: float 12s ease-in-out infinite;
}

.method-circle-4 {
    top: 30%;
    right: 15%;
    width: 180px;
    height: 180px;
    opacity: 0.06;
    background: var(--pink);
    animation: float 9s ease-in-out infinite;
}

.method-connection-1 {
    top: 20%;
    left: 30%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    animation: pulse 4s infinite;
}

.method-connection-2 {
    top: 50%;
    right: 25%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    animation: pulse 5s infinite;
}

.method-connection-3 {
    bottom: 30%;
    left: 35%;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    animation: pulse 6s infinite;
}

.method-node-1 {
    top: 20%;
    left: 30%;
    animation: pulse-node 4s infinite;
}

.method-node-2 {
    top: 50%;
    right: 25%;
    animation: pulse-node 5s infinite;
}

.method-node-3 {
    bottom: 30%;
    left: 35%;
    animation: pulse-node 6s infinite;
}

.method-node-4 {
    bottom: 40%;
    right: 40%;
    animation: pulse-node 7s infinite;
}

.methodology-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Process Flow Layout */
.process-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0;
}

/* Process Step */
.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.process-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 5px 15px rgba(107, 43, 140, 0.3);
    z-index: 2;
    flex-shrink: 0;
}

.process-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(107, 43, 140, 0.3));
    z-index: -1;
    animation: pulse 2s infinite;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.process-icon {
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.process-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.process-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    border-left: 4px solid var(--purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.process-content h3 {
    color: var(--purple);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: var(--font-bold);
}

.process-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: var(--font-regular);
}

/* Flow Arrows */
.flow-arrow {
    position: relative;
    width: 100%;
    height: 50px;
    margin-left: 40px;
    margin-bottom: 1.5rem;
}

.arrow-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--pink), var(--purple));
    transform: translateY(-50%);
}

.arrow-head {
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--purple);
    border-right: 2px solid var(--purple);
    transform: translateY(-50%) rotate(45deg);
}

.arrow-pulse {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 10px;
    height: 10px;
    background: var(--pink);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {
    0% {
        left: 0%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Circular Return Arrow */
.circular-return {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 3;
}

.return-arrow {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--purple);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.return-arrow::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    border-top: 3px solid var(--purple);
    border-right: 3px solid var(--purple);
    transform: rotate(45deg);
}

/* Process Particles */
.process-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.process-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-move 15s infinite linear;
}

.process-particle.p1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.process-particle.p2 {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
}

.process-particle.p3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.process-particle.p4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 9s;
}

.process-particle.p5 {
    top: 60%;
    left: 40%;
    animation-delay: 12s;
}

@keyframes particle-move {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, 50px) scale(1.5);
    }
    50% {
        transform: translate(200px, -50px) scale(1);
    }
    75% {
        transform: translate(100px, -100px) scale(0.8);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@media (max-width: 992px) {
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .process-circle {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .process-content {
        width: 100%;
    }
    
    .flow-arrow {
        margin-left: 0;
        margin-bottom: 2rem;
    }
    
    .circular-return {
        right: auto;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .process-circle {
        width: 70px;
        height: 70px;
    }
    
    .process-icon {
        font-size: 1.5rem;
    }
    
    .process-content {
        padding: 1.2rem;
    }
    
    .process-content h3 {
        font-size: 1.1rem;
    }
    
    .process-content p {
        font-size: 0.9rem;
    }
    
    .flow-arrow {
        height: 40px;
    }
}

/* ROI Focus Section */
#roi-focus {
    position: relative;
    min-height: 80vh; /* Smaller than other sections */
    overflow: hidden;
    padding: 3rem 2rem;
    background-color: var(--white);
}

.roi-circle-1 {
    top: 15%;
    left: 8%;
    width: 250px;
    height: 250px;
    opacity: 0.05;
    background: var(--purple);
    animation: float 9s ease-in-out infinite;
}

.roi-circle-2 {
    bottom: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.07;
    background: var(--pink);
    animation: float 11s ease-in-out infinite;
}

.roi-circle-3 {
    top: 40%;
    right: 20%;
    width: 150px;
    height: 150px;
    opacity: 0.05;
    background: var(--purple);
    animation: float 10s ease-in-out infinite;
}

.roi-connection-1 {
    top: 30%;
    left: 25%;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    animation: pulse 4s infinite;
}

.roi-connection-2 {
    bottom: 40%;
    right: 20%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    animation: pulse 5s infinite;
}

.roi-node-1 {
    top: 30%;
    left: 25%;
    animation: pulse-node 4s infinite;
}

.roi-node-2 {
    bottom: 40%;
    right: 20%;
    animation: pulse-node 5s infinite;
}

.roi-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roi-message {
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
}

.roi-highlight {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.roi-highlight h3 {
    color: var(--purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-weight: var(--font-extrabold);
}

.roi-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--pink), transparent);
    opacity: 0.3;
    z-index: 1;
}

.roi-icon {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 1rem;
    display: block;
    position: relative;
}

.roi-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.roi-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-regular);
}

.roi-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.metric-item {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.metric-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(107, 43, 140, 0.05));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.metric-value {
    font-size: 3rem;
    font-weight: var(--font-black);
    color: var(--purple);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
}

.metric-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: var(--font-regular);
}

.roi-tagline {
    text-align: center;
    margin-top: 2rem;
    font-weight: var(--font-regular);
}

.roi-tagline .highlight-text {
    color: var(--purple);
    position: relative;
    font-weight: var(--font-medium);
}

.roi-tagline .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

@media (max-width: 992px) {
    .roi-metrics {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .metric-item {
        width: 100%;
        max-width: 300px;
    }
    
    .roi-highlight h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    #roi-focus {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .roi-description {
        font-size: 1rem;
    }
    
    .roi-highlight h3 {
        font-size: 1.3rem;
    }
    
    .roi-icon {
        font-size: 2.5rem;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
    
    .roi-tagline {
        font-size: 1.2rem;
    }
}

/* Try Our Solutions Section */
#try-solutions {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 4rem 2rem;
    background-color: var(--white);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 255, 0.95));
}

.try-circle-1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    background: var(--purple);
    animation: float 10s ease-in-out infinite;
}

.try-circle-2 {
    bottom: 20%;
    right: 5%;
    width: 250px;
    height: 250px;
    opacity: 0.07;
    background: var(--pink);
    animation: float 12s ease-in-out infinite;
}

.try-circle-3 {
    top: 40%;
    right: 15%;
    width: 180px;
    height: 180px;
    opacity: 0.05;
    background: var(--purple);
    animation: float 9s ease-in-out infinite;
}

.try-connection-1 {
    top: 25%;
    left: 20%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    animation: pulse 4s infinite;
}

.try-connection-2 {
    bottom: 35%;
    right: 15%;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    animation: pulse 5s infinite;
}

.try-node-1 {
    top: 25%;
    left: 20%;
    animation: pulse-node 4s infinite;
}

.try-node-2 {
    bottom: 35%;
    right: 15%;
    animation: pulse-node 5s infinite;
}

.try-node-3 {
    top: 60%;
    left: 40%;
    animation: pulse-node 6s infinite;
}

/* Digital Particles */
.digital-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.digital-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(1px);
    box-shadow: 0 0 10px rgba(107, 43, 140, 0.5);
}

.digital-particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, var(--pink), transparent);
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));
}

.dp1 {
    top: 15%;
    left: 25%;
    --rotation: 45deg;
    animation: particle-float 15s infinite linear;
}

.dp2 {
    top: 25%;
    right: 20%;
    --rotation: 120deg;
    animation: particle-float 18s infinite linear reverse;
}

.dp3 {
    bottom: 30%;
    left: 15%;
    --rotation: 210deg;
    animation: particle-float 20s infinite linear;
}

.dp4 {
    bottom: 20%;
    right: 30%;
    --rotation: 270deg;
    animation: particle-float 17s infinite linear reverse;
}

.dp5 {
    top: 40%;
    left: 40%;
    --rotation: 90deg;
    animation: particle-float 22s infinite linear;
}

.dp6 {
    top: 60%;
    right: 35%;
    --rotation: 180deg;
    animation: particle-float 19s infinite linear reverse;
}

.dp7 {
    bottom: 40%;
    left: 30%;
    --rotation: 135deg;
    animation: particle-float 21s infinite linear;
}

.dp8 {
    top: 70%;
    right: 15%;
    --rotation: 225deg;
    animation: particle-float 16s infinite linear reverse;
}

.dp9 {
    top: 30%;
    left: 10%;
    --rotation: 315deg;
    animation: particle-float 23s infinite linear;
}

.dp10 {
    bottom: 15%;
    right: 40%;
    --rotation: 0deg;
    animation: particle-float 14s infinite linear reverse;
}

.try-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.try-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.try-intro p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.try-intro .highlight-text {
    color: var(--purple);
    position: relative;
    font-weight: var(--font-medium);
}

.try-intro .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

.solutions-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(107, 43, 140, 0.05));
    z-index: -1;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
}

.solution-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.solution-icon i {
    color: var(--white);
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.solution-header h3 {
    color: var(--purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 1rem;
}

.solution-preview {
    background: rgba(240, 240, 255, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 150px;
    position: relative;
}

/* Voice Agent Visualization */
.voice-visualization {
    margin-bottom: 1rem;
}

.voice-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    gap: 3px;
}

.wave-bar {
    width: 4px;
    height: 10px;
    background: var(--purple);
    border-radius: 2px;
    animation: wave-animation 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: -1.2s; }
.wave-bar:nth-child(2) { animation-delay: -1.1s; }
.wave-bar:nth-child(3) { animation-delay: -1.0s; }
.wave-bar:nth-child(4) { animation-delay: -0.9s; }
.wave-bar:nth-child(5) { animation-delay: -0.8s; }
.wave-bar:nth-child(6) { animation-delay: -0.7s; }
.wave-bar:nth-child(7) { animation-delay: -0.6s; }
.wave-bar:nth-child(8) { animation-delay: -0.5s; }
.wave-bar:nth-child(9) { animation-delay: -0.4s; }
.wave-bar:nth-child(10) { animation-delay: -0.3s; }
.wave-bar:nth-child(11) { animation-delay: -0.2s; }
.wave-bar:nth-child(12) { animation-delay: -0.1s; }
.wave-bar:nth-child(13) { animation-delay: 0s; }
.wave-bar:nth-child(14) { animation-delay: 0.1s; }
.wave-bar:nth-child(15) { animation-delay: 0.2s; }

@keyframes wave-animation {
    0%, 100% {
        height: 10px;
    }
    50% {
        height: 40px;
    }
}

.voice-transcript {
    text-align: center;
    font-style: italic;
    color: var(--text-dark);
    font-weight: var(--font-regular);
}

/* Text Agent Chat Interface */
.chat-interface {
    min-height: 120px;
}

.chat-message {
    display: flex;
    margin-bottom: 1rem;
}

.chat-message.bot {
    justify-content: flex-start;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.message-avatar i {
    color: var(--white);
    font-size: 1.2rem;
}

.message-bubble {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 0.8rem 1.2rem;
    max-width: 80%;
    position: relative;
}

.message-bubble::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    z-index: -1;
}

.typing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 4px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.6;
    animation: typing-animation 1.5s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

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

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

@keyframes typing-animation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Try Buttons */
.solution-action {
    text-align: center;
}

.try-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 43, 140, 0.3);
    font-weight: var(--font-medium);
}

.try-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 43, 140, 0.4);
}

.try-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(107, 43, 140, 0.3);
}

.button-text {
    margin-right: 0.8rem;
    position: relative;
    z-index: 2;
}

.button-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.button-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.try-button:hover .button-ripple {
    transform: scale(2);
    opacity: 1;
}

/* Voice Button Animation */
.voice-button .button-icon i {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Text Button Animation */
.text-button .button-icon i {
    animation: typing-icon 2s infinite;
}

@keyframes typing-icon {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Solutions Note */
.solutions-note {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0 auto 2.5rem;
    max-width: 800px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.note-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.note-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.solutions-note p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-left: 1rem;
}

/* CTA Container */
.cta-container {
    text-align: center;
}

.main-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 43, 140, 0.3);
    z-index: 1;
    font-weight: var(--font-medium);
}

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

.main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(107, 43, 140, 0.4);
}

.main-cta:hover::before {
    transform: translateX(100%);
}

.main-cta span {
    margin-right: 1rem;
    position: relative;
    z-index: 1;
}

.main-cta i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.main-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .solutions-showcase {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .solution-card {
        max-width: 100%;
    }
    
    .try-intro p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .solution-header h3 {
        font-size: 1.3rem;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
    }
    
    .solution-icon i {
        font-size: 1.5rem;
    }
    
    .try-intro p {
        font-size: 1.1rem;
    }
    
    .solutions-note {
        flex-direction: column;
        text-align: center;
    }
    
    .note-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .main-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Use Cases Section */
#use-cases {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 2rem 0;
}

.use-circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.05) 0%, rgba(107, 43, 140, 0.08) 100%);
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.use-circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 43, 140, 0.05) 0%, rgba(255, 105, 180, 0.08) 100%);
    bottom: 15%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.use-cases-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(107, 43, 140, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
    gap: 20px;
    padding: 20px;
    height: auto;
    min-height: 0;
}

.use-cases-menu {
    width: 300px;
    background: linear-gradient(135deg, rgba(107, 43, 140, 0.02) 0%, rgba(255, 105, 180, 0.02) 100%);
    padding: 0.8rem;
    border-right: 1px solid rgba(107, 43, 140, 0.1);
    height: auto;
    max-height: none;
    overflow: visible;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.6rem;
    margin-bottom: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
    font-size: 0.85rem;
    line-height: 1.2;
}

.menu-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    color: var(--purple);
    transition: all 0.3s ease;
}

.menu-item.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border: none;
    box-shadow: 0 4px 15px rgba(107, 43, 140, 0.2);
}

.menu-item.active span {
    color: var(--white);
    font-weight: var(--font-bold);
}

.menu-item span {
    color: var(--text-dark);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
}

.menu-item.active span {
    color: var(--white);
}

.use-case-content {
    flex: 1;
    padding: 20px 30px;
    overflow: visible;
    height: auto;
}

.case-content {
    height: auto;
    overflow: visible;
    padding: 20px;
}

.case-section {
    margin-bottom: 15px;
}

.case-features li {
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.3;
}

.case-metrics {
    gap: 10px;
}

.metric {
    padding: 8px 12px;
    font-size: 0.9em;
}

/* Responsive styles */
@media (max-width: 992px) {
    .use-cases-container {
        flex-direction: column;
        margin: 1rem;
    }
    
    .use-cases-menu {
        width: 100%;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(107, 43, 140, 0.1);
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .use-cases-menu::-webkit-scrollbar {
        display: none;
    }
    
    .menu-item {
        flex: 0 0 auto;
        flex-direction: column;
        text-align: center;
        margin-right: 1rem;
        margin-bottom: 0;
        padding: 0.8rem;
        min-width: 100px;
    }
    
    .menu-icon {
        margin: 0 0 0.5rem 0;
    }
    
    .menu-item span {
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    #use-cases {
        padding: 1rem 0;
    }
    
    .use-cases-container {
        margin: 0.5rem;
        border-radius: 10px;
    }
    
    .menu-item {
        min-width: 80px;
        padding: 0.6rem;
    }
    
    .menu-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .menu-item span {
        font-size: 0.7rem;
    }
    
    .use-case-content {
        padding: 1rem;
    }
}

/* Case Content Styles */
.case-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(107, 43, 140, 0.05);
}

.case-content h3 {
    color: var(--purple);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-section {
    margin-bottom: 2rem;
}

.case-section h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

.case-section p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.case-features li i {
    color: var(--purple);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.metric {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 43, 140, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric .percentage {
    font-size: 2.2rem;
    font-weight: var(--font-black);
    color: var(--purple);
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric .description {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: var(--font-regular);
}

.metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 43, 140, 0.15);
    border-color: rgba(107, 43, 140, 0.2);
}

.metric:hover .percentage {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .metric {
        padding: 1.2rem;
    }

    .metric .percentage {
        font-size: 1.8rem;
    }

    .metric .description {
        font-size: 0.85rem;
    }
}

.case-content .solution-action {
    margin-top: 2rem;
    text-align: center;
}

.case-content .try-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 43, 140, 0.3);
}

.case-content .try-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.case-content .button-text {
    margin-right: 12px;
    z-index: 1;
}

.case-content .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    z-index: 1;
}

.case-content .button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.case-content .try-button:hover .button-ripple {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

@media (max-width: 768px) {
    .case-content .try-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .case-content .button-icon {
        width: 20px;
        height: 20px;
    }
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-header h3 {
    margin: 0;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex: 1;
}

.case-action {
    display: flex;
    align-items: center;
}

.case-content .try-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.case-content .try-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 43, 140, 0.3);
}

.case-content .button-text {
    margin-right: 8px;
    z-index: 1;
}

.case-content .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.case-content .button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.case-content .try-button:hover .button-ripple {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

@media (max-width: 768px) {
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .case-header h3 {
        font-size: 1.5rem;
    }

    .case-content .try-button {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}

/* Floating Logo */
.floating-logo {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.floating-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-logo:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 6px 15px rgba(107, 43, 140, 0.3));
}

.floating-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(107, 43, 140, 0.2));
}

@media (max-width: 992px) {
    .floating-logo {
        display: none;
    }
}

/* Chat Modal Styles */
.chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.chat-modal.active {
    display: flex;
}

.chat-container {
    width: 90%;
    max-width: 400px;
    height: 600px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    padding: 1rem;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.user {
    align-self: flex-end;
    background: var(--gradient);
    color: var(--white);
}

.message.bot {
    align-self: flex-start;
    background: #f0f0f0;
    color: var(--text-dark);
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0.5rem;
}

#chatInput {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
}

#sendMessage {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gradient);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

#sendMessage:hover {
    transform: scale(1.1);
}

.typing-indicator {
    align-self: flex-start;
    background: #f0f0f0;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    display: flex;
    gap: 0.3rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    opacity: 0.4;
    animation: typing 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.4s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.6s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .chat-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.chat-instruction {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.6;
    font-size: 0.9rem;
    padding: 2rem;
    font-style: italic;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meeting-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meeting-icon {
    font-size: 28px;
    color: #4285f4;
}

.meeting-details {
    flex: 1;
    line-height: 1.6;
}

.meeting-details strong {
    color: #4285f4;
    display: block;
    margin-bottom: 5px;
}

.meeting-details strong:first-child {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.calendar-link {
    display: inline-block;
    margin-top: 15px;
    color: #4285f4;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(66, 133, 244, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.calendar-link:hover {
    background: rgba(66, 133, 244, 0.2);
    transform: translateY(-1px);
}

.calendar-link i {
    margin-right: 8px;
}

.voice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

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

.voice-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.voice-modal.active .voice-container {
    transform: translateY(0);
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.voice-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: -0.5px;
}

.close-voice {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-voice:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.voice-content {
    padding: 1rem 0;
}

.call-type-selector {
    margin-bottom: 1.5rem;
}

.call-type-selector label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.radio-group {
    display: flex;
    gap: 1rem;
    background: #f8f8f8;
    padding: 0.5rem;
    border-radius: 12px;
}

.radio-label {
    flex: 1;
    position: relative;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-label span {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.radio-label input[type="radio"]:checked + span {
    background: linear-gradient(145deg, #2E1155, #7B2490);
    color: #fff;
    box-shadow: 0 2px 8px rgba(46, 17, 85, 0.25);
}

.outbound-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #7B2490;
    box-shadow: 0 0 0 3px rgba(123, 36, 144, 0.1);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.phone-input select {
    width: 120px;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
    font-size: 0.95rem;
    cursor: pointer;
}

.phone-input input[type="tel"] {
    flex: 1;
}

.start-call-button {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(145deg, #2E1155, #7B2490);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.start-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 36, 144, 0.3);
    background: linear-gradient(145deg, #7B2490, #E94D87);
}

.start-call-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(145deg, #a8a8a8, #949494);
}

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

.start-call-button .button-icon i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .voice-container {
        width: 95%;
        padding: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .radio-label span {
        text-align: left;
    }
}

/* Especialidades - Diseño Minimalista Integrado */
.specializations-container {
    width: 100%;
    max-width: 900px;
    margin: 2.5rem auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(80, 36, 122, 0.08);
    overflow: hidden;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 43, 140, 0.08);
}

.specializations-tabs {
    display: flex;
    position: relative;
    border-bottom: 1px solid rgba(107, 43, 140, 0.1);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(248, 248, 252, 0.8));
}

.specializations-tabs .tab {
    flex: 1;
    padding: 1.2rem 1rem;
    text-align: center;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-bottom: 3px solid transparent;
}

.specializations-tabs .tab i {
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.specializations-tabs .tab.active {
    color: var(--purple);
    font-weight: 600;
    border-bottom: 3px solid var(--purple);
    background: rgba(255, 255, 255, 1);
}

.specializations-tabs .tab.active i {
    opacity: 1;
    color: var(--purple);
}

.specializations-tabs .tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.9);
    color: var(--pink);
    border-bottom: 3px solid rgba(233, 77, 135, 0.3);
}

.specializations-tabs .tab:hover:not(.active) i {
    color: var(--pink);
}

.specialization-details {
    padding: 2rem;
    position: relative;
}

.specialization-detail {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.specialization-detail.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease forwards;
}

.specialization-detail h3 {
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
    color: var(--purple);
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
}

.specialization-detail h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 3px;
}

.specialization-detail p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 100%;
    font-weight: 400;
}

.specialization-features {
    list-style: none;
    text-align: left;
    color: #333;
    font-size: 1rem;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem 2rem;
}

.specialization-features li {
    position: relative;
    padding-left: 1.8em;
    line-height: 1.5;
}

.specialization-features li::before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--purple);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1em;
}

@media (max-width: 768px) {
    .specializations-container {
        margin: 1.5rem auto;
        border-radius: 15px;
    }
    
    .specializations-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .specializations-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .specializations-tabs .tab {
        padding: 1rem 0.6rem;
        font-size: 0.85rem;
        flex: 0 0 auto;
        min-width: 100px;
    }
    
    .specializations-tabs .tab i {
        font-size: 1rem;
    }
    
    .specialization-details {
        padding: 1.5rem;
    }
    
    .specialization-detail h3 {
        font-size: 1.3rem;
    }
    
    .specialization-detail p {
        font-size: 1rem;
    }
    
    .specialization-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .specialization-features li {
        font-size: 0.95rem;
    }
}

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

.specializations-tagline {
    margin-top: 2rem;
    text-align: center;
}

.specializations-tagline p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
}

.specializations-tagline .highlight-text {
    color: var(--purple);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.specializations-tagline .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, rgba(107, 43, 140, 0.2), rgba(233, 77, 135, 0.2));
    z-index: -1;
    border-radius: 3px;
}