.app-banner {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    position: relative;
    z-index: 100;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 20px 0;
}
.banner-content h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.banner-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
}

.download-btn {
    background-color: white;
    color: #2c3e50;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

@media (max-width: 768px) {
    .banner-content {
        padding: 40px 0;
    }
    
    .banner-content h3 {
        font-size: 1.3rem;
    }
    
    .download-btn {
        padding: 15px 25px;
    }
    
    .close-banner {
        right: 15px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .app-banner {
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .banner-container {
        width: 100%;
        padding: 20px;
    }
    
    .banner-content {
        padding: 60px 0;
    }
    
    .banner-content h3 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .download-btn {
        width: 80%;
        justify-content: center;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .close-banner {
        top: auto;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
    }
}
.burger {
    display: block; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1001;
    position: relative;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-list.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-list.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-list.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-list.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-list.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-list a {
        font-size: 1.5rem;
        padding: 15px;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (min-width: 769px) {
    .burger {
        display: none; 
    }
}
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    background-image: url(images/bg/1.webp);
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e69500;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.features {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.features .container {
  padding: 0 15px;
}

.features h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background-color: white;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.feature-card i {
  font-size: 2.2rem;
  color: #3498db;
  margin-bottom: 15px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #2c3e50;
}

.feature-card p {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .features {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .feature-card i {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .feature-card p {
    font-size: 1rem;
  }
}
.voice-mastery {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.voice-mastery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="90" r="0.8" fill="rgba(255,255,255,0.06)"/></svg>');
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.mastery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.mastery-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.mastery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.mastery-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.mastery-card:nth-child(1) { animation-delay: 0.1s; }
.mastery-card:nth-child(2) { animation-delay: 0.2s; }
.mastery-card:nth-child(3) { animation-delay: 0.3s; }
.mastery-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mastery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.mastery-card:hover .card-background {
    opacity: 0.1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.mastery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
}

.mastery-card p {
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.95;
}

.technique-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.technique-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.technique-tag:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}
.emotion-spectrum {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 20px 0;
}

.emotion-point {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emotion-point.joy { background: linear-gradient(45deg, #ffd700, #ffed4e); }
.emotion-point.anger { background: linear-gradient(45deg, #ff6b6b, #ff5252); }
.emotion-point.sadness { background: linear-gradient(45deg, #4fc3f7, #29b6f6); }
.emotion-point.fear { background: linear-gradient(45deg, #9c27b0, #673ab7); }
.emotion-point.surprise { background: linear-gradient(45deg, #ff9800, #f57c00); }

.emotion-point::after {
    content: attr(data-emotion);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.emotion-point:hover {
    transform: scale(1.2);
}

.emotion-point:hover::after {
    opacity: 1;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.culture-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
    height: 100px;
}

.culture-region {
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.culture-region.americas { background: linear-gradient(135deg, #43a047, #66bb6a); }
.culture-region.europe { background: linear-gradient(135deg, #1e88e5, #42a5f5); }
.culture-region.asia { background: linear-gradient(135deg, #fb8c00, #ffb74d); }
.culture-region.africa { background: linear-gradient(135deg, #8e24aa, #ab47bc); }

.culture-region::after {
    content: attr(data-region);
    position: absolute;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.culture-region:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mastery-meter {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

.meter-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 4px;
    position: relative;
    animation: fillMeter 2s ease-out forwards;
    transform: translateX(-100%);
}

@keyframes fillMeter {
    to { transform: translateX(0); }
}

.vocal-technique .meter-fill { width: 95%; animation-delay: 0.5s; }
.emotional-intelligence .meter-fill { width: 92%; animation-delay: 0.7s; }
.technical-precision .meter-fill { width: 98%; animation-delay: 0.9s; }
.cultural-adaptation .meter-fill { width: 94%; animation-delay: 1.1s; }

.meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mastery-philosophy {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.philosophy-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.philosophy-content blockquote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 10px 10px 0;
    position: relative;
}

.philosophy-content cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: var(--secondary-color);
    font-weight: 600;
}
.philosophy-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100px;
}

.wave-line {
    width: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave-line:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-line:nth-child(2) { height: 60px; animation-delay: 0.1s; }
.wave-line:nth-child(3) { height: 100px; animation-delay: 0.2s; }
.wave-line:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.wave-line:nth-child(5) { height: 80px; animation-delay: 0.4s; }

@keyframes waveAnimation {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
}

.audio-experience {
    padding: 120px 0;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 30%, #0f3460 70%, #e94560 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.audio-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(26, 26, 46, 0.3) 0%, transparent 70%);
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.experience-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.experience-header h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e94560 50%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.experience-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e94560, transparent);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

.experience-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.6;
}

.experience-journey {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #e94560 20%, 
        #f5a623 50%, 
        #3a5a78 80%, 
        transparent 100%);
    transform: translateX(-50%);
    animation: timelineFlow 8s ease-in-out infinite;
}

@keyframes timelineFlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 0 rgba(233, 69, 96, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(233, 69, 96, 0.6); }
}

.journey-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    opacity: 0;
    animation: stepFadeIn 1s ease-out forwards;
    position: relative;
}

.journey-step:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-step:nth-child(2) { animation-delay: 0.3s; }
.journey-step:nth-child(3) { animation-delay: 0.6s; }
.journey-step:nth-child(4) { animation-delay: 0.9s; }
.journey-step:nth-child(5) { animation-delay: 1.2s; }

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #f5a623);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 autoF;
    z-index: 3;
    transition: all 0.4s ease;
}

.step-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #f5a623);
    opacity: 0.3;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.1; }
}

.step-marker i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f5a623;
    font-weight: 700;
}

.step-content p {
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    font-size: 1.05rem;
}

.audio-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 15px 20px;
    position: relative;
    overflow: hidden;
}

.metric-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f5a623;
}

.bar-fill {
    height: 8px;
    background: linear-gradient(90deg, #e94560, #f5a623);
    border-radius: 4px;
    position: relative;
    animation: barFill 3s ease-out forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes barFill {
    to { transform: scaleX(1); }
}

.metric-value {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: white;
}

.processing-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: processFloat 4s ease-in-out infinite;
}

.process-item:nth-child(1) { animation-delay: 0s; }
.process-item:nth-child(2) { animation-delay: 1s; }
.process-item:nth-child(3) { animation-delay: 2s; }
.process-item:nth-child(4) { animation-delay: 3s; }

@keyframes processFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.process-item:hover {
    background: rgba(233, 69, 96, 0.2);
    transform: translateY(-3px);
}

.process-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.process-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.emotion-analysis {
    margin-top: 20px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.analysis-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.analysis-point:hover {
    background: rgba(233, 69, 96, 0.15);
    border-color: #e94560;
}

.point-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #f5a623);
    position: relative;
    animation: indicatorBlink 3s ease-in-out infinite;
}

@keyframes indicatorBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.analysis-point span {
    font-weight: 500;
    font-size: 0.95rem;
}

.cultural-elements {
    margin-top: 20px;
}

.culture-wheel {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    animation: wheelRotate 20s linear infinite;
}

@keyframes wheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wheel-segment.humor {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 100% 0 50% 0;
}

.wheel-segment.references {
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 0 100% 0 50%;
}

.wheel-segment.social {
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #45b7d1, #3498db);
    border-radius: 50% 0 0 100%;
}

.wheel-segment.linguistic {
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 0 50% 100% 0;
}

.segment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    animation: segmentCounter 20s linear infinite reverse;
}

@keyframes segmentCounter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.wheel-segment:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.experience-conclusion {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.conclusion-content h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #f5a623;
    font-weight: 700;
}

.conclusion-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.conclusion-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-indicator {
    position: relative;
    width: 150px;
    height: 150px;
}

.indicator-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(233, 69, 96, 0.6);
    animation-delay: 0s;
}

.ring-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(245, 166, 35, 0.7);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(58, 90, 120, 0.8);
    animation-delay: 1s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.indicator-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerBounce 2s ease-in-out infinite;
}

@keyframes centerBounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.indicator-center i {
    font-size: 2rem;
    color: white;
}
@media (max-width: 768px) {
    .audio-experience {
        padding: 80px 0;
    }
    
    .experience-header h2 {
        font-size: 2.2rem;
    }
    
    .experience-subtitle {
        font-size: 1.1rem;
    }
    
    .journey-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .journey-step:nth-child(even) {
        flex-direction: column !important;
    }
    
    .step-marker {
        margin: 0 auto 30px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .step-content {
        padding: 30px 20px;
    }
    
    .processing-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .culture-wheel {
        width: 160px;
        height: 160px;
    }
    
    .experience-conclusion {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .conclusion-content h3 {
        font-size: 1.8rem;
    }
    
    .conclusion-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .audio-experience {
        padding: 60px 0;
    }
    
    .experience-header h2 {
        font-size: 1.8rem;
    }
    
    .step-content {
        padding: 25px 15px;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .culture-wheel {
        width: 140px;
        height: 140px;
    }
    
    .metric-bar {
        padding: 12px 15px;
    }
    
    .process-item {
        padding: 12px;
        gap: 8px;
    }
    
    .success-indicator {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 320px) {
    .audio-experience {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .experience-header h2 {
        font-size: 1.6rem;
    }
    
    .experience-subtitle {
        font-size: 1rem;
    }
    
    .step-marker {
        width: 60px;
        height: 60px;
    }
    
    .step-marker i {
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 20px 12px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .culture-wheel {
        width: 120px;
        height: 120px;
    }
    
    .conclusion-content h3 {
        font-size: 1.5rem;
    }
}

.expertise-journey {
    padding: 100px 0;
    background: linear-gradient(145deg, #0f0f23 0%, #1a1a3a 30%, #2d1b69 60%, #8b5cf6 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.expertise-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(45, 27, 105, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 26, 58, 0.15) 0%, transparent 60%);
    animation: cosmicDrift 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cosmicDrift {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
    33% { opacity: 1; transform: scale(1.1) rotate(120deg); }
    66% { opacity: 0.8; transform: scale(0.95) rotate(240deg); }
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.journey-header h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 40%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
}

.journey-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #8b5cf6 30%, #f59e0b 70%, transparent 100%);
    animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.3); }
}

.journey-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.expertise-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #8b5cf6 15%, 
        #f59e0b 35%, 
        #06b6d4 55%, 
        #10b981 75%, 
        #8b5cf6 85%, 
        transparent 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    animation: trackFlow 12s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

@keyframes trackFlow {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
    25% { opacity: 1; box-shadow: 0 0 30px rgba(245, 158, 11, 0.7); }
    50% { opacity: 0.9; box-shadow: 0 0 25px rgba(6, 182, 212, 0.6); }
    75% { opacity: 1; box-shadow: 0 0 35px rgba(16, 185, 129, 0.8); }
}

.expertise-milestone {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
    opacity: 0;
    animation: milestoneReveal 1.2s ease-out forwards;
    position: relative;
}

.expertise-milestone:nth-child(even) {
    flex-direction: row-reverse;
}

.expertise-milestone:nth-child(2) { animation-delay: 0.2s; }
.expertise-milestone:nth-child(3) { animation-delay: 0.4s; }
.expertise-milestone:nth-child(4) { animation-delay: 0.6s; }
.expertise-milestone:nth-child(5) { animation-delay: 0.8s; }
.expertise-milestone:nth-child(6) { animation-delay: 1.0s; }

@keyframes milestoneReveal {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.milestone-marker {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 60px;
    z-index: 3;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.milestone-marker.current {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    animation: currentPulse 3s ease-in-out infinite;
}

@keyframes currentPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6); }
}

.milestone-marker:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.marker-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #f59e0b);
    opacity: 0.2;
    animation: markerGlow 3s ease-in-out infinite;
}

@keyframes markerGlow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.4); opacity: 0.05; }
}

.milestone-year {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.milestone-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.milestone-content:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.milestone-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #f59e0b;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.milestone-content p {
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.achievement-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(139, 92, 246, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    animation: badgeFloat 6s ease-in-out infinite;
}

.badge.breakthrough { animation-delay: 0s; }
.badge.innovation { animation-delay: 3s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.badge i {
    font-size: 1.2rem;
    color: #f59e0b;
}

.badge span {
    font-weight: 600;
    color: white;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(6, 182, 212, 0.1);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tech-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.tech-accuracy {
    color: #06b6d4;
    font-weight: 500;
    font-size: 0.9rem;
}

.cultural-network {
    margin-top: 30px;
}

.network-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    animation: statPulse 4s ease-in-out infinite;
}

.stat-circle.countries { animation-delay: 0s; }
.stat-circle.experts { animation-delay: 1.3s; }
.stat-circle.research { animation-delay: 2.6s; }

@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 2px;
}

.cultural-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.specialty {
    background: rgba(16, 185, 129, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.specialty:hover {
    background: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.global-presence {
    margin-top: 30px;
}

.presence-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
    margin: 0 auto 30px;
    height: 200px;
}

.continent {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: continentPulse 5s ease-in-out infinite;
}

.continent.north-america { grid-column: 1; grid-row: 1; animation-delay: 0s; }
.continent.europe { grid-column: 2; grid-row: 1; animation-delay: 1s; }
.continent.asia { grid-column: 3; grid-row: 1; animation-delay: 2s; }
.continent.south-america { grid-column: 1; grid-row: 2; animation-delay: 3s; }
.continent.africa { grid-column: 2; grid-row: 2; animation-delay: 4s; }

@keyframes continentPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.continent:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    transform: scale(1.1);
}

.continent-marker i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.expansion-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.metric-item {
    text-align: center;
    background: rgba(245, 158, 11, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 8px;
}

.metric-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.future-innovations {
    margin-top: 30px;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.innovation-item {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: innovationGlow 8s ease-in-out infinite;
}

.innovation-item.neural { animation-delay: 0s; }
.innovation-item.quantum { animation-delay: 2s; }
.innovation-item.holographic { animation-delay: 4s; }
.innovation-item.sustainable { animation-delay: 6s; }

@keyframes innovationGlow {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
}

.innovation-item:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.innovation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.innovation-icon i {
    font-size: 1.8rem;
    color: white;
}

.innovation-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #10b981;
    font-weight: 600;
}

.innovation-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.journey-conclusion {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 100px;
    padding: 60px 0;
    border-top: 2px solid rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

.conclusion-text h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #8b5cf6;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conclusion-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.conclusion-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    position: relative;
    width: 150px;
    height: 150px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-background {
    fill: none;
    stroke: rgba(139, 92, 246, 0.2);
    stroke-width: 8;
}

.progress-ring-progress {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 0;
    animation: progressFill 3s ease-out forwards;
}

@keyframes progressFill {
    from { stroke-dashoffset: 314; }
    to { stroke-dashoffset: 0; }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.progress-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .expertise-journey {
        padding: 80px 0;
    }
    
    .journey-header h2 {
        font-size: 2.5rem;
    }
    
    .journey-subtitle {
        font-size: 1.1rem;
    }
    
    .expertise-milestone {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .expertise-milestone:nth-child(even) {
        flex-direction: column !important;
    }
    
    .milestone-marker {
        margin: 0 0 30px 0;
        width: 80px;
        height: 80px;
    }
    
    .timeline-track {
        display: none;
    }
    
    .milestone-content {
        padding: 30px 25px;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .network-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .presence-map {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 300px;
        height: 240px;
    }
    
    .continent.africa {
        grid-column: span 2;
        grid-row: 3;
    }
    
    .expansion-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .journey-conclusion {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .conclusion-text h3 {
        font-size: 2rem;
    }
    
    .conclusion-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .expertise-journey {
        padding: 60px 0;
    }
    
    .journey-header h2 {
        font-size: 2rem;
    }
    
    .milestone-content {
        padding: 25px 20px;
    }
    
    .milestone-content h3 {
        font-size: 1.5rem;
    }
    
    .milestone-content p {
        font-size: 1rem;
    }
    
    .achievement-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .badge {
        padding: 12px 20px;
    }
    
    .tech-item {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-circle {
        width: 70px;
        height: 70px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .cultural-specialties {
        gap: 10px;
    }
    
    .specialty {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .progress-circle {
        width: 120px;
        height: 120px;
    }
    
    .progress-number {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .expertise-journey {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .journey-header h2 {
        font-size: 1.8rem;
    }
    
    .journey-subtitle {
        font-size: 1rem;
    }
    
    .milestone-marker {
        width: 70px;
        height: 70px;
    }
    
    .milestone-year {
        font-size: 1.1rem;
    }
    
    .milestone-content {
        padding: 20px 15px;
    }
    
    .milestone-content h3 {
        font-size: 1.3rem;
    }
    
    .milestone-content p {
        font-size: 0.95rem;
    }
    
    .presence-map {
        max-width: 250px;
        height: 180px;
        gap: 10px;
    }
    
    .innovation-item {
        padding: 20px;
    }
    
    .innovation-icon {
        width: 50px;
        height: 50px;
    }
    
    .conclusion-text h3 {
        font-size: 1.7rem;
    }
}

.about-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--white);
    margin-right: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.image-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.image-frame::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--white);
}

.team-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: padding-box;
    transition: var(--transition);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.photo-overlay i {
    font-size: 1.5rem;
    color: var(--white);
}

.team-photo:hover .photo-overlay {
    opacity: 1;
}

.team-photo:hover img {
    transform: scale(1.1);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-card p {
    color: var(--text-color);
    line-height: 1.6;
}
.process-section {
    padding: 80px 0;
    background-color: var(--white);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-card p {
    color: var(--text-color);
    line-height: 1.6;
}
.values-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.values-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 25px 30px;
    background: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    transition: var(--transition);
}

.accordion-header::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--light-color);
}

.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content-inner {
    padding: 0 30px 25px;
}

.accordion-content-inner p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-intro .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 60px 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-section h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-card {
        padding: 30px 25px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-section h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 30px 25px;
    }
    
    .values-section {
        padding: 60px 0;
    }
    
    .values-section h2 {
        font-size: 2rem;
    }
    
    .accordion-header {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .accordion-header::after {
        right: 25px;
    }
    
    .accordion-content-inner {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .about-intro {
        padding: 50px 0;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .about-image {
        height: 200px;
    }
    
    .team-section {
        padding: 50px 0;
    }
    
    .team-section h2 {
        font-size: 1.8rem;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .team-photo {
        width: 80px;
        height: 80px;
    }
    
    .team-card h3 {
        font-size: 1.3rem;
    }
    
    .team-role {
        font-size: 1rem;
    }
    
    .process-section {
        padding: 50px 0;
    }
    
    .process-section h2 {
        font-size: 1.8rem;
    }
    
    .process-card {
        padding: 25px 20px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .process-card h3 {
        font-size: 1.2rem;
    }
    
    .process-card p {
        font-size: 0.95rem;
    }
    
    .values-section {
        padding: 50px 0;
    }
    
    .values-section h2 {
        font-size: 1.8rem;
    }
    
    .accordion-header {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .accordion-header::after {
        right: 20px;
    }
    
    .accordion-content-inner {
        padding: 0 20px 18px;
    }
    
    .accordion-content-inner p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .about-intro {
        padding: 40px 0;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-image {
        height: 180px;
    }
    
    .team-section {
        padding: 40px 0;
    }
    
    .team-section h2 {
        font-size: 1.6rem;
    }
    
    .team-card {
        padding: 20px 15px;
    }
    
    .team-photo {
        width: 70px;
        height: 70px;
    }
    
    .team-card h3 {
        font-size: 1.2rem;
    }
    
    .team-role {
        font-size: 0.95rem;
    }
    
    .team-card p {
        font-size: 0.9rem;
    }
    
    .process-section {
        padding: 40px 0;
    }
    
    .process-section h2 {
        font-size: 1.6rem;
    }
    
    .process-card {
        padding: 20px 15px;
    }
    
    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .process-card h3 {
        font-size: 1.1rem;
    }
    
    .process-card p {
        font-size: 0.9rem;
    }
    
    .values-section {
        padding: 40px 0;
    }
    
    .values-section h2 {
        font-size: 1.6rem;
    }
    
    .accordion-header {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .accordion-header::after {
        right: 18px;
    }
    
    .accordion-content-inner {
        padding: 0 18px 15px;
    }
    
    .accordion-content-inner p {
        font-size: 0.9rem;
    }
}

.innovation-lab {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.innovation-lab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 10%, rgba(83, 52, 131, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(15, 52, 96, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(22, 33, 62, 0.2) 0%, transparent 50%);
    animation: techPulse 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes techPulse {
    0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    33% { opacity: 1; transform: scale(1.1) rotate(120deg); }
    66% { opacity: 0.8; transform: scale(0.9) rotate(240deg); }
}

.lab-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.lab-header h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #533483 30%, #0f3460 70%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.lab-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #533483 30%, #0f3460 70%, transparent 100%);
    animation: headerPulse 3s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.5); }
}

.lab-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.7;
}

.innovation-showcase {
    position: relative;
    z-index: 2;
}

.showcase-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.tech-preview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.preview-screen {
    background: #000;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.preview-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(83, 52, 131, 0.1) 50%, transparent 70%);
    animation: screenScan 4s linear infinite;
}

@keyframes screenScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.screen-content {
    position: relative;
    z-index: 2;
}

.waveform-display {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 80px;
    margin-bottom: 20px;
}

.wave-bar {
    width: 8px;
    background: linear-gradient(180deg, #533483 0%, #0f3460 100%);
    border-radius: 4px;
    animation: waveAnimation 2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.2s; }
.wave-bar:nth-child(3) { animation-delay: 0.4s; }
.wave-bar:nth-child(4) { animation-delay: 0.6s; }
.wave-bar:nth-child(5) { animation-delay: 0.8s; }
.wave-bar:nth-child(6) { animation-delay: 1s; }
.wave-bar:nth-child(7) { animation-delay: 1.2s; }
.wave-bar:nth-child(8) { animation-delay: 1.4s; }
.wave-bar:nth-child(9) { animation-delay: 1.6s; }
.wave-bar:nth-child(10) { animation-delay: 1.8s; }

@keyframes waveAnimation {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.processing-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #533483;
    font-size: 0.9rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(83, 52, 131, 0.3);
    animation: dotBlink 1.5s ease-in-out infinite;
}

.indicator-dot.active {
    background: #533483;
}

.indicator-dot:nth-child(2) { animation-delay: 0.5s; }
.indicator-dot:nth-child(3) { animation-delay: 1s; }

@keyframes dotBlink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.preview-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(83, 52, 131, 0.2);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(83, 52, 131, 0.4);
    transform: scale(1.1);
}

.control-btn.active {
    background: #533483;
}

.innovation-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #533483;
    font-weight: 700;
}

.innovation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(83, 52, 131, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #533483, #0f3460);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.feature-details p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

.lab-projects {
    margin-bottom: 80px;
}

.lab-projects h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #533483;
    font-weight: 700;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card.quantum {
    border-color: rgba(255, 107, 107, 0.3);
}

.project-card.holographic {
    border-color: rgba(72, 187, 120, 0.3);
}

.project-card.neural {
    border-color: rgba(66, 153, 225, 0.3);
}

.project-card.environmental {
    border-color: rgba(129, 230, 217, 0.3);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #533483, #0f3460);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.project-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.project-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.status-value {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-value.experimental {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.status-value.development {
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
}

.status-value.testing {
    background: rgba(66, 153, 225, 0.2);
    color: #4299e1;
}

.status-value.implemented {
    background: rgba(129, 230, 217, 0.2);
    color: #81e6d9;
}

.lab-metrics h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #533483;
    font-weight: 700;
}

.metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(83, 52, 131, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.metric-card:hover::before {
    transform: translateX(100%);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #533483, #0f3460);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    margin-left: -7px;
}

.metric-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--white);
}

@media (max-width: 1024px) {
    .innovation-lab {
        padding: 80px 0;
    }
    
    .showcase-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .metrics-dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .innovation-lab {
        padding: 60px 0;
    }
    
    .lab-header h2 {
        font-size: 2.5rem;
    }
    
    .lab-subtitle {
        font-size: 1.1rem;
    }
    
    .innovation-content h3 {
        font-size: 1.8rem;
    }
    
    .innovation-content p {
        font-size: 1rem;
    }
    
    .tech-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .lab-projects h3 {
        font-size: 2rem;
    }
    
    .lab-metrics h3 {
        font-size: 2rem;
    }
    
    .metrics-dashboard {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-social {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .innovation-lab {
        padding: 50px 0;
    }
    
    .lab-header h2 {
        font-size: 2rem;
    }
    
    .lab-subtitle {
        font-size: 1rem;
    }
    
    .tech-preview {
        padding: 20px;
    }
    
    .preview-screen {
        padding: 15px;
    }
    
    .waveform-display {
        height: 60px;
    }
    
    .wave-bar {
        width: 6px;
    }
    
    .innovation-content h3 {
        font-size: 1.5rem;
    }
    
    .innovation-content p {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 12px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .project-card {
        padding: 20px;
    }
    
    .project-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-card {
        padding: 20px;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .team-photo {
        width: 80px;
        height: 80px;
    }
    
    .team-social {
        gap: 8px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .innovation-lab {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .lab-header h2 {
        font-size: 1.8rem;
    }
    
    .lab-subtitle {
        font-size: 0.95rem;
    }
    
    .tech-preview {
        padding: 15px;
    }
    
    .preview-screen {
        padding: 12px;
    }
    
    .waveform-display {
        height: 50px;
        gap: 2px;
    }
    
    .wave-bar {
        width: 5px;
    }
    
    .innovation-content h3 {
        font-size: 1.3rem;
    }
    
    .innovation-content p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 10px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-details h4 {
        font-size: 1rem;
    }
    
    .lab-projects h3 {
        font-size: 1.6rem;
    }
    
    .lab-metrics h3 {
        font-size: 1.6rem;
    }
    
    .project-card {
        padding: 15px;
    }
    
    .project-icon {
        width: 40px;
        height: 40px;
    }
    
    .project-card h4 {
        font-size: 1.1rem;
    }
    
    .project-card p {
        font-size: 0.85rem;
    }
    
    .metric-card {
        padding: 15px;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .team-photo {
        width: 70px;
        height: 70px;
    }
    
    .team-card h3 {
        font-size: 1.2rem;
    }
    
    .team-role {
        font-size: 0.95rem;
    }
    
    .team-card p {
        font-size: 0.9rem;
    }
}
.app-download {
  padding: 40px 0;
  background-color: #fff;
}

.app-download .container {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}

.app-content {
  order: 2; 
  text-align: center;
  padding: 20px 0;
}

.app-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.app-content p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.5;
  margin-bottom: 25px;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3498db;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 220px;
  transition: all 0.3s ease;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #3498db;
  color: #3498db;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.app-image {
  order: 1; 
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: linear-gradient(145deg, #e2e8f0, #cbd5e0);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 25px;
  background-color: #2c3e50;
  border-radius: 15px;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #2c3e50;
}

@media (min-width: 768px) {
  .app-download {
    padding: 60px 0;
  }
  
  .app-download .container {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  
  .app-content {
    order: 1;
    flex: 1;
    text-align: left;
    padding: 0;
  }
  
  .app-content h2 {
    font-size: 2.2rem;
  }
  
  .app-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .app-image {
    order: 2;
    flex: 1;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
}

.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.client {
    font-weight: 600;
    color: var(--secondary-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0 15px;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    color: var(--secondary-color);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
}

.voice-showcase {
    padding: 80px 0;
    background-color: var(--light-color);
}

.voice-showcase h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.voice-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.voice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.voice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.voice-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.voice-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.voice-content {
    color: var(--text-color);
    line-height: 1.6;
}

.voice-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.voice-content li {
    margin-bottom: 8px;
}

.wave-anim {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    animation: waveMove 3s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.tech-badge {
    text-align: center;
    padding: 30px;
    background: var(--gradient-accent);
    border-radius: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.badge-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.cta {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.page-hero {
    padding: 150px 0 80px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-form .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  background: #0066cc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0052a3;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0; 
  flex-shrink: 0;
}

.checkbox-label {
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

.checkbox-label a {
  color: #0066cc;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
    .mastery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .mastery-philosophy {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .philosophy-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .mastery-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .mastery-card {
        padding: 30px 20px;
    }
    
    .emotion-spectrum {
        justify-content: space-around;
    }
    
    .emotion-point {
        width: 35px;
        height: 35px;
    }
    
    .tech-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .culture-map {
        height: 80px;
    }
    
    .philosophy-content blockquote {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .sound-wave {
        height: 80px;
    }
    
    .wave-line:nth-child(3) { height: 80px; }
    
    .app-download .container {
        flex-direction: column;
    }
    
    .app-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .tech-badge {
        flex-direction: column;
        gap: 15px;
    }
    
    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .voice-mastery {
        padding: 60px 0;
    }
    
    .mastery-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .mastery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mastery-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .mastery-card h3 {
        font-size: 1.3rem;
    }
    
    .technique-list {
        gap: 8px;
    }
    
    .technique-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .emotion-point {
        width: 30px;
        height: 30px;
    }
    
    .emotion-point::after {
        font-size: 0.7rem;
        bottom: -20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .philosophy-content h3 {
        font-size: 1.5rem;
    }
    
    .philosophy-content p {
        font-size: 1rem;
    }
    
    .philosophy-content blockquote {
        padding: 15px;
        font-size: 1rem;
    }
    
    .sound-wave {
        height: 60px;
        gap: 3px;
    }
    
    .wave-line {
        width: 3px;
    }
    
    .wave-line:nth-child(1) { height: 15px; }
    .wave-line:nth-child(2) { height: 45px; }
    .wave-line:nth-child(3) { height: 60px; }
    .wave-line:nth-child(4) { height: 30px; }
    .wave-line:nth-child(5) { height: 50px; }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .btn.secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .voice-mastery::before {
        animation: none;
    }
    
    .card-icon::before {
        animation: none;
    }
    
    .meter-fill::after {
        animation: none;
    }
    
    .wave-line {
        animation: none;
    }
    
    .pulse-anim {
        animation: none;
    }
    
    .wave-anim {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .mastery-card {
        border: 2px solid var(--white);
    }
    
    .technique-tag {
        border: 1px solid var(--white);
    }
    
    .emotion-point {
        border: 2px solid var(--white);
    }
}

.mastery-card:focus-within,
.technique-tag:focus,
.emotion-point:focus,
.culture-region:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

@media print {
    .voice-mastery {
        background: white !important;
        color: black !important;
        padding: 40px 0;
    }
    
    .mastery-card {
        background: white !important;
        border: 1px solid black;
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .mastery-header h2 {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}
.services-catalog {
  padding: 30px 0;
  background-color: #f8f9fa;
}

.services-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 16px;
  background-color: transparent;
  border: 2px solid #3498db;
  color: #3498db;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn.active {
  background-color: #3498db;
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background-color: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #e8f4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #3498db;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #2c3e50;
}

.service-card p {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn.outline {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #3498db;
  color: #3498db;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn.outline:hover {
  background-color: #3498db;
  color: white;
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .services-catalog {
    padding: 50px 0;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .service-card {
    padding: 30px 25px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .services-filter {
    justify-content: flex-start;
    margin-bottom: 35px;
  }
  
  .filter-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
.service-details {
  padding: 60px 0;
  background-color: var(--white);
}

.service-details h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.features-tabs {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tabs-header {
  display: flex;
  flex-direction: column;
  background-color: var(--light);
}

.tab-btn {
  padding: 15px 20px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  position: relative;
}

.tab-btn.active {
  color: var(--secondary);
  background-color: var(--white);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
}

.tab-btn:not(.active):hover {
  color: var(--dark);
}

.tabs-content {
  padding: 30px;
  background-color: var(--white);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tab-pane h3 {
  color: var(--dark);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.tab-pane ul {
  margin: 20px 0;
  padding-left: 20px;
}

.tab-pane ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.tab-pane ul li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.language-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background-color: var(--light);
  transition: var(--transition);
}

.language-item:hover {
  background-color: rgba(52, 152, 219, 0.1);
  transform: translateY(-3px);
}

.flag-icon {
  font-size: 1.5rem;
}

.pricing-section {
  padding: 60px 0;
  background-color: var(--light);
}

.pricing-section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.pricing-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--secondary);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card ul {
  margin: 25px 0;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.pricing-card ul li::before {
  content: '•';
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 10px;
}

.btn.outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn.outline:hover {
  background-color: #0066cc;
  color: var(--white);
}

.workflow-section {
  padding: 60px 0;
  background-color: var(--white);
}

.workflow-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.workflow-step {
  background-color: var(--light);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  width: 100%;
  max-width: 300px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.workflow-step:hover {
  transform: scale(1.05);
  background-color:black;
  color: var(--white);
}

.workflow-step:hover h3 {
  color: var(--white);
}

.workflow-step:hover .step-number {
  background-color: var(--white);
  color: #0066cc;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
  transition: var(--transition);
}

.workflow-step h3 {
  margin-bottom: 10px;
  color: var(--dark);
  transition: var(--transition);
}

.workflow-arrow {
  display: none;
  color: var(--text-light);
  font-size: 1.5rem;
  transform: rotate(90deg);
}



@media (min-width: 768px) {
  .tabs-header {
    flex-direction: row;
  }
  
  .tab-btn {
    text-align: center;
  }
  
  .tab-btn.active::after {
    width: 3px;
    height: 100%;
    top: 0;
    bottom: auto;
  }
  
  .language-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-card.featured {
    transform: scaleY(1.05);
  }
  
  .workflow-steps {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .workflow-arrow {
    display: block;
    transform: rotate(0deg);
    align-self: center;
  }
}

@media (min-width: 992px) {
  .workflow-steps {
    flex-wrap: nowrap;
  }
  
  .workflow-step {
    max-width: 200px;
  }
  
  .workflow-step:hover {
    transform: translateY(-10px);
  }
}

@keyframes stepPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
  }
}

.workflow-step:nth-child(1) {
  animation: stepPulse 3s infinite;
}

.workflow-step:nth-child(3) {
  animation: stepPulse 3s infinite 0.5s;
}

.workflow-step:nth-child(5) {
  animation: stepPulse 3s infinite 1s;
}

.workflow-step:nth-child(7) {
  animation: stepPulse 3s infinite 1.5s;
}

.workflow-step:nth-child(9) {
  animation: stepPulse 3s infinite 2s;
}
.voice-artistry {
    padding: 60px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.voice-artistry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(46, 134, 222, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.artistry-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.artistry-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #2e86de, #4bcffa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2e86de, transparent);
}

.decoration-icon {
    margin: 0 15px;
    font-size: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.artistry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.artistry-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.artistry-block {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.artistry-block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2e86de, #4bcffa);
}

.left-block::after {
    left: 0;
    right: auto;
}

.right-block::after {
    left: auto;
    right: 0;
}

.artistry-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.artistry-block p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.special-note {
    background-color: #f8f9fa;
    border-left: 3px solid #4bcffa;
    padding: 15px;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.styled-list {
    list-style: none;
    margin-top: 20px;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.styled-list li span {
    font-weight: 600;
    color: #2e86de;
}

.styled-list li::before {
    content: "•";
    color: #4bcffa;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.artistry-image {
    margin-top: 20px;
    position: relative;
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.process-step {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 3px solid #4bcffa;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #2e86de;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-step p {
    color: #7f8c8d;
    line-height: 1.6;
}

.philosophy-block {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.philosophy-text {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.philosophy-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
}

.philosophy-text h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #2e86de, #4bcffa);
}

.philosophy-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.philosophy-quote {
    background: linear-gradient(135deg, #2e86de, #4bcffa);
    padding: 40px;
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
}

blockquote::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    opacity: 0.2;
    font-family: serif;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .artistry-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .philosophy-block {
        grid-template-columns: 1fr 1fr;
    }
    
    .artistry-header h2 {
        font-size: 3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .voice-artistry {
        padding: 100px 0;
    }
    
    .artistry-block {
        padding: 40px;
    }
}
.policy-hero {
    padding: 120px 0 60px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.policy-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.policy-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.policy-content {
    padding: 60px 0;
    background-color: var(--light-color);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section ul {
    margin: 15px 0 25px;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section address {
    font-style: normal;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 100px 0 40px;
    }
    
    .policy-hero h1 {
        font-size: 2.2rem;
    }
    
    .policy-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .policy-container {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}
.terms-hero {
    padding: 120px 0 60px;
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.terms-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.terms-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.terms-content {
    padding: 60px 0;
    background-color: var(--light-color);
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.terms-section h3 {
    color: var(--dark-color);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.terms-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.terms-section ul, .terms-section ol {
    margin: 15px 0 25px;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-section address {
    font-style: normal;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 100px 0 40px;
    }
    
    .terms-hero h1 {
        font-size: 2.2rem;
    }
    
    .terms-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .terms-container {
        padding: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
}
body.thanks-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--light);
    margin: 0;
    padding: 0;
}

.thank-you-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px;
    text-align: center;
}

.thank-you-card {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.thank-you-icon {
    color: var(--secondary);
    font-size: 4rem;
    margin-bottom: 20px;
    animation: iconBounce 1.5s infinite alternate;
}

@keyframes iconBounce {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

.thank-you-card h1 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.thank-you-message p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.urgent-contact {
    margin-top: 25px;
    font-weight: 600;
}

.urgent-contact span {
    color: var(--accent);
}

.btn-primary {
    margin-top: 30px;
    padding: 12px 30px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .thank-you-card {
        padding: 30px 20px;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
    
    .thank-you-card h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .thank-you-card {
        padding: 25px 15px;
    }
    
    .thank-you-icon {
        font-size: 2.5rem;
    }
    
    .thank-you-card h1 {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
    }
}
.badge-content
{
    margin-bottom: 30px;
}