/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Animations */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.15;
    color: white;
    font-size: 2rem;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.floating-element i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Individual floating element positions and animations */
.chart-1 {
    top: 10%;
    left: 10%;
    animation: floatUpDown 15s infinite, rotateClockwise 25s infinite;
    animation-delay: 0s;
}

.chart-2 {
    top: 20%;
    right: 15%;
    animation: floatLeftRight 18s infinite, pulse 8s infinite;
    animation-delay: 2s;
}

.chart-3 {
    bottom: 30%;
    left: 8%;
    animation: floatDiagonal 22s infinite, scale 12s infinite;
    animation-delay: 4s;
}

.check-1 {
    top: 60%;
    right: 20%;
    animation: floatUpDown 16s infinite, fadeInOut 6s infinite;
    animation-delay: 1s;
    font-size: 1.5rem;
}

.check-2 {
    top: 35%;
    left: 25%;
    animation: floatLeftRight 20s infinite, bounce 4s infinite;
    animation-delay: 3s;
    font-size: 1.8rem;
}

.data-1 {
    bottom: 20%;
    right: 10%;
    animation: floatUpDown 19s infinite, rotateCounterClockwise 30s infinite;
    animation-delay: 5s;
}

.form-1 {
    top: 15%;
    left: 60%;
    animation: floatDiagonal 17s infinite, pulse 10s infinite;
    animation-delay: 6s;
    font-size: 1.6rem;
}

.analytics-1 {
    bottom: 40%;
    right: 35%;
    animation: floatLeftRight 21s infinite, scale 15s infinite;
    animation-delay: 7s;
}

.target-1 {
    top: 45%;
    left: 5%;
    animation: floatUpDown 14s infinite, rotateClockwise 20s infinite;
    animation-delay: 8s;
    font-size: 1.4rem;
}

.graph-1 {
    bottom: 15%;
    left: 40%;
    animation: floatDiagonal 23s infinite, fadeInOut 9s infinite;
    animation-delay: 9s;
}

.report-1 {
    top: 25%;
    right: 5%;
    animation: floatUpDown 18s infinite, pulse 7s infinite;
    animation-delay: 10s;
    font-size: 1.3rem;
}

.users-1 {
    bottom: 50%;
    left: 70%;
    animation: floatLeftRight 16s infinite, bounce 5s infinite;
    animation-delay: 11s;
    font-size: 1.7rem;
}

/* Additional Chart Elements */
.chart-4 {
    top: 70%;
    right: 8%;
    animation: floatUpDown 17s infinite, pulse 9s infinite;
    animation-delay: 12s;
    font-size: 1.8rem;
}

.chart-5 {
    top: 5%;
    left: 40%;
    animation: floatDiagonal 19s infinite, rotateClockwise 28s infinite;
    animation-delay: 13s;
    font-size: 1.4rem;
}

/* Additional Assessment Elements */
.check-3 {
    bottom: 10%;
    left: 25%;
    animation: floatLeftRight 15s infinite, fadeInOut 7s infinite;
    animation-delay: 14s;
    font-size: 1.6rem;
}

.check-4 {
    top: 80%;
    right: 45%;
    animation: floatUpDown 21s infinite, scale 11s infinite;
    animation-delay: 15s;
    font-size: 1.3rem;
}

/* Additional Data Elements */
.data-2 {
    top: 30%;
    right: 25%;
    animation: floatDiagonal 18s infinite, rotateCounterClockwise 35s infinite;
    animation-delay: 16s;
    font-size: 1.5rem;
}

.analytics-2 {
    bottom: 60%;
    left: 15%;
    animation: floatUpDown 20s infinite, pulse 6s infinite;
    animation-delay: 17s;
    font-size: 1.9rem;
}

/* Additional Form Elements */
.form-2 {
    top: 50%;
    right: 12%;
    animation: floatLeftRight 16s infinite, bounce 8s infinite;
    animation-delay: 18s;
    font-size: 1.2rem;
}

.form-3 {
    bottom: 25%;
    left: 55%;
    animation: floatDiagonal 22s infinite, fadeInOut 10s infinite;
    animation-delay: 19s;
    font-size: 1.7rem;
}

.report-2 {
    top: 12%;
    right: 30%;
    animation: floatUpDown 14s infinite, rotateClockwise 24s infinite;
    animation-delay: 20s;
    font-size: 1.1rem;
}

/* Target and Goals */
.target-2 {
    bottom: 35%;
    right: 50%;
    animation: floatLeftRight 19s infinite, scale 13s infinite;
    animation-delay: 21s;
    font-size: 1.6rem;
}

.goal-1 {
    top: 40%;
    left: 80%;
    animation: floatUpDown 17s infinite, pulse 5s infinite;
    animation-delay: 22s;
    font-size: 1.8rem;
}

/* Network Elements */
.graph-2 {
    bottom: 45%;
    right: 18%;
    animation: floatDiagonal 20s infinite, rotateCounterClockwise 32s infinite;
    animation-delay: 23s;
    font-size: 1.4rem;
}

.network-1 {
    top: 55%;
    left: 35%;
    animation: floatLeftRight 18s infinite, fadeInOut 8s infinite;
    animation-delay: 24s;
    font-size: 1.5rem;
}

/* Additional Users */
.users-2 {
    top: 25%;
    left: 75%;
    animation: floatUpDown 15s infinite, bounce 6s infinite;
    animation-delay: 25s;
    font-size: 1.3rem;
}

.users-3 {
    bottom: 65%;
    right: 5%;
    animation: floatDiagonal 21s infinite, scale 14s infinite;
    animation-delay: 26s;
    font-size: 1.6rem;
}

/* Tools and Settings */
.tools-1 {
    top: 65%;
    left: 45%;
    animation: floatLeftRight 16s infinite, rotateClockwise 26s infinite;
    animation-delay: 27s;
    font-size: 1.7rem;
}

.tools-2 {
    bottom: 55%;
    right: 40%;
    animation: floatUpDown 19s infinite, pulse 9s infinite;
    animation-delay: 28s;
    font-size: 1.2rem;
}

.settings-1 {
    top: 18%;
    left: 50%;
    animation: floatDiagonal 17s infinite, fadeInOut 11s infinite;
    animation-delay: 29s;
    font-size: 1.4rem;
}

/* Performance Metrics */
.metric-1 {
    bottom: 18%;
    left: 60%;
    animation: floatLeftRight 20s infinite, rotateCounterClockwise 29s infinite;
    animation-delay: 30s;
    font-size: 1.8rem;
}

.metric-2 {
    top: 75%;
    right: 25%;
    animation: floatUpDown 15s infinite, scale 12s infinite;
    animation-delay: 31s;
    font-size: 1.1rem;
}

.performance-1 {
    top: 8%;
    left: 20%;
    animation: floatDiagonal 18s infinite, bounce 7s infinite;
    animation-delay: 32s;
    font-size: 1.5rem;
}

/* Time Elements */
.time-1 {
    bottom: 70%;
    right: 60%;
    animation: floatLeftRight 16s infinite, pulse 8s infinite;
    animation-delay: 33s;
    font-size: 1.3rem;
}

.time-2 {
    top: 35%;
    right: 70%;
    animation: floatUpDown 21s infinite, fadeInOut 6s infinite;
    animation-delay: 34s;
    font-size: 1.6rem;
}

/* Security and Quality */
.security-1 {
    bottom: 8%;
    right: 55%;
    animation: floatDiagonal 19s infinite, rotateClockwise 27s infinite;
    animation-delay: 35s;
    font-size: 1.7rem;
}

.quality-1 {
    top: 60%;
    left: 10%;
    animation: floatLeftRight 17s infinite, scale 10s infinite;
    animation-delay: 36s;
    font-size: 1.4rem;
}

/* Stars */
.star-1 {
    top: 22%;
    right: 80%;
    animation: floatUpDown 14s infinite, pulse 4s infinite;
    animation-delay: 37s;
    font-size: 1.0rem;
}

.star-2 {
    bottom: 30%;
    left: 85%;
    animation: floatLeftRight 16s infinite, fadeInOut 5s infinite;
    animation-delay: 38s;
    font-size: 0.9rem;
}

.star-3 {
    top: 85%;
    left: 5%;
    animation: floatDiagonal 18s infinite, bounce 3s infinite;
    animation-delay: 39s;
    font-size: 1.1rem;
}

/* Animation keyframes */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-30px); }
    50% { transform: translateY(-15px); }
    75% { transform: translateY(-40px); }
}

@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(25px); }
    50% { transform: translateX(-15px); }
    75% { transform: translateX(35px); }
}

@keyframes floatDiagonal {
    0%, 100% { transform: translate(0px, 0px); }
    25% { transform: translate(20px, -25px); }
    50% { transform: translate(-15px, -10px); }
    75% { transform: translate(30px, -35px); }
}

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

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

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

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

@keyframes fadeInOut {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.25; }
}

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

