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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #f5f6ff;
    background: radial-gradient(circle at 20% 20%, rgba(87, 47, 255, 0.35), transparent 45%),
                radial-gradient(circle at 80% 25%, rgba(190, 33, 252, 0.678), transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(255, 69, 246, 0.3), transparent 55%),
                #04010f;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 120px;
}

.quick-links-bar {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 20, 40, 0.6);
    border-bottom: 1px solid rgba(120, 140, 255, 0.3);
    backdrop-filter: blur(20px);
    padding: 14px clamp(24px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.quick-links-slot {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

.quick-links-slot--left {
    justify-content: flex-start;
}

.quick-links-slot--right {
    justify-content: flex-end;
}

.quick-links-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 32px);
    flex-wrap: nowrap;
}

.quick-links-bar.scrolled {
    top: 0;
    background: rgba(15, 20, 40, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

#navbar-placeholder {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar-placeholder.hidden {
    transform: translateY(-100%);
}

     .quick-links-label {
         font-size: 0.85rem;
         font-weight: 600;
         color: rgba(180, 200, 255, 0.7);
         text-transform: uppercase;
         letter-spacing: 0.1em;
     }

     .quick-link {
         font-size: 0.9rem;
         color: rgba(220, 230, 255, 0.8);
         text-decoration: none;
         padding: 6px 16px;
         border-radius: 999px;
         border: 1px solid rgba(120, 140, 255, 0.2);
         transition: all 0.3s ease;
         white-space: nowrap;
     }

     .quick-link:hover {
         background: rgba(139, 92, 246, 0.2);
         border-color: rgba(139, 92, 246, 0.5);
         color: #fff;
         transform: translateY(-2px);
     }

     @media (max-width: 768px) {
         body {
             padding-top: 130px;
         }
         
         .quick-links-bar {
             flex-direction: column;
             align-items: center;
             gap: 8px;
         }

         .quick-links-slot {
             width: 100%;
             flex: 0 0 auto;
             justify-content: center;
         }

         .quick-links-slot--right {
             display: none;
         }

         .quick-links-center {
             flex-wrap: wrap;
             gap: 8px;
         }
         
         .quick-links-label {
             width: 100%;
             margin-bottom: 4px;
         }
         
         .quick-link {
             font-size: 0.8rem;
             padding: 5px 12px;
         }
     }

/* Animated Background Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(180, 200, 255, 0.6);
    box-shadow: 0 0 10px rgba(180, 200, 255, 0.8);
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(var(--drift)) scale(1);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 10vh, 120px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(120, 140, 255, 0.1);
    border: 1px solid rgba(180, 200, 255, 0.2);
    color: rgba(220, 230, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-bottom: clamp(24px, 3vh, 40px);
    animation: badge-glow 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate-badge 4s linear infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(120, 140, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(120, 140, 255, 0.5);
    }
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vh, 16px);
    margin-bottom: clamp(24px, 3vh, 32px);
    overflow: visible;
}

.title-line {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding-bottom: 0.1em;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
    overflow: visible;
}

.title-line:first-child {
    animation-delay: 0.2s;
}

.title-line:last-child {
    animation-delay: 0.4s;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: slide-up 0.8s ease-out 0.4s forwards, gradient-shift 3s ease infinite;
    padding-bottom: 0.15em;
    display: inline-block;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: rgba(220, 230, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.6s forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

/* Floating Visual */
.floating-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(280px, 30vw, 400px);
    height: clamp(320px, 35vw, 450px);
    pointer-events: none;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.8s forwards;
}

.visual-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-orb 6s ease-in-out infinite;
}

