/* ===============================================
   Premium Design System - Voice Analytics
   Ultra Modern & Sophisticated
   =============================================== */

/* Advanced Hero Section */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.9)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background:
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    mix-blend-mode: overlay;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto 3rem;
}

/* Premium Buttons */
.btn {
    position: relative;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
}

.btn-white {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #667eea;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

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

.btn-white:hover::before {
    left: 100%;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Stats - Premium */
.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 4rem;
}

.stat-item {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Feature Cards */
.feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(102, 126, 234, 0.3),
        0 0 100px rgba(102, 126, 234, 0.1);
}

.features-section {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 8rem 0;
}

/* Premium Icon Wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(102, 126, 234, 0.3),
        transparent 30%
    );
    animation: spin 4s linear infinite;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(10, 14, 39, 0.9));
    border-radius: 18px;
}

.icon-wrapper svg {
    position: relative;
    z-index: 1;
    color: #a78bfa;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.feature-card:hover .icon-wrapper {
    transform: translateY(-5px) scale(1.1);
}

.feature-card:hover .icon-wrapper svg {
    color: #06b6d4;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.8));
}

/* Section Styling */
.section {
    background: #0a0e27;
    color: white;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #a78bfa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.feature-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Use Cases Premium */
.use-cases-section {
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 8rem 0;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.use-case-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.use-case-card:hover::after {
    opacity: 1;
}

.use-case-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(6, 182, 212, 0.1));
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

.use-case-card h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.use-case-card ul li {
    color: rgba(255, 255, 255, 0.8);
}

.use-case-card ul li::before {
    color: #a78bfa;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    background: white;
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: white;
}

/* Problem/Solution */
.problem-solution {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 8rem 0;
}

.problem-box, .solution-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-box h3, .solution-box h3 {
    color: white;
}

.problem-box p, .solution-box p,
.problem-box li, .solution-box li {
    color: rgba(255, 255, 255, 0.8);
}

/* Showcase Section - White Background */
.showcase-section {
    background-color: #ffffff !important;
    background: #ffffff !important;
    padding: 8rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even) > * {
    direction: ltr;
}

.showcase-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(6, 182, 212, 0.3));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.showcase-item:hover .showcase-image::before {
    opacity: 1;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-item:hover .showcase-image {
    box-shadow:
        0 40px 100px rgba(102, 126, 234, 0.4),
        0 0 60px rgba(102, 126, 234, 0.2);
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1f3a;
    margin-bottom: 1rem;
}

.showcase-content p {
    font-size: 1.125rem;
    color: rgba(26, 31, 58, 0.7);
    line-height: 1.8;
}

.showcase-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.showcase-content ul li {
    padding: 0.5rem 0;
    color: rgba(26, 31, 58, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.showcase-content ul li::before {
    content: "✓";
    color: #667eea;
    font-weight: 900;
    margin-right: 0.75rem;
}

@media (max-width: 968px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-item:nth-child(even) {
        direction: ltr;
    }
}

/* Tech Section */
.technology-section {
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.tech-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(6, 182, 212, 0.05));
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(10px);
}

.tech-item h4 {
    color: white;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Premium Navbar */
.navbar {
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    border-bottom-color: rgba(167, 139, 250, 0.3);
    box-shadow:
        0 10px 40px rgba(102, 126, 234, 0.2),
        0 0 60px rgba(102, 126, 234, 0.1);
}

.logo a {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #a78bfa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    position: relative;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a78bfa, #06b6d4);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    color: #a78bfa;
}

.nav-link.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.nav-link.btn-primary::before {
    display: none;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
    color: white;
}

/* Animated Background Elements */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea, transparent);
    top: -200px;
    left: -200px;
    animation: float1 20s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4, transparent);
    bottom: -100px;
    right: -100px;
    animation: float2 15s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(100px, 50px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-80px, -60px) rotate(-180deg); }
}

/* Latest Blog Posts Section */
.latest-posts-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.latest-posts-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.latest-post-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.latest-post-card:hover {
    background: white;
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: white;
}

.latest-post-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.latest-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.latest-post-card:hover .latest-post-image img {
    transform: scale(1.1);
}

.latest-post-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
}

.latest-post-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.latest-post-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.latest-post-date {
    color: rgba(26, 31, 58, 0.6);
    font-size: 0.875rem;
}

.latest-post-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1f3a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.latest-post-excerpt {
    color: rgba(26, 31, 58, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.latest-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 31, 58, 0.1);
}

.latest-post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #1a1f3a;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-role {
    color: rgba(26, 31, 58, 0.6);
    font-size: 0.75rem;
}

.latest-post-read-time {
    color: rgba(26, 31, 58, 0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.latest-post-read-time::before {
    content: '⏱️';
}

.posts-cta {
    text-align: center;
    margin-top: 3rem;
}

.posts-cta .btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.posts-cta .btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

@media (max-width: 968px) {
    .latest-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .latest-post-image {
        height: 200px;
    }
}

/* CTA Section Premium */
.cta-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background:
        radial-gradient(circle at 30% 50%, rgba(167, 139, 250, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    animation: pulse 8s infinite;
}

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

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group select option,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
}

/* Footer Premium */
.footer {
    background: #0a0e27;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    background: linear-gradient(135deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links a {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(167, 139, 250, 0.3);
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #a78bfa;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Scroll Indicator Premium */
.scroll-indicator span {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.scroll-indicator span::before {
    background: linear-gradient(180deg, #a78bfa, #06b6d4);
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
}