/* Additional complex animations */
@keyframes spiralFloat {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(0px, -40px) rotate(180deg); }
    75% { transform: translate(-30px, -20px) rotate(270deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

@keyframes wave {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(0px) translateX(20px); }
    75% { transform: translateY(15px) translateX(10px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.05; transform: scale(0.8); }
    25% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.2); }
    75% { opacity: 0.15; transform: scale(1); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* Apply some new animation combinations to existing elements */
.chart-1 {
    top: 10%;
    left: 10%;
    animation: spiralFloat 20s infinite, twinkle 8s infinite;
    animation-delay: 0s;
}

.star-1, .star-2, .star-3 {
    animation: twinkle 3s infinite, floatUpDown 12s infinite;
}

.goal-1 {
    top: 40%;
    left: 80%;
    animation: orbit 25s infinite, pulse 5s infinite;
    animation-delay: 22s;
    font-size: 1.8rem;
}

.network-1 {
    top: 55%;
    left: 35%;
    animation: wave 15s infinite, fadeInOut 8s infinite;
    animation-delay: 24s;
    font-size: 1.5rem;
}

/* Additional Layer 1 - More Assessment Tools */
.survey-1 {
    top: 15%;
    right: 85%;
    animation: floatUpDown 16s infinite, pulse 7s infinite;
    animation-delay: 40s;
    font-size: 1.3rem;
}

.survey-2 {
    bottom: 25%;
    left: 90%;
    animation: floatLeftRight 19s infinite, twinkle 9s infinite;
    animation-delay: 41s;
    font-size: 1.5rem;
}

.grade-1 {
    top: 45%;
    right: 90%;
    animation: floatDiagonal 21s infinite, rotateClockwise 30s infinite;
    animation-delay: 42s;
    font-size: 1.7rem;
}

.grade-2 {
    bottom: 55%;
    left: 3%;
    animation: spiralFloat 18s infinite, fadeInOut 6s infinite;
    animation-delay: 43s;
    font-size: 1.2rem;
}

.checklist-1 {
    top: 85%;
    right: 75%;
    animation: floatUpDown 15s infinite, bounce 5s infinite;
    animation-delay: 44s;
    font-size: 1.4rem;
}

.checklist-2 {
    top: 2%;
    left: 85%;
    animation: wave 17s infinite, scale 11s infinite;
    animation-delay: 45s;
    font-size: 1.1rem;
}

/* Additional Layer 2 - Business Intelligence */
.kpi-1 {
    bottom: 40%;
    right: 85%;
    animation: floatLeftRight 20s infinite, pulse 8s infinite;
    animation-delay: 46s;
    font-size: 1.6rem;
}

.kpi-2 {
    top: 30%;
    left: 90%;
    animation: floatDiagonal 16s infinite, rotateCounterClockwise 25s infinite;
    animation-delay: 47s;
    font-size: 1.8rem;
}

.trend-1 {
    bottom: 75%;
    right: 3%;
    animation: floatUpDown 18s infinite, twinkle 4s infinite;
    animation-delay: 48s;
    font-size: 1.3rem;
}

.trend-2 {
    top: 70%;
    left: 85%;
    animation: spiralFloat 22s infinite, fadeInOut 10s infinite;
    animation-delay: 49s;
    font-size: 1.5rem;
}

.insight-1 {
    bottom: 5%;
    right: 90%;
    animation: orbit 20s infinite, pulse 6s infinite;
    animation-delay: 50s;
    font-size: 1.4rem;
}

.insight-2 {
    top: 90%;
    left: 75%;
    animation: floatLeftRight 14s infinite, bounce 7s infinite;
    animation-delay: 51s;
    font-size: 1.7rem;
}

/* Additional Layer 3 - Data Processing */
.process-1 {
    top: 25%;
    right: 95%;
    animation: floatUpDown 19s infinite, rotateClockwise 28s infinite;
    animation-delay: 52s;
    font-size: 1.2rem;
}

.process-2 {
    bottom: 60%;
    left: 95%;
    animation: wave 15s infinite, scale 9s infinite;
    animation-delay: 53s;
    font-size: 1.6rem;
}

.algorithm-1 {
    top: 55%;
    right: 2%;
    animation: floatDiagonal 17s infinite, twinkle 5s infinite;
    animation-delay: 54s;
    font-size: 1.1rem;
}

.algorithm-2 {
    bottom: 15%;
    left: 95%;
    animation: spiralFloat 21s infinite, pulse 8s infinite;
    animation-delay: 55s;
    font-size: 1.8rem;
}

.data-flow-1 {
    top: 75%;
    right: 95%;
    animation: floatLeftRight 16s infinite, fadeInOut 7s infinite;
    animation-delay: 56s;
    font-size: 1.3rem;
}

.data-flow-2 {
    bottom: 85%;
    left: 2%;
    animation: orbit 24s infinite, bounce 4s infinite;
    animation-delay: 57s;
    font-size: 1.5rem;
}

/* Additional Layer 4 - Collaboration */
.team-1 {
    top: 95%;
    right: 50%;
    animation: floatUpDown 18s infinite, rotateCounterClockwise 32s infinite;
    animation-delay: 58s;
    font-size: 1.4rem;
}

.team-2 {
    bottom: 95%;
    left: 50%;
    animation: wave 20s infinite, scale 12s infinite;
    animation-delay: 59s;
    font-size: 1.7rem;
}

.communication-1 {
    top: 5%;
    right: 95%;
    animation: floatDiagonal 15s infinite, pulse 6s infinite;
    animation-delay: 60s;
    font-size: 1.2rem;
}

.communication-2 {
    bottom: 2%;
    left: 85%;
    animation: spiralFloat 19s infinite, twinkle 8s infinite;
    animation-delay: 61s;
    font-size: 1.6rem;
}

.meeting-1 {
    top: 85%;
    right: 2%;
    animation: floatLeftRight 17s infinite, fadeInOut 9s infinite;
    animation-delay: 62s;
    font-size: 1.1rem;
}

.meeting-2 {
    bottom: 12%;
    left: 2%;
    animation: orbit 23s infinite, bounce 5s infinite;
    animation-delay: 63s;
    font-size: 1.8rem;
}

/* Additional Layer 5 - Technology */
.cloud-1 {
    top: 42%;
    right: 98%;
    animation: floatUpDown 16s infinite, rotateClockwise 26s infinite;
    animation-delay: 64s;
    font-size: 1.5rem;
}

.cloud-2 {
    bottom: 38%;
    left: 98%;
    animation: wave 18s infinite, pulse 7s infinite;
    animation-delay: 65s;
    font-size: 1.3rem;
}

.api-1 {
    top: 78%;
    right: 85%;
    animation: floatDiagonal 20s infinite, scale 10s infinite;
    animation-delay: 66s;
    font-size: 1.4rem;
}

.api-2 {
    bottom: 78%;
    left: 85%;
    animation: spiralFloat 14s infinite, twinkle 6s infinite;
    animation-delay: 67s;
    font-size: 1.7rem;
}

.mobile-1 {
    top: 32%;
    right: 3%;
    animation: floatLeftRight 19s infinite, fadeInOut 8s infinite;
    animation-delay: 68s;
    font-size: 1.2rem;
}

.mobile-2 {
    bottom: 32%;
    left: 3%;
    animation: orbit 25s infinite, bounce 4s infinite;
    animation-delay: 69s;
    font-size: 1.6rem;
}

/* Additional Layer 6 - Success Metrics */
.success-1 {
    top: 68%;
    right: 92%;
    animation: floatUpDown 17s infinite, pulse 9s infinite;
    animation-delay: 70s;
    font-size: 1.8rem;
}

.success-2 {
    bottom: 68%;
    left: 92%;
    animation: wave 21s infinite, rotateCounterClockwise 29s infinite;
    animation-delay: 71s;
    font-size: 1.1rem;
}

.growth-1 {
    top: 88%;
    right: 40%;
    animation: floatDiagonal 15s infinite, scale 11s infinite;
    animation-delay: 72s;
    font-size: 1.5rem;
}

.growth-2 {
    bottom: 88%;
    left: 40%;
    animation: spiralFloat 18s infinite, twinkle 5s infinite;
    animation-delay: 73s;
    font-size: 1.3rem;
}

.target-success-1 {
    top: 48%;
    right: 88%;
    animation: floatLeftRight 16s infinite, fadeInOut 7s infinite;
    animation-delay: 74s;
    font-size: 1.6rem;
}

.rocket-1 {
    bottom: 48%;
    left: 88%;
    animation: orbit 22s infinite, bounce 6s infinite;
    animation-delay: 75s;
    font-size: 1.9rem;
}

/* Additional Layer 7 - Innovation */
.innovation-1 {
    top: 58%;
    right: 78%;
    animation: floatUpDown 19s infinite, rotateClockwise 31s infinite;
    animation-delay: 76s;
    font-size: 1.4rem;
}

.innovation-2 {
    bottom: 58%;
    left: 78%;
    animation: wave 14s infinite, pulse 8s infinite;
    animation-delay: 77s;
    font-size: 1.2rem;
}

.research-1 {
    top: 38%;
    right: 75%;
    animation: floatDiagonal 20s infinite, scale 13s infinite;
    animation-delay: 78s;
    font-size: 1.7rem;
}

.research-2 {
    bottom: 22%;
    left: 75%;
    animation: spiralFloat 16s infinite, twinkle 4s infinite;
    animation-delay: 79s;
    font-size: 1.3rem;
}

.idea-1 {
    top: 28%;
    right: 68%;
    animation: floatLeftRight 18s infinite, fadeInOut 10s infinite;
    animation-delay: 80s;
    font-size: 1.5rem;
}

.puzzle-1 {
    bottom: 42%;
    left: 68%;
    animation: orbit 26s infinite, bounce 7s infinite;
    animation-delay: 81s;
    font-size: 1.1rem;
}

/* Additional Layer 8 - Global & Scale */
.global-1 {
    top: 52%;
    right: 65%;
    animation: floatUpDown 15s infinite, rotateCounterClockwise 27s infinite;
    animation-delay: 82s;
    font-size: 1.8rem;
}

.global-2 {
    bottom: 52%;
    left: 65%;
    animation: wave 17s infinite, pulse 6s infinite;
    animation-delay: 83s;
    font-size: 1.4rem;
}

.scale-1 {
    top: 72%;
    right: 62%;
    animation: floatDiagonal 21s infinite, scale 14s infinite;
    animation-delay: 84s;
    font-size: 1.6rem;
}

.scale-2 {
    bottom: 72%;
    left: 62%;
    animation: spiralFloat 19s infinite, twinkle 9s infinite;
    animation-delay: 85s;
    font-size: 1.2rem;
}

.network-global-1 {
    top: 62%;
    right: 58%;
    animation: floatLeftRight 14s infinite, fadeInOut 5s infinite;
    animation-delay: 86s;
    font-size: 1.7rem;
}

.infinity-1 {
    bottom: 62%;
    left: 58%;
    animation: orbit 28s infinite, bounce 8s infinite;
    animation-delay: 87s;
    font-size: 1.5rem;
}

/* Additional Layer 9 - Learning & Development */
.learning-1 {
    top: 15%;
    left: 2%;
    animation: floatUpDown 16s infinite, pulse 7s infinite;
    animation-delay: 88s;
    font-size: 1.4rem;
}

.learning-2 {
    bottom: 35%;
    right: 2%;
    animation: wave 18s infinite, rotateClockwise 26s infinite;
    animation-delay: 89s;
    font-size: 1.6rem;
}

.skill-1 {
    top: 65%;
    left: 2%;
    animation: floatDiagonal 20s infinite, twinkle 5s infinite;
    animation-delay: 90s;
    font-size: 1.2rem;
}

.skill-2 {
    bottom: 85%;
    right: 2%;
    animation: spiralFloat 17s infinite, fadeInOut 9s infinite;
    animation-delay: 91s;
    font-size: 1.8rem;
}

.training-1 {
    top: 35%;
    left: 1%;
    animation: floatLeftRight 19s infinite, scale 12s infinite;
    animation-delay: 92s;
    font-size: 1.3rem;
}

.training-2 {
    bottom: 15%;
    right: 1%;
    animation: orbit 25s infinite, bounce 6s infinite;
    animation-delay: 93s;
    font-size: 1.5rem;
}

/* Additional Layer 10 - Evaluation & Scoring */
.score-1 {
    top: 85%;
    left: 1%;
    animation: floatUpDown 15s infinite, rotateCounterClockwise 30s infinite;
    animation-delay: 94s;
    font-size: 1.7rem;
}

.score-2 {
    bottom: 5%;
    right: 1%;
    animation: wave 21s infinite, pulse 8s infinite;
    animation-delay: 95s;
    font-size: 1.1rem;
}

.rating-1 {
    top: 55%;
    left: 1%;
    animation: floatDiagonal 18s infinite, twinkle 4s infinite;
    animation-delay: 96s;
    font-size: 1.4rem;
}

.rating-2 {
    bottom: 45%;
    right: 1%;
    animation: spiralFloat 16s infinite, fadeInOut 11s infinite;
    animation-delay: 97s;
    font-size: 1.6rem;
}

.benchmark-1 {
    top: 75%;
    left: 1%;
    animation: floatLeftRight 14s infinite, scale 10s infinite;
    animation-delay: 98s;
    font-size: 1.2rem;
}

.benchmark-2 {
    bottom: 25%;
    right: 1%;
    animation: orbit 22s infinite, bounce 7s infinite;
    animation-delay: 99s;
    font-size: 1.8rem;
}

/* Additional Layer 11 - Communication & Feedback */
.feedback-1 {
    top: 5%;
    left: 1%;
    animation: floatUpDown 17s infinite, rotateClockwise 27s infinite;
    animation-delay: 100s;
    font-size: 1.3rem;
}

.feedback-2 {
    bottom: 95%;
    right: 1%;
    animation: wave 19s infinite, pulse 9s infinite;
    animation-delay: 101s;
    font-size: 1.5rem;
}

.survey-feedback-1 {
    top: 25%;
    left: 99%;
    animation: floatDiagonal 20s infinite, twinkle 6s infinite;
    animation-delay: 102s;
    font-size: 1.1rem;
}

.survey-feedback-2 {
    bottom: 75%;
    right: 99%;
    animation: spiralFloat 15s infinite, fadeInOut 8s infinite;
    animation-delay: 103s;
    font-size: 1.7rem;
}

.voice-1 {
    top: 45%;
    left: 99%;
    animation: floatLeftRight 18s infinite, scale 13s infinite;
    animation-delay: 104s;
    font-size: 1.4rem;
}

.voice-2 {
    bottom: 55%;
    right: 99%;
    animation: orbit 24s infinite, bounce 5s infinite;
    animation-delay: 105s;
    font-size: 1.6rem;
}

/* Additional Layer 12 - Progress & Tracking */
.progress-1 {
    top: 65%;
    left: 99%;
    animation: floatUpDown 16s infinite, rotateCounterClockwise 28s infinite;
    animation-delay: 106s;
    font-size: 1.2rem;
}

.progress-2 {
    bottom: 35%;
    right: 99%;
    animation: wave 22s infinite, pulse 7s infinite;
    animation-delay: 107s;
    font-size: 1.8rem;
}

.milestone-1 {
    top: 85%;
    left: 99%;
    animation: floatDiagonal 14s infinite, twinkle 10s infinite;
    animation-delay: 108s;
    font-size: 1.3rem;
}

.milestone-2 {
    bottom: 15%;
    right: 99%;
    animation: spiralFloat 21s infinite, fadeInOut 6s infinite;
    animation-delay: 109s;
    font-size: 1.5rem;
}

.timeline-1 {
    top: 5%;
    left: 99%;
    animation: floatLeftRight 17s infinite, scale 11s infinite;
    animation-delay: 110s;
    font-size: 1.1rem;
}

.timeline-2 {
    bottom: 95%;
    right: 99%;
    animation: orbit 26s infinite, bounce 8s infinite;
    animation-delay: 111s;
    font-size: 1.7rem;
}

/* Additional Layer 13 - Leadership & Management */
.leadership-1 {
    top: 12%;
    left: 92%;
    animation: floatUpDown 19s infinite, rotateClockwise 25s infinite;
    animation-delay: 112s;
    font-size: 1.4rem;
}

.leadership-2 {
    bottom: 88%;
    right: 92%;
    animation: wave 15s infinite, pulse 9s infinite;
    animation-delay: 113s;
    font-size: 1.6rem;
}

.management-1 {
    top: 32%;
    left: 92%;
    animation: floatDiagonal 18s infinite, twinkle 4s infinite;
    animation-delay: 114s;
    font-size: 1.2rem;
}

.management-2 {
    bottom: 68%;
    right: 92%;
    animation: spiralFloat 20s infinite, fadeInOut 12s infinite;
    animation-delay: 115s;
    font-size: 1.8rem;
}

.strategy-1 {
    top: 52%;
    left: 92%;
    animation: floatLeftRight 16s infinite, scale 14s infinite;
    animation-delay: 116s;
    font-size: 1.3rem;
}

.strategy-2 {
    bottom: 48%;
    right: 92%;
    animation: orbit 23s infinite, bounce 7s infinite;
    animation-delay: 117s;
    font-size: 1.5rem;
}

/* Additional Layer 14 - Quality & Standards */
.quality-2 {
    top: 72%;
    left: 92%;
    animation: floatUpDown 17s infinite, rotateCounterClockwise 31s infinite;
    animation-delay: 118s;
    font-size: 1.1rem;
}

.quality-3 {
    bottom: 28%;
    right: 92%;
    animation: wave 21s infinite, pulse 6s infinite;
    animation-delay: 119s;
    font-size: 1.7rem;
}

.standard-1 {
    top: 92%;
    left: 92%;
    animation: floatDiagonal 14s infinite, twinkle 8s infinite;
    animation-delay: 120s;
    font-size: 1.4rem;
}

.standard-2 {
    bottom: 8%;
    right: 92%;
    animation: spiralFloat 19s infinite, fadeInOut 10s infinite;
    animation-delay: 121s;
    font-size: 1.6rem;
}

.excellence-1 {
    top: 22%;
    left: 8%;
    animation: floatLeftRight 18s infinite, scale 13s infinite;
    animation-delay: 122s;
    font-size: 1.2rem;
}

.excellence-2 {
    bottom: 78%;
    right: 8%;
    animation: orbit 25s infinite, bounce 5s infinite;
    animation-delay: 123s;
    font-size: 1.8rem;
}

/* Additional Layer 15 - Technology & Digital */
.digital-1 {
    top: 42%;
    left: 8%;
    animation: floatUpDown 16s infinite, rotateClockwise 29s infinite;
    animation-delay: 124s;
    font-size: 1.3rem;
}

.digital-2 {
    bottom: 58%;
    right: 8%;
    animation: wave 20s infinite, pulse 7s infinite;
    animation-delay: 125s;
    font-size: 1.5rem;
}

.automation-1 {
    top: 62%;
    left: 8%;
    animation: floatDiagonal 15s infinite, twinkle 11s infinite;
    animation-delay: 126s;
    font-size: 1.1rem;
}

.automation-2 {
    bottom: 38%;
    right: 8%;
    animation: spiralFloat 22s infinite, fadeInOut 9s infinite;
    animation-delay: 127s;
    font-size: 1.7rem;
}

.ai-1 {
    top: 82%;
    left: 8%;
    animation: floatLeftRight 17s infinite, scale 12s infinite;
    animation-delay: 128s;
    font-size: 1.4rem;
}

.ai-2 {
    bottom: 18%;
    right: 8%;
    animation: orbit 24s infinite, bounce 6s infinite;
    animation-delay: 129s;
    font-size: 1.6rem;
}

/* Additional Layer 16 - Collaboration Tools */
.collab-1 {
    top: 2%;
    left: 8%;
    animation: floatUpDown 18s infinite, rotateCounterClockwise 26s infinite;
    animation-delay: 130s;
    font-size: 1.2rem;
}

.collab-2 {
    bottom: 98%;
    right: 8%;
    animation: wave 16s infinite, pulse 8s infinite;
    animation-delay: 131s;
    font-size: 1.8rem;
}

.workflow-1 {
    top: 18%;
    left: 15%;
    animation: floatDiagonal 21s infinite, twinkle 5s infinite;
    animation-delay: 132s;
    font-size: 1.3rem;
}

.workflow-2 {
    bottom: 82%;
    right: 15%;
    animation: spiralFloat 14s infinite, fadeInOut 10s infinite;
    animation-delay: 133s;
    font-size: 1.5rem;
}

.integration-1 {
    top: 38%;
    left: 15%;
    animation: floatLeftRight 19s infinite, scale 14s infinite;
    animation-delay: 134s;
    font-size: 1.1rem;
}

.integration-2 {
    bottom: 62%;
    right: 15%;
    animation: orbit 27s infinite, bounce 7s infinite;
    animation-delay: 135s;
    font-size: 1.7rem;
}

/* Additional Layer 17 - Results & Outcomes */
.result-1 {
    top: 58%;
    left: 15%;
    animation: floatUpDown 15s infinite, rotateClockwise 30s infinite;
    animation-delay: 136s;
    font-size: 1.4rem;
}

.result-2 {
    bottom: 42%;
    right: 15%;
    animation: wave 23s infinite, pulse 9s infinite;
    animation-delay: 137s;
    font-size: 1.6rem;
}

.outcome-1 {
    top: 78%;
    left: 15%;
    animation: floatDiagonal 17s infinite, twinkle 6s infinite;
    animation-delay: 138s;
    font-size: 1.2rem;
}

.outcome-2 {
    bottom: 22%;
    right: 15%;
    animation: spiralFloat 20s infinite, fadeInOut 11s infinite;
    animation-delay: 139s;
    font-size: 1.8rem;
}

.impact-1 {
    top: 98%;
    left: 15%;
    animation: floatLeftRight 16s infinite, scale 13s infinite;
    animation-delay: 140s;
    font-size: 1.3rem;
}

.impact-2 {
    bottom: 2%;
    right: 15%;
    animation: orbit 25s infinite, bounce 8s infinite;
    animation-delay: 141s;
    font-size: 1.5rem;
}

/* Additional Layer 18 - Additional Stars & Decorative */
.star-4 {
    top: 8%;
    left: 22%;
    animation: twinkle 2s infinite, floatUpDown 14s infinite;
    animation-delay: 142s;
    font-size: 0.8rem;
}

.star-5 {
    bottom: 92%;
    right: 22%;
    animation: twinkle 3s infinite, floatLeftRight 16s infinite;
    animation-delay: 143s;
    font-size: 0.9rem;
}

.star-6 {
    top: 28%;
    left: 22%;
    animation: twinkle 2.5s infinite, floatDiagonal 18s infinite;
    animation-delay: 144s;
    font-size: 1.0rem;
}

.star-7 {
    bottom: 72%;
    right: 22%;
    animation: twinkle 3.5s infinite, spiralFloat 20s infinite;
    animation-delay: 145s;
    font-size: 0.7rem;
}

.star-8 {
    top: 48%;
    left: 22%;
    animation: twinkle 4s infinite, orbit 22s infinite;
    animation-delay: 146s;
    font-size: 1.1rem;
}

.sparkle-1 {
    bottom: 52%;
    right: 22%;
    animation: twinkle 1.5s infinite, wave 15s infinite;
    animation-delay: 147s;
    font-size: 1.2rem;
}

.sparkle-2 {
    top: 68%;
    left: 22%;
    animation: twinkle 2.8s infinite, floatUpDown 17s infinite;
    animation-delay: 148s;
    font-size: 1.3rem;
}

.sparkle-3 {
    bottom: 32%;
    right: 22%;
    animation: twinkle 3.2s infinite, floatLeftRight 19s infinite;
    animation-delay: 149s;
    font-size: 1.4rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #fff;
    color: #2563eb;
}

.btn-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-preview i {
    font-size: 8rem;
    opacity: 0.7;
    animation: dashboardPulse 4s infinite ease-in-out;
}

.dashboard-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem;
}

.mini-chart {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-animate-1 {
    animation: chartGrow 3s infinite ease-in-out;
    animation-delay: 0.5s;
}

.chart-animate-2 {
    animation: chartGrow 3s infinite ease-in-out;
    animation-delay: 1s;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.chart-animate-3 {
    animation: chartGrow 3s infinite ease-in-out;
    animation-delay: 1.5s;
    width: 30px;
    height: 45px;
}

.chart-animate-1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
    animation: barFill 2s infinite ease-in-out;
    animation-delay: 0.5s;
}

.chart-animate-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pieSpin 4s infinite linear;
}

.chart-animate-3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    animation: barFill 2.5s infinite ease-in-out;
    animation-delay: 1.5s;
}

@keyframes dashboardPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

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

@keyframes barFill {
    0% { height: 0%; }
    50% { height: 70%; }
    100% { height: 0%; }
}

@keyframes pieSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit-text p {
    color: #64748b;
    line-height: 1.6;
}

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

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 5px;
}

.period {
    font-size: 1.2rem;
    color: #64748b;
}

.plan-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.custom-pricing {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    text-align: center;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #374151;
    font-size: 1rem;
}

.pricing-features i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
}

.pricing-footer {
    text-align: center;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.pricing-footer-info {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.pricing-faq-full {
    width: 100%;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.faq-icon i {
    font-size: 2rem;
    color: white;
}

.pricing-faq-full h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: none;
    width: 100%;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faq-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-number {
    background: white;
    color: #2563eb;
}

.faq-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.faq-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-content h5 {
    color: white;
}

.faq-arrow {
    font-size: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-arrow {
    color: white;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* FAQ List */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.faq-list i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* Process Steps */
.faq-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Timeline Info */
.timeline-info {
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.timeline-icon i {
    color: white;
    font-size: 1rem;
}

.timeline-content h6 {
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.timeline-content p {
    color: #64748b;
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
}

.timeline-content small {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.security-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.security-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
}

/* Sample Info */
.sample-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.sample-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.sample-item i {
    font-size: 2rem;
    color: #dc2626;
    margin-right: 1rem;
}

.sample-item strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sample-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Discount Tiers */
.discount-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.tier-range {
    font-weight: 500;
    color: #1e293b;
}

.tier-discount {
    font-weight: 600;
    color: #10b981;
    background: #f0fdf4;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Differentiators */
.differentiators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.diff-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.diff-icon i {
    color: white;
    font-size: 1rem;
}

.diff-item h6 {
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.diff-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Support Features */
.support-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.support-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.support-item i {
    color: #2563eb;
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
}

.support-item span {
    color: #1e293b;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
}

.highlight i {
    color: #2563eb;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual i {
    font-size: 6rem;
    color: white;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    color: #60a5fa;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}

.demo-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
}

.email-status {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.email-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.email-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo {
    color: #60a5fa;
    margin-bottom: 1rem;
    justify-content: center;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

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

.link-group a:hover {
    color: #60a5fa;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-faq-full h4 {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .faq-content h5 {
        font-size: 1rem;
    }
    
    .faq-process {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .sample-info {
        grid-template-columns: 1fr;
    }

    /* Reduce animation intensity on mobile */
    .floating-element {
        font-size: 1.5rem;
        opacity: 0.1;
    }

    .hero-bg-animation {
        display: none;
    }

    .dashboard-elements {
        padding: 1rem;
    }

    .mini-chart {
        width: 30px;
        height: 30px;
    }

    .chart-animate-2 {
        width: 25px;
        height: 25px;
    }

    .chart-animate-3 {
        width: 20px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .feature-card,
    .demo-form {
        padding: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-item,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