.orb-1 {
    width: 150px;
    height: 150px;
    background: rgba(139, 92, 246, 0.3);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    background: rgba(59, 130, 246, 0.3);
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: rgba(6, 182, 212, 0.3);
    top: 50%;
    left: 50%;
    animation-delay: -4s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(20px, -20px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.code-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(10, 15, 30, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(120, 140, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float-code 4s ease-in-out infinite;
}

@keyframes float-code {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

.window-header {
    padding: 12px;
    border-bottom: 1px solid rgba(120, 140, 255, 0.1);
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(180, 200, 255, 0.4);
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.code-line {
    margin: 6px 0;
    opacity: 0;
    animation: type-in 0.5s ease-out forwards;
}

.code-line:nth-child(1) { animation-delay: 1s; }
.code-line:nth-child(2) { animation-delay: 1.3s; }
.code-line:nth-child(3) { animation-delay: 1.6s; }
.code-line:nth-child(4) { animation-delay: 1.9s; }

@keyframes type-in {
    to {
        opacity: 1;
    }
}

.indent {
    padding-left: 20px;
}

.code-tag {
    color: #8b5cf6;
}

.code-attr {
    color: #3b82f6;
}

.code-string {
    color: #06b6d4;
}

/* Showcase Slider Section */
.showcase-slider-section {
    min-height: 90vh;
    padding: clamp(60px, 8vh, 100px) 0 clamp(40px, 8vh, 80px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Showcase Header with Animated Title */
.showcase-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vh, 80px);
    position: relative;
}

.showcase-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    display: flex;
    gap: clamp(12px, 2vw, 24px);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.title-word {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #8b5cf6 0%,
        #3b82f6 20%,
        #ffffff 40%,
        #06b6d4 60%,
        #8b5cf6 80%,
        #3b82f6 100%
    );
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shine 3s ease-in-out infinite, word-float 3s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

.title-word:nth-child(1) {
    animation-delay: 0s, 0s;
}

.title-word:nth-child(2) {
    animation-delay: 0.3s, 0.5s;
}

.title-word:nth-child(3) {
    animation-delay: 0.6s, 1s;
}

@keyframes gradient-shine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes word-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    position: relative;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%) rotateY(20deg) scale(0.9);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) rotateY(0deg) scale(1);
}

.slide.exit-left {
    transform: translateX(-100%) rotateY(-20deg) scale(0.9);
    opacity: 0;
}

.slide.exit-right {
    transform: translateX(100%) rotateY(20deg) scale(0.9);
    opacity: 0;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    height: 100%;
    align-items: center;
}

.slide-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fade-slide-in 0.8s ease-out 0.3s backwards;
}

.slide.active .slide-left {
    animation: fade-slide-in 0.8s ease-out 0.3s backwards;
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -10px;
}

.slide-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: rgba(220, 230, 255, 0.8);
    max-width: 550px;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(15, 20, 40, 0.4);
    border: 1px solid rgba(120, 140, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.slide-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.slide-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    animation: float-visual 6s ease-in-out infinite;
}

@keyframes float-visual {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Website Visual */
.browser-mockup {
    width: 100%;
    height: 400px;
    background: rgba(10, 15, 30, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(120, 140, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
}

.browser-chrome {
    padding: 12px;
    background: rgba(20, 25, 45, 0.9);
    border-bottom: 1px solid rgba(120, 140, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chrome-dots {
    display: flex;
    gap: 6px;
}

.chrome-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(180, 200, 255, 0.4);
}

.chrome-bar {
    flex: 1;
    height: 24px;
    background: rgba(120, 140, 255, 0.1);
    border-radius: 6px;
}

.browser-content {
    padding: 30px;
}

.content-header {
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 8px;
    margin-bottom: 24px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    }
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.grid-item {
    height: 100px;
    background: rgba(120, 140, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(120, 140, 255, 0.25);
    animation: fade-in-up 0.6s ease-out backwards;
}

.grid-item:nth-child(1) { animation-delay: 0.5s; }
.grid-item:nth-child(2) { animation-delay: 0.6s; }
.grid-item:nth-child(3) { animation-delay: 0.7s; }

/* App Visual */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: rgba(10, 15, 30, 0.9);
    border-radius: 40px;
    border: 12px solid rgba(20, 25, 45, 0.9);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(139, 92, 246, 0.3),
                inset 0 0 0 2px rgba(120, 140, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: rgba(10, 15, 30, 0.9);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.9), rgba(10, 15, 30, 0.9));
    overflow: hidden;
}

.app-header {
    padding: 36px 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(120, 140, 255, 0.1);
}

.app-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(220, 230, 255, 0.9);
}

.app-icons {
    width: 60px;
    height: 12px;
    background: rgba(180, 200, 255, 0.3);
    border-radius: 2px;
}

.app-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-card {
    height: 140px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 16px;
    border: 1px solid rgba(120, 140, 255, 0.3);
    animation: fade-in-up 0.6s ease-out backwards;
}

.app-card:nth-child(1) { animation-delay: 0.5s; }
.app-card:nth-child(2) { animation-delay: 0.6s; }

.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    margin-top: auto;
    border-top: 1px solid rgba(120, 140, 255, 0.1);
}

.app-nav span {
    width: 40px;
    height: 4px;
    background: rgba(180, 200, 255, 0.3);
    border-radius: 2px;
}

.app-nav span:nth-child(2) {
    background: rgba(139, 92, 246, 0.6);
}

/* AI Visual */
.ai-interface {
    width: 100%;
    height: 450px;
    background: rgba(10, 15, 30, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(120, 140, 255, 0.3);
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(139, 92, 246, 0.2);
}

.ai-sidebar {
    width: 80px;
    background: rgba(20, 25, 45, 0.9);
    border-right: 1px solid rgba(120, 140, 255, 0.2);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-item {
    height: 40px;
    background: rgba(120, 140, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(120, 140, 255, 0.25);
    animation: fade-in 0.6s ease-out backwards;
}

.sidebar-item:nth-child(1) { animation-delay: 0.5s; }
.sidebar-item:nth-child(2) { animation-delay: 0.6s; }
.sidebar-item:nth-child(3) { animation-delay: 0.7s; }

.ai-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.ai-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    height: 60px;
    border-radius: 12px;
    animation: fade-in-up 0.6s ease-out backwards;
}

.chat-bubble.left {
    background: rgba(120, 140, 255, 0.15);
    width: 75%;
    border: 1px solid rgba(120, 140, 255, 0.25);
}

.chat-bubble.right {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    width: 70%;
    margin-left: auto;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.chat-bubble:nth-child(1) { animation-delay: 0.5s; }
.chat-bubble:nth-child(2) { animation-delay: 0.6s; }
.chat-bubble:nth-child(3) { animation-delay: 0.7s; }

.ai-input {
    height: 48px;
    background: rgba(20, 25, 45, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(120, 140, 255, 0.3);
    margin-top: 16px;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
}

.float-element.el-1 {
    width: 120px;
    height: 120px;
    background: rgba(139, 92, 246, 0.4);
    top: 10%;
    right: 10%;
    animation: float-orb 8s ease-in-out infinite;
}

.float-element.el-2 {
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.4);
    bottom: 15%;
    left: 5%;
    animation: float-orb 6s ease-in-out infinite -2s;
}

.float-element.el-3 {
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.4);
    top: 50%;
    left: 50%;
    animation: float-orb 7s ease-in-out infinite -4s;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 20, 40, 0.8);
    border: 1px solid rgba(120, 140, 255, 0.3);
    color: rgba(220, 230, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.arrow-prev {
    left: clamp(20px, 3vw, 40px);
}

.arrow-next {
    right: clamp(20px, 3vw, 40px);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(120, 140, 255, 0.3);
    border: 1px solid rgba(120, 140, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(139, 92, 246, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6));
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
    .showcase-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }
    
    .slider-container {
        height: auto;
        min-height: 600px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-left {
        text-align: center;
        align-items: center;
    }
    
    .slide-description {
        max-width: 100%;
    }
    
    .slide-visual {
        max-width: 400px;
    }
    
    .browser-mockup {
        height: 320px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .ai-interface {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .showcase-slider-section {
        min-height: auto;
    }
    
    .showcase-header {
        margin-bottom: 40px;
    }
    
    .showcase-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        gap: 8px;
    }
    
    .slider-container {
        height: auto;
        min-height: 700px;
    }
    
    .slide {
        transform: translateY(50px) scale(0.95);
    }
    
    .slide.active {
        transform: translateY(0) scale(1);
    }
    
    .slide.exit-left,
    .slide.exit-right {
        transform: translateY(-50px) scale(0.95);
    }
    
    .slider-arrow {
        width: 48px;
        height: 48px;
    }
    
    .arrow-prev {
        left: 10px;
    }
    
    .arrow-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        gap: 6px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-number {
        font-size: 2.5rem;
    }
    
    .slide-visual {
        max-width: 280px;
    }
    
    .browser-mockup {
        height: 260px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        border-width: 8px;
    }
    
    .ai-interface {
        height: 320px;
    }
    
    .ai-sidebar {
        width: 60px;
    }
}

/* Services Section */
.services-section {
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: clamp(16px, 2vh, 24px);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(220, 230, 255, 0.7);
    max-width: 600px;
    margin: 0 auto clamp(40px, 6vh, 60px);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(15, 20, 40, 0.5);
    border: 1px solid rgba(120, 140, 255, 0.15);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #8b5cf6;
}

.service-card h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    line-height: 1.6;
    color: rgba(220, 230, 255, 0.7);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

/* Theme Showcase Section */
.showcase-section {
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.theme-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: clamp(40px, 6vh, 60px);
    flex-wrap: wrap;
}

.theme-btn {
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(120, 140, 255, 0.2);
    background: rgba(15, 20, 40, 0.5);
    color: rgba(220, 230, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.theme-btn:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.theme-btn.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-color: rgba(139, 92, 246, 0.5);
    color: #fff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.theme-preview {
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1500px;
}

.preview-container {
    position: relative;
    min-height: 500px;
}

.theme-mockup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.theme-mockup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mockup-browser {
    background: rgba(10, 15, 30, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(120, 140, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    margin-bottom: 24px;
}

.browser-bar {
    padding: 12px;
    background: rgba(20, 25, 45, 0.8);
    border-bottom: 1px solid rgba(120, 140, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(180, 200, 255, 0.3);
}

.mockup-content {
    padding: 30px;
    min-height: 350px;
}

/* Add this to your websites.css file after the .theme-description section */

/* Fix preview container height to prevent overlap */
.preview-container {
    position: relative;
    min-height: 850px !important; /* Increased from 500px to accommodate iframe */
}

/* Add extra spacing to showcase section */
.showcase-section {
    margin-bottom: 80px;
}

/* Iframe Container Styling */
.iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(120, 140, 255, 0.3);
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(20px);
}

.theme-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
    background: white;
}

/* Responsive iframe sizing */
@media (max-width: 1024px) {
    .theme-iframe {
        height: 550px;
    }
    
    .iframe-container {
        max-width: 95%;
    }
    
    .preview-container {
        min-height: 700px !important;
    }
}

@media (max-width: 768px) {
    .theme-iframe {
        height: 450px;
    }
    
    .iframe-container {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .preview-container {
        min-height: 600px !important;
    }
    
    .showcase-section {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .theme-iframe {
        height: 350px;
    }
    
    .preview-container {
        min-height: 500px !important;
    }
}

/* Creative Theme Mockup */
.creative-theme .mock-nav {
    height: 50px;
    background: linear-gradient(90deg, rgba(255, 69, 112, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 12px;
    margin-bottom: 30px;
}

.creative-hero {
    position: relative;
    min-height: 180px;
    margin-bottom: 30px;
}

.creative-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 69, 112, 0.4), transparent);
    top: 20px;
    right: 20px;
}

.creative-theme .mock-text-block {
    background: linear-gradient(135deg, rgba(255, 69, 112, 0.2), rgba(139, 92, 246, 0.2));
    width: 60%;
}

.creative-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.creative-theme .mock-card {
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 69, 112, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 16px;
}

/* Minimal Theme Mockup */
.minimal-theme {
    background: rgba(250, 250, 252, 0.05);
}

.minimal-nav {
    height: 40px;
    background: transparent;
    border-bottom: 1px solid rgba(220, 230, 255, 0.1);
    margin-bottom: 40px;
}

.minimal-hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.minimal-theme .mock-text-block {
    background: rgba(220, 230, 255, 0.1);
    width: 50%;
}

.mock-text-line.short {
    width: 30%;
}

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

.minimal-block {
    height: 100px;
    border: 1px solid rgba(220, 230, 255, 0.15);
    border-radius: 4px;
}

/* Tech Theme Mockup */
.tech-theme {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
}

.tech-theme .mock-nav {
    height: 50px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 8px;
    margin-bottom: 30px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.tech-block {
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 8px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tech-terminal {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terminal-line {
    height: 10px;
    background: rgba(6, 182, 212, 0.4);
    border-radius: 4px;
}

.terminal-line:first-child {
    width: 70%;
}

.terminal-line:last-child {
    width: 50%;
}

.theme-description {
    text-align: center;
}

.theme-description h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 12px;
    font-weight: 600;
}

.theme-description p {
    line-height: 1.6;
    color: rgba(220, 230, 255, 0.7);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(32px, 5vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(15, 20, 40, 0.6);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 48px);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

/* Animated gradient border */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.8),
        rgba(59, 130, 246, 0.8),
        rgba(6, 182, 212, 0.8),
        rgba(139, 92, 246, 0.8)
    );
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-flow 4s linear infinite;
    opacity: 0.6;
}

@keyframes border-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Glowing orb effect */
.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    transition: all 0.4s ease;
    filter: blur(50px);
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4),
                0 0 80px rgba(59, 130, 246, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
    animation-duration: 2s;
}

.testimonial-card:hover .card-glow {
    transform: scale(1.5);
    opacity: 0.8;
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    line-height: 1.8;
    color: rgba(220, 230, 255, 0.9);
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    margin-bottom: 32px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    position: relative;
}

.author-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar::after {
    opacity: 1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
    color: #fff;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(220, 230, 255, 0.6);
}

/* Website Link Styling */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: rgba(220, 230, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    align-self: flex-start;
}

.card-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-link span,
.card-link svg {
    position: relative;
    z-index: 1;
}

.card-link:hover {
    transform: translateX(4px);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

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

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translate(2px, -2px);
}

/* CTA Section */
.cta-section {
    padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(120, 140, 255, 0.2);
    border-radius: 24px;
    padding: clamp(48px, 8vw, 80px);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(220, 230, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6));
    color: #fff;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(139, 92, 246, 0.4);
}

.cta-secondary {
    background: transparent;
    color: rgba(220, 230, 255, 0.9);
    border: 1px solid rgba(120, 140, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(120, 140, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-visual {
        opacity: 0.5;
        width: 250px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .floating-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mock-cards {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .theme-toggle {
        gap: 8px;
    }
    
    .theme-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}