* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-decoration: none
}

html,
body {
    overflow-x: hidden;
    max-width: 100%
}

html {
    scroll-behavior: smooth
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8
    }
}

@keyframes visitorPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7
    }

    50% {
        transform: scale(1.2);
        opacity: 1
    }
}

@keyframes websitePulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes visitorFlow {

    0%,
    100% {
        transform: scale(0.8) translateY(0px);
        opacity: 0.5
    }

    25% {
        transform: scale(1) translateY(-5px);
        opacity: 0.8
    }

    50% {
        transform: scale(1.1) translateY(-10px);
        opacity: 1
    }

    75% {
        transform: scale(1) translateY(-5px);
        opacity: 0.8
    }
}

@keyframes emailPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

@keyframes emailWave {

    0%,
    100% {
        transform: translateX(0px) translateY(0px);
        opacity: 0.6
    }

    50% {
        transform: translateX(10px) translateY(-10px);
        opacity: 1
    }
}

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

    to {
        transform: rotate(360deg)
    }
}

@keyframes chartGrow {

    0%,
    100% {
        transform: scaleY(0.8)
    }

    50% {
        transform: scaleY(1.2)
    }
}

@keyframes bar-up {

    0%,
    100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(1.2)
    }
}

@keyframes light-up {

    0%,
    100% {
        opacity: 0.2
    }

    50% {
        opacity: 1
    }
}

body>* {
    animation: fadeInFromLeft 1s ease-out forwards;
    opacity: 0
}

.navbar {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(10px)
}

.logo {
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px
}

.logoh3 {
    font-weight: 400;
    margin-left: 20px;
    font-size: 25px
}

.nav-brand {
    display: flex;
    flex-direction: row
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none
}

.nav-links a {
    color: #333;
    transition: color 0.3s ease
}

.nav-links a:hover {
    color: #007bff
}

.nav-links button {
    background: black;
    color: white;
    padding: 20px;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 40px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease
}

.nav-links button:hover {
    background: linear-gradient(135deg, #ff0066, #9900ff)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease-in-out
}

.hero {
    margin-top: 90px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 5%;
    gap: 4rem;
    flex-direction: row-reverse;
    justify-content: center;
    animation-delay: 0.4s;
    position: relative;
    overflow: hidden;
}

.hero-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 550px;
    height: 500px;
    margin-left: 2rem;
    min-height: 500px;
}

.visitor-tracking {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.visitor-icon {
    position: absolute;
    font-size: 20px;
    color: #32DDE3;
    animation: visitorPulse 3s ease-in-out infinite;
    border: 2px solid #32DDE3;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.visitor-icon:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s
}

.visitor-icon:nth-child(2) {
    top: 25%;
    right: 20%;
    animation-delay: 0.5s
}

.visitor-icon:nth-child(3) {
    bottom: 15%;
    left: 25%;
    animation-delay: 1s
}

.visitor-icon:nth-child(4) {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s
}

.center-website {
    font-size: 48px;
    color: #fff;
    z-index: 10;
    animation: websitePulse 2s ease-in-out infinite
}

.hero-content {
    flex: 1;
    max-width: 600px
}

.hero-title {
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 50;
    font-size: 60px
}

.data-analysis-hero {
    font-size: 55px;
}

.hero-title span {
    position: relative;
    display: inline-block
}

.hero-title span:nth-child(1)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, #32DDE3, #1C7A7D)
}

.hero-title span:nth-child(2)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, #ff0066, #9900ff)
}

.hero-description {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 70%
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    opacity: 0;
    transition: opacity 0.8s;
    z-index: -1
}

.cta-button:hover::before {
    opacity: 1
}

.cta-button:hover {
    transform: translateY(-2px)
}

.features-section {
    padding: 100px 5% 80px;
    background: #fff
}

.features-title {
    text-align: center;
    font-size: 60px;
    font-weight: 50;
    margin-bottom: 60px;
    color: #000;
    line-height: 1.4
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05)
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    transition: all 0.3s ease
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3)
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.25rem
}

.benefits-section {
    padding: 100px 5%;
    background: #fff
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px
}

.benefits-title {
    font-size: 60px;
    font-weight: 50;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.4
}

.benefits-grid {
    display: grid;
    gap: 60px
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15)
}

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

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

.benefit-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000
}

.benefit-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px
}

.benefit-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease
}

.benefit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    opacity: 0;
    transition: opacity 0.8s;
    z-index: -1
}

.benefit-button:hover::before {
    opacity: 1
}

.benefit-button:hover {
    transform: translateY(-2px)
}

.benefit-animation {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    overflow: hidden
}

.identification-animation,
.email-automation-animation,
.decision-maker-animation,
.analytics-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.website-icon,
.email-center,
.target-center {
    font-size: 48px;
    color: #32DDE3;
    z-index: 10
}

.email-center {
    animation: emailPulse 2s ease-in-out infinite
}

.visitor-flow {
    position: absolute;
    font-size: 24px;
    color: #ff0066;
    animation: visitorFlow 4s ease-in-out infinite
}

.visitor-flow:nth-child(2) {
    top: 20%;
    left: 20%;
    animation-delay: 0s
}

.visitor-flow:nth-child(3) {
    top: 20%;
    right: 20%;
    animation-delay: 1s
}

.visitor-flow:nth-child(4) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s
}

.visitor-flow:nth-child(5) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s
}

.email-wave {
    position: absolute;
    font-size: 20px;
    color: #ff0066;
    animation: emailWave 3s ease-in-out infinite
}

.email-wave:nth-child(2) {
    top: 15%;
    left: 25%;
    animation-delay: 0.2s
}

.email-wave:nth-child(3) {
    top: 15%;
    right: 25%;
    animation-delay: 0.4s
}

.email-wave:nth-child(4) {
    bottom: 15%;
    left: 25%;
    animation-delay: 0.6s
}

.email-wave:nth-child(5) {
    bottom: 15%;
    right: 25%;
    animation-delay: 0.8s
}

.decision-ring {
    position: absolute;
    border: 3px solid;
    border-radius: 50%;
    animation: rotate 4s linear infinite
}

.decision-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    border-color: #ff0066;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px
}

.decision-ring:nth-child(3) {
    width: 100px;
    height: 100px;
    border-color: #9900ff;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    animation-direction: reverse;
    animation-duration: 6s
}

.decision-ring:nth-child(4) {
    width: 140px;
    height: 140px;
    border-color: #32DDE3;
    top: 50%;
    left: 50%;
    margin: -70px 0 0 -70px;
    animation-duration: 8s
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px
}

.chart-bar {
    width: 20px;
    background: linear-gradient(135deg, #32DDE3, #ff0066);
    border-radius: 2px;
    animation: chartGrow 2s ease-in-out infinite
}

.chart-bar:nth-child(1) {
    height: 40px;
    animation-delay: 0s
}

.chart-bar:nth-child(2) {
    height: 70px;
    animation-delay: 0.2s
}

.chart-bar:nth-child(3) {
    height: 90px;
    animation-delay: 0.4s
}

.chart-bar:nth-child(4) {
    height: 60px;
    animation-delay: 0.6s
}

.chart-bar:nth-child(5) {
    height: 100px;
    animation-delay: 0.8s
}

.advanced-features {
    padding: 4rem 5%;
    margin-top: 80px
}

.cta-container {
    margin-top: 80px;
    text-align: center;
    background: black;
    padding: 60px;
    border-radius: 20px;
    color: white
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 30px
}

.cta-button2 {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.10s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    color: white
}

.cta-button2 svg {
    margin-right: 10px
}

.interactive-features {
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden
}

.interactive-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 5%
}

.badge {
    background: black;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px
}

.interactive-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px
}

.interactive-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px
}

.tab-btn {
    background: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px
}

.tab-btn i {
    font-size: 18px
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1)
}

.tab-btn.active {
    background: black;
    color: white
}

.tab-content-container {
    position: relative;
    min-height: 400px
}

.tab-content {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center
}

.tab-content.active {
    display: flex;
    opacity: 1;
    position: relative
}

.tab-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center
}

.tab-info {
    flex: 1
}

.tab-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px
}

.tab-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px
}

.feature-list {
    list-style: none;
    padding: 0
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 20px
}

.feature-list li:before {
    content: "●";
    color: #1d3557;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.8em
}

.dashboard-preview {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
    width: 220px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.graph-placeholder {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px
}

.bar {
    width: 15%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    border-radius: 4px 4px 0 0
}

.bar-1 {
    height: 40%;
    animation: bar-up 2s ease-out infinite
}

.bar-2 {
    height: 65%;
    animation: bar-up 2s ease-out infinite 0.2s
}

.bar-3 {
    height: 85%;
    animation: bar-up 2s ease-out infinite 0.4s
}

.bar-4 {
    height: 55%;
    animation: bar-up 2s ease-out infinite 0.6s
}

.bar-5 {
    height: 70%;
    animation: bar-up 2s ease-out infinite 0.8s
}

.donut-chart {
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.donut-segment {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #e63946, #1d3557);
    position: relative
}

.donut-segment:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: white;
    border-radius: 50%
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #333
}

.stat-label {
    color: #777;
    font-size: 14px
}

.ai-animation {
    width: 300px;
    height: 300px;
    position: relative
}

.ai-brain {
    position: relative;
    width: 100%;
    height: 100%
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #1d3557;
    border-radius: 50%;
    animation: pulse 2s infinite
}

.n1 {
    top: 40px;
    left: 100px;
    animation-delay: 0s
}

.n2 {
    top: 80px;
    left: 200px;
    animation-delay: 0.5s
}

.n3 {
    top: 160px;
    left: 160px;
    animation-delay: 1s
}

.n4 {
    top: 200px;
    left: 80px;
    animation-delay: 1.5s
}

.n5 {
    top: 120px;
    left: 50px;
    animation-delay: 2s
}

.connector {
    position: absolute;
    background: linear-gradient(to right, rgba(0, 198, 255, 0.4), rgba(0, 114, 255, 0.4));
    height: 3px;
    transform-origin: 0 0
}

.c1 {
    top: 50px;
    left: 110px;
    width: 100px;
    transform: rotate(25deg);
    animation: light-up 2s infinite
}

.c2 {
    top: 90px;
    left: 190px;
    width: 80px;
    transform: rotate(-45deg);
    animation: light-up 2s infinite 0.5s
}

.c3 {
    top: 160px;
    left: 150px;
    width: 80px;
    transform: rotate(200deg);
    animation: light-up 2s infinite 1s
}

.c4 {
    top: 120px;
    left: 60px;
    width: 100px;
    transform: rotate(65deg);
    animation: light-up 2s infinite 1.5s
}

@media (max-width: 1000px) {

    /* Hide gradient borders on screens under 1000px */
    .hero-title span:nth-child(1)::after {
        display: none;
    }

    .hero-title span:nth-child(2)::after {
        display: none;
    }

    /* Add animated gradient to hero title on mobile */
    .hero-title span:nth-child(2) {
        background: linear-gradient(135deg, #32DDE3, #1C7A7D, #ff0066, #9900ff);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 200%;
        animation: gradientShift 3s ease-in-out infinite;
    }

    .data-analysis-hero span:nth-child(1)::after {
        display: none;
    }

    .data-analysis-hero span:nth-child(2)::after {
        display: none;
    }

    /* Add gradient background to natural language AI text */
    .data-analysis-hero span:nth-child(2) {
        background: linear-gradient(135deg, #32DDE3, #1C7A7D, #ff0066, #9900ff);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 200%;
        animation: gradientShift 3s ease-in-out infinite;
    }

    /* Gradient animation keyframes */
    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0px;
        padding-top: 35vh;
        min-height: 50vh;
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        order: 1;
    }

    .hero-animation {
        margin: 0 auto;
        width: 100%;
        height: 350px;
        padding: 1rem;
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hamburger {
        display: flex
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 400;
        text-align: center
    }

    .data-analysis-hero {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .data-analysis-hero span {
        display: block;
        margin-bottom: 0.5rem;
    }

    .data-analysis-hero span:nth-child(1)::after,
    .data-analysis-hero span:nth-child(2)::after {
        height: 2px;
        bottom: -12px;
    }

    .hero-description {
        max-width: 100%;
        text-align: center;
        font-size: 1.4rem;
    }

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

    .benefit-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center
    }

    .feature-item {
        flex-direction: column;
        padding: 30px 20px
    }

    .feature-item.reverse {
        flex-direction: column
    }

    .feature-content,
    .feature-image {
        width: 100%
    }

    .feature-content h2 {
        font-size: 24px;
        text-align: left
    }

    .feature-content p {
        text-align: center
    }

    .feature-benefits {
        max-width: 300px;
        margin: 0 auto
    }

    .cta-container {
        padding: 40px 20px
    }

    .cta-container h2 {
        font-size: 24px
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 35vh;
        min-height: 50vh;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem
    }

    .data-analysis-hero {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .data-analysis-hero span {
        margin-bottom: 0.3rem;
    }

    .hero-description {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .hero-animation {
        height: 300px;
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .features-title,
    .benefits-title {
        font-size: 32px
    }
}

@media (max-width: 320px) {
    .hero {
        padding-top: 35vh;
        min-height: 50vh;
        gap: 1rem;
    }

    .data-analysis-hero {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .data-analysis-hero span {
        margin-bottom: 0.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .hero-animation {
        height: 280px;
        padding: 0.25rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.line {
    width: 100%;
    height: 1px;
    background-color: #dedede;
    margin: 1.5rem 0
}

.message,
#message2 {
    display: none;
    position: fixed;
    background-color: rgb(0, 219, 0);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.bulletpoint {
    width: 100%
}

.bulletpoint p {
    margin: 1rem 0;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    direction: rtl
}

.bulletpoint i {
    color: #17AB13;
    font-size: 18px
}

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

.feature-card h3,
.feature-card p {
    color: white
}

.feature-card:hover::before {
    opacity: 1
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    transition: color 0.3s ease
}

.feature-card p {
    color: white;
    line-height: 1.6;
    transition: color 0.3s ease
}

.advanced-features {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;

}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto
}

.feature-spotlight {
    display: grid;
    gap: 4rem;
    position: relative;
    z-index: 1
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative
}

.feature-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1)
}

.feature-item:hover::after {
    opacity: 1
}

.feature-item.reverse::after {
    left: auto;
    right: 0
}

.feature-item.reverse {
    flex-direction: row-reverse
}

.feature-content {
    flex: 1;
    padding: 4rem
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block
}

.feature-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #475569;
    font-size: 1.05rem
}

.feature-list i {
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.2)
}

.feature-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 400px;
    position: relative
}

.ai-brain-animation {
    width: 80%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto
}

.ai-brain-container {
    width: 200px;
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3)
}

.brain-core {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px)
}

.ai-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite
}

.neural-connections {
    position: absolute;
    width: 100%;
    height: 100%
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00d4ff
}

.node-1 {
    top: 20%;
    left: 15%;
    animation: nodeFlash 3s infinite
}

.node-2 {
    top: 30%;
    right: 10%;
    animation: nodeFlash 3s infinite 0.5s
}

.node-3 {
    bottom: 25%;
    left: 20%;
    animation: nodeFlash 3s infinite 1s
}

.node-4 {
    bottom: 20%;
    right: 15%;
    animation: nodeFlash 3s infinite 1.5s
}

.node-5 {
    top: 10%;
    left: 50%;
    animation: nodeFlash 3s infinite 2s
}

.node-6 {
    bottom: 10%;
    left: 50%;
    animation: nodeFlash 3s infinite 2.5s
}

.neural-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    opacity: 0.6
}

.line-1 {
    top: 22%;
    left: 20%;
    width: 60%;
    transform: rotate(15deg);
    animation: dataFlow 4s infinite
}

.line-2 {
    top: 35%;
    left: 25%;
    width: 50%;
    transform: rotate(-20deg);
    animation: dataFlow 4s infinite 1s
}

.line-3 {
    bottom: 28%;
    left: 25%;
    width: 55%;
    transform: rotate(25deg);
    animation: dataFlow 4s infinite 2s
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
    opacity: 0
}

.particle-1 {
    top: 30%;
    left: 10%;
    animation: floatParticle 5s infinite
}

.particle-2 {
    top: 60%;
    left: 5%;
    animation: floatParticle 5s infinite 1s
}

.particle-3 {
    top: 40%;
    right: 8%;
    animation: floatParticle 5s infinite 2s
}

.particle-4 {
    bottom: 30%;
    right: 12%;
    animation: floatParticle 5s infinite 3s
}

.visitor-tracking-animation {
    width: 80%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.05);
}

.heat-map {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.heat-map-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(239, 68, 68, 0.4) 0%, rgba(239, 68, 68, 0.1) 30%, transparent 60%), radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.1) 40%, transparent 70%), radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.4) 0%, rgba(245, 158, 11, 0.1) 30%, transparent 60%);
    opacity: 0.7;
    animation: pulseHeatmap 4s infinite
}

.visitor-paths {
    position: absolute;
    width: 100%;
    height: 100%
}

.path-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0072ff;
    border-radius: 50%;
    z-index: 10
}

.path-dot-1 {
    top: 30%;
    left: 30%;
    animation: pulseDot 2s infinite
}

.path-dot-2 {
    top: 60%;
    left: 50%;
    animation: pulseDot 2s infinite 0.5s
}

.path-dot-3 {
    top: 40%;
    left: 70%;
    animation: pulseDot 2s infinite 1s
}

.path-line {
    position: absolute;
    height: 2px;
    background: #0072ff;
    opacity: 0.5;
    transform-origin: left center
}

.path-line-1 {
    top: 30%;
    left: 30%;
    width: 25%;
    transform: rotate(26deg);
    animation: drawLine 4s infinite
}

.path-line-2 {
    top: 60%;
    left: 50%;
    width: 23%;
    transform: rotate(-24deg);
    animation: drawLine 4s infinite 2s
}

.alerts-animation {
    width: 80%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto
}

.device-screen {
    width: 220px;
    height: 400px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    padding: 20px;
    border: 10px solid #1e293b
}

.notification {
    width: 100%;
    height: 80px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(300px);
    opacity: 0
}

.notification-1 {
    animation: slideIn 3s infinite
}

.notification-2 {
    animation: slideIn 3s infinite 1.5s
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0
}

.notification-content {
    flex: 1
}

.notification-line {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 8px
}

.notification-line:nth-child(2) {
    width: 70%
}







/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: translateY(0) scale(1);
    }

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

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        padding: 2rem;
    }

    .feature-item.reverse {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

.features-grid .feature-card,
.feature-item,
.pricing-card,
.contact-wrapper {
    animation: fadeIn 0.8s ease-out forwards
}

.features-grid .feature-card:nth-child(2) {
    animation-delay: 0.2s
}

.features-grid .feature-card:nth-child(3) {
    animation-delay: 0.4s
}

.feature-spotlight .feature-item:nth-child(2) {
    animation-delay: 0.2s
}

.feature-spotlight .feature-item:nth-child(3) {
    animation-delay: 0.4s
}

.pricing-cards .pricing-card:nth-child(2) {
    animation-delay: 0.2s
}

.pricing-cards .pricing-card:nth-child(3) {
    animation-delay: 0.4s
}









@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%
    }

    .hamburger {
        display: flex
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 20px 20px;
        gap: 1.5rem
    }

    .nav-links.active {
        display: flex
    }

    .nav-links a {
        padding: 0.8rem 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem
    }

    .nav-btn {
        width: 100%;
        margin-top: 1rem
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px)
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px)
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 5%
    }

    .logoh3 {
        font-size: 20px
    }

    .logo {
        width: 40px;
        height: 40px;
        font-size: 16px
    }
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 5%;
    margin-top: 120px
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInFromLeft 1s ease-out forwards
}

.feature-card:hover {
    transform: translateY(-10px)
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border: 2px solid black
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333
}

.feature-description {
    color: #666;
    line-height: 1.6
}

.features-header {
    text-align: center;
    margin: 120px 0 40px;
    padding: 0 5%
}

.features-header h1 {
    font-size: 2.5rem;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem
}

.features-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem
    }
}




@media (max-width: 768px) {
    .main {
        flex-direction: column-reverse;
        height: auto;
        padding: 40px 20px;
        margin: 10px;
        text-align: center
    }

    .main div {
        margin-right: 0;
        margin-top: 90px
    }

    .main h1 {
        font-size: 32px;
        line-height: 1.3
    }

    .main p {
        font-size: 16px;
        margin-top: 20px
    }

    .main button {
        margin-top: 30px;
        width: 100%;
        max-width: 300px
    }

    .main img {
        width: 100% !important;
        margin-left: 0 !important;
        max-width: 500px
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        margin-top: 60px
    }

    .feature-card {
        padding: 1.5rem
    }

    .features {
        padding: 30px 15px;
        margin-top: 60px
    }

    .feature {
        margin-bottom: 40px;
        min-height: auto
    }

    .feature h2 {
        font-size: 24px
    }

    .feature p {
        font-size: 16px
    }

    .container {
        padding: 0 15px
    }

    .card {
        padding: 20px
    }

    .card-header h2 {
        font-size: 24px
    }

    .logoh3 {
        font-size: 20px
    }

    .logo {
        width: 35px
    }

    .features-header {
        margin: 80px 0 30px
    }

    .features-header h1 {
        font-size: 28px
    }

    .features-header p {
        font-size: 16px
    }
}

@media (max-width: 480px) {
    .main h1 {
        font-size: 28px
    }

    .main button {
        font-size: 14px;
        height: 45px
    }

    .feature-icon {
        width: 60px;
        height: 60px
    }

    .nav-links {
        gap: 1rem;
        padding: .5rem
    }

    .nav-links button {
        width: 80px;
        height: 35px;
        font-size: 14px
    }
}

/* Update these CSS styles in your style.css file */

/* Navbar mobile fixes */
@media (max-width: 768px) {


    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links button {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Main section button centering on mobile */
@media (max-width: 768px) {
    .main div {
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main button {
        margin: 30px auto 0;
        width: 100%;
        padding: 20px;
        max-width: 300px;
    }

    .main {
        padding: 2rem 1rem;
    }
}

/* Hamburger menu animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}



/* Advanced Features Section */
.advanced-features {
    padding: 4rem 5%;
    margin-top: 80px;
}


.cta-container {
    margin-top: 80px;
    text-align: center;
    background: black;

    padding: 60px;
    border-radius: 20px;
    color: white;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
}



.cta-button svg {
    margin-right: 10px;
}

/* Responsive styles for the advanced features section */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        padding: 30px 20px;
        gap: 1.5rem;
    }

    .feature-item.reverse {
        flex-direction: column;
    }

    .feature-content,
    .feature-image {
        width: 100%;
    }

    .feature-content {
        padding: 2rem 1.5rem;
    }

    .feature-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .feature-content p {
        text-align: left;
    }

    .feature-benefits {
        max-width: 300px;
        margin: 0 auto;
    }

    .feature-animation {
        overflow: visible;
        padding: 1rem;
        min-height: auto;
        display: flex;
        justify-content: center;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-container h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .feature-content {
        padding: 1.5rem 1rem;
        margin-bottom: 0;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .feature-content p {
        margin-bottom: 1rem;
    }

    .feature-animation {
        overflow: visible;
        padding: 0.5rem;
        min-height: auto;
        margin-top: 0;
    }
}


/* Interactive Features Section */
.interactive-features {
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}


.interactive-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 5%;
}

.badge {
    background: black;

    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.interactive-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.interactive-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Tabs Navigation */
.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: black;

    color: white;
}

/* Tab Content */
.tab-content-container {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.tab-content.active {
    display: flex;
    opacity: 1;
    position: relative;
}

.tab-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-info {
    flex: 1;
}

.tab-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.tab-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.feature-list li:before {
    content: "●";
    color: #1d3557;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.8em;
}

/* Dashboard Preview Animation */
.dashboard-preview {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
    width: 220px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.graph-placeholder {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px;
}



.bar-1 {
    height: 40%;
    animation: bar-up 2s ease-out infinite;
}

.bar-2 {
    height: 65%;
    animation: bar-up 2s ease-out infinite 0.2s;
}

.bar-3 {
    height: 85%;
    animation: bar-up 2s ease-out infinite 0.4s;
}

.bar-4 {
    height: 55%;
    animation: bar-up 2s ease-out infinite 0.6s;
}

.bar-5 {
    height: 70%;
    animation: bar-up 2s ease-out infinite 0.8s;
}

@keyframes bar-up {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.2);
    }
}

.donut-chart {
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-segment {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#ff0066 0deg, #9900ff 76%, #e5e7eb 76%, #e5e7eb 100%);
    position: relative;
}

.donut-segment:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: white;
    border-radius: 50%;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.stat-label {
    color: #777;
    font-size: 14px;
}

/* AI Animation */
.ai-animation {
    width: 300px;
    height: 300px;
    position: relative;
}

.ai-brain {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #1d3557;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.n1 {
    top: 40px;
    left: 100px;
    animation-delay: 0s;
}

.n2 {
    top: 80px;
    left: 200px;
    animation-delay: 0.5s;
}

.n3 {
    top: 160px;
    left: 160px;
    animation-delay: 1s;
}

.n4 {
    top: 200px;
    left: 80px;
    animation-delay: 1.5s;
}

.n5 {
    top: 120px;
    left: 50px;
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.connector {
    position: absolute;
    background: linear-gradient(to right, rgba(0, 198, 255, 0.4), rgba(0, 114, 255, 0.4));
    height: 3px;
    transform-origin: 0 0;
}

.c1 {
    top: 50px;
    left: 110px;
    width: 100px;
    transform: rotate(25deg);
    animation: light-up 2s infinite;
}

.c2 {
    top: 90px;
    left: 190px;
    width: 80px;
    transform: rotate(-45deg);
    animation: light-up 2s infinite 0.5s;
}

.c3 {
    top: 160px;
    left: 150px;
    width: 80px;
    transform: rotate(200deg);
    animation: light-up 2s infinite 1s;
}

.c4 {
    top: 120px;
    left: 60px;
    width: 100px;
    transform: rotate(65deg);
    animation: light-up 2s infinite 1.5s;
}

@keyframes light-up {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}



/* JavaScript for Tabs Functionality */
/* Add this to your existing JavaScript file or in a script tag */
@media (max-width: 992px) {
    .tab-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .tab-info,
    .tab-visual {
        width: 100%;
    }

    .dashboard-preview {
        justify-content: center;
    }

    .dashboard-card {
        width: 180px;
        height: 240px;
    }

}

@media (max-width: 768px) {
    .interactive-features {
        padding: 4rem 0 6rem;
    }

    .interactive-header h1 {
        font-size: 1.8rem;
    }

    .tabs-nav {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

}



.message {
    display: none;
    position: fixed;
    background-color: rgb(0, 219, 0);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#message2 {
    display: none;
    position: fixed;
    background-color: rgb(0, 219, 0);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.line {
    width: 100%;
    height: 1px;
    background-color: #dedede;
    margin: 1.5rem 0;
}

.bulletpoint {
    width: 100%;
}

.bulletpoint p {
    margin: 1rem 0;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    direction: rtl;
}

.bulletpoint i {
    color: #17AB13;
    font-size: 18px;
}


/* Common Styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: black;


    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.feature-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: black;
    color: white;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.feature-card h3,
.feature-card p {
    color: white;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

/* Animated icons for feature cards */
.animated-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.feature-card:hover .animated-icon {
    animation: spin 1s ease-in-out;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    transition: color 0.3s ease;
}

.feature-card p {
    color: white;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Advanced Features Section - Modern Redesign */
.advanced-features {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.advanced-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03), rgba(29, 53, 87, 0.03));
    z-index: 0;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.feature-spotlight {
    display: grid;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.feature-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item.reverse::after {
    left: auto;
    right: 0;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    padding: 4rem;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}



.feature-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.feature-list li,
.feature-list div {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #475569;
    font-size: 1.05rem;
}

.feature-list i {
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.2);
}


/* Visitor Identification Animation */
.visitor-identification-animation {
    width: 80%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.browser-window {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.browser-controls {
    height: 36px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    background: #e2e8f0;
}

.browser-dot:nth-child(1) {
    background: #ef4444;
}

.browser-dot:nth-child(2) {
    background: #f59e0b;
}

.browser-dot:nth-child(3) {
    background: #10b981;
}

.browser-content {
    padding: 20px;
    position: relative;
    height: calc(100% - 36px);
}


@keyframes moveCursor {
    0% {
        top: 50px;
        left: 50px;
    }

    20% {
        top: 100px;
        left: 150px;
    }

    40% {
        top: 150px;
        left: 100px;
    }

    60% {
        top: 120px;
        left: 200px;
    }

    80% {
        top: 80px;
        left: 180px;
    }

    100% {
        top: 50px;
        left: 50px;
    }
}

.visitor-info {
    position: absolute;
    width: 250px;
    height: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    top: 80px;
    right: 30px;
    display: flex;
    opacity: 0;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
        transform: translateY(20px);
    }

    30%,
    70% {
        opacity: 1;
        transform: translateY(0);
    }
}

.visitor-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    margin-right: 15px;
    flex-shrink: 0;
}

.visitor-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visitor-line {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 8px;
    width: 100%;
}

.visitor-line:nth-child(2) {
    width: 70%;
}

.visitor-line:nth-child(3) {
    width: 85%;
}

/* Heat Map Animation */
.visitor-tracking-animation {
    width: 80%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.09), 0 0 40px rgba(0, 0, 0, 0.01);
    border-radius: 10px;
}

.heat-map {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.heat-map-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%,
            rgba(239, 68, 68, 0.4) 0%,
            rgba(239, 68, 68, 0.1) 30%,
            transparent 60%), radial-gradient(circle at 70% 60%,
            rgba(16, 185, 129, 0.4) 0%,
            rgba(16, 185, 129, 0.1) 40%,
            transparent 70%), radial-gradient(circle at 50% 20%,
            rgba(245, 158, 11, 0.4) 0%,
            rgba(245, 158, 11, 0.1) 30%,
            transparent 60%);
    opacity: 0.7;
    animation: pulseHeatmap 4s infinite;
}

@keyframes pulseHeatmap {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.7;
    }
}

.visitor-paths {
    position: absolute;
    width: 100%;
    height: 100%;
}

.path-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0072ff;
    border-radius: 50%;
    z-index: 10;
}

.path-dot-1 {
    top: 30%;
    left: 30%;
    animation: pulseDot 2s infinite;
}

.path-dot-2 {
    top: 60%;
    left: 50%;
    animation: pulseDot 2s infinite 0.5s;
}

.path-dot-3 {
    top: 40%;
    left: 70%;
    animation: pulseDot 2s infinite 1s;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.path-line {
    position: absolute;
    height: 2px;
    background: #0072ff;
    opacity: 0.5;
    transform-origin: left center;
}

.path-line-1 {
    top: 30%;
    left: 30%;
    width: 25%;
    transform: rotate(26deg);
    animation: drawLine 4s infinite;
}

.path-line-2 {
    top: 60%;
    left: 50%;
    width: 23%;
    transform: rotate(-24deg);
    animation: drawLine 4s infinite 2s;
}

@keyframes drawLine {
    0% {
        transform-origin: left center;
        transform: scaleX(0) rotate(26deg);
    }

    40%,
    60% {
        transform-origin: left center;
        transform: scaleX(1) rotate(26deg);
    }

    100% {
        transform-origin: left center;
        transform: scaleX(0) rotate(26deg);
    }
}

/* Alerts Animation */
.alerts-animation {
    width: 80%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.device-screen {
    width: 220px;
    height: 400px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    padding: 20px;
    border: 10px solid #1e293b;
}

.notification {
    width: 100%;
    height: 80px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(300px);
    opacity: 0;
}

.notification-1 {
    animation: slideIn 3s infinite;
}

.notification-2 {
    animation: slideIn 3s infinite 1.5s;
}

@keyframes slideIn {
    0% {
        transform: translateX(300px);
        opacity: 0;
    }

    10%,
    90% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(300px);
        opacity: 0;
    }
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0066, #9900ff);

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-line {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    margin-bottom: 8px;
}

.notification-line:nth-child(2) {
    width: 70%;
}



/* Responsive design */
@media (max-width: 992px) {

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
    }

    .feature-content {
        padding: 3rem;
    }

    .feature-animation {
        width: 100%;
    }

    .feature-item::after {
        width: 100%;
        height: 6px;
        top: 0;
        left: 0;
    }

    .visitor-identification-animation,
    .visitor-tracking-animation,
    .alerts-animation {
        width: 90%;
    }
}


.prices h1 {
    font-size: clamp(22px, 4vw, 27px);
    font-weight: 500;
    margin-bottom: 1rem;
}

.prices h2 {
    font-weight: 500;
    font-size: clamp(24px, 5vw, 32px);
    margin: 1rem 0;
}

.prices h5 {
    color: #666;
    font-weight: 400;
}

.message {
    display: none;
    position: fixed;
    background-color: rgb(0, 219, 0);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#message2 {
    display: none;
    position: fixed;
    background-color: rgb(0, 219, 0);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #007bff;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Contact Section */
.contact-section {
    padding: 100px 5% 80px;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info {
    padding: 3rem;
    background: linear-gradient(135deg, #ff0066, #9900ff);


    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #1d3557;
    transform: translateY(-3px);
}

.contact-form {
    padding: 3rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d3557;
    box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.1);
}

.submit-btn {
    background: black;

    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: translateY(0) scale(1);
    }

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

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        padding: 2rem;
    }

    .feature-item.reverse {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-grid .feature-card,
.feature-item,
.pricing-card,
.contact-wrapper {
    animation: fadeIn 0.8s ease-out forwards;
}

.features-grid .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-spotlight .feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-spotlight .feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.pricing-cards .pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-cards .pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

.En_div {
    margin-right: 0;
    margin-left: 60px;
}

@media (max-width: 768px) {

    /* Styles for screens 768px wide or less (tablets and phones) */
    .En_div {
        margin-right: 0;
        margin-left: 0;
    }
}


/* Add this to your existing CSS */

/* Desktop language button */
.lang-btn {
    background: #0072ff;
    color: white;
    height: 40px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.lang-btn:hover {
    background: #00c6ff;
}

/* Mobile controls container */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 10px;
}

/* Mobile language button */
.lang-btn-mobile {
    background: #0072ff;
    color: white;
    height: 32px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.lang-btn-mobile:hover {
    background: #00c6ff;
}

/* Hide mobile language switch in desktop view */
.lang-switch-mobile {
    display: none;
}

iframe {
    width: 60%;
    height: 600px
}

/* Handle responsive behavior */
@media (max-width: 768px) {
    iframe {
        width: 100%;
    }

    /* Show mobile controls */
    .mobile-controls {
        display: flex;
    }

    /* Show mobile language switch */
    .lang-switch-mobile {
        display: block;
    }

    /* Hide desktop language switch in dropdown menu */
    .nav-links .lang-switch {
        display: none;
    }

    /* Make hamburger part of mobile controls */
    .hamburger {
        margin-left: 5px;
    }
}

/* Partners Section */
.partners-section {
    padding: 100px 5% 80px;
    background: #fff;
}

.partners-section .section-header h2 {
    text-align: center;
    font-size: 60px;
    font-weight: 50;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.4;
}

.partners-section .section-header p {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    max-width: 70%;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* Stats Section */
.stats-section {
    padding: 100px 5% 80px;
    background: white;
}

.stats-section {
    text-align: center;
}

.stats-section h1 {

    font-weight: 400;
    font-size: 40px;
}

.stats-section .section-header h2 {
    text-align: center;
    font-size: 60px;
    font-weight: 50;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.4;
}

.stats-section .section-header p {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    max-width: 70%;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}



.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}


/* Tab-4 Chatbot Preview Styles */
.chatbot-preview {
    background: white;
    border-radius: 20px;
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: chatbotFloat 6s ease-in-out infinite;
}

@keyframes chatbotFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-4px) rotate(0deg);
    }

    75% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
}

.chat-header {
    background: linear-gradient(135deg, #ff0066, #9900ff);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.bot-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: botPulse 2s ease-in-out infinite;
}

@keyframes botPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.bot-status {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.chat-messages {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #f8fafc;
}

.chat-messages::-webkit-scrollbar {
    display: none;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    animation: messageSlideIn 0.5s ease-out forwards;
    position: relative;
}

.message:nth-child(1) {
    animation-delay: 0.5s;
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
}

.message:nth-child(2) {
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    color: white;
    border: none;
    align-self: flex-end;
}

.message:nth-child(3) {
    animation-delay: 2.5s;
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing indicator animation */
.message::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 12px;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: typingDots 1.5s ease-in-out infinite;
}

.message:nth-child(1)::after {
    animation-delay: 1s;
}

.message:nth-child(2)::after {
    animation-delay: 2s;
}

.message:nth-child(3)::after {
    animation-delay: 3s;
}

@keyframes typingDots {

    0%,
    60%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {

    .partners-section .section-header h2,
    .stats-section .section-header h2,
    .features-title,
    .benefits-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .partner-card {
        padding: 30px 20px;
    }

    .partner-logo {
        width: 60px;
        height: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

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

    .chatbot-preview {
        width: 300px;
        height: 350px;
    }

}

/* AI Agents Animations */


/* Customer Support Animation */
.customer-support-animation {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-chat {
    background: white;
    border-radius: 20px;
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: chatFloat 4s ease-in-out infinite;
}

@keyframes chatFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.call-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.agent-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: agentPulse 2s ease-in-out infinite;
}

.agent-info {
    flex: 1;
}

.agent-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.agent-status {
    font-size: 12px;
    color: #a7f3d0;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes agentPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes statusBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.chat-messages {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    background: #f8fafc;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    animation: messageSlideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

.agent-message {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
    animation-delay: 0.5s;
}

.customer-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    align-self: flex-end;
    animation-delay: 1.5s;
}

.message-time {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
    text-align: right;
}

.agent-message .message-time {
    text-align: left;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sales AI Animation */
.sales-ai-animation {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-call-interface {
    background: white;
    border-radius: 20px;
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: phonePulse 3s ease-in-out infinite;
}

@keyframes phonePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    }
}

.call-header {
    background: linear-gradient(135deg, #ff0066, #9900ff);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.caller-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: callerPulse 2s ease-in-out infinite;
}

.caller-info {
    flex: 1;
}

.caller-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.call-status {
    font-size: 12px;
    color: #fbbf24;
    animation: callStatusBlink 1.5s ease-in-out infinite;
}

@keyframes callerPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

@keyframes callStatusBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.call-timeline {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.call-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #ff0066;
    animation: stepProgress 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.call-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 102, 0.1), transparent);
    animation: stepShimmer 3s ease-in-out infinite;
}

.step-1 {
    animation-delay: 0s;
}

.step-2 {
    animation-delay: 0.7s;
}

.step-3 {
    animation-delay: 1.4s;
}

.call-step i {
    font-size: 20px;
    color: #ff0066;
}

.call-step span {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

@keyframes stepProgress {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.8;
    }

    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

@keyframes stepShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.call-metrics {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.metric {
    text-align: center;
    animation: metricPulse 2s ease-in-out infinite;
}

.metric-1 {
    animation-delay: 0s;
}

.metric-2 {
    animation-delay: 1s;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ff0066;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

@keyframes metricPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Internal AI Animation */
.internal-ai-animation {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employee-dashboard {
    background: white;
    border-radius: 20px;
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: dashboardFloat 5s ease-in-out infinite;
}

@keyframes dashboardFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-6px) rotate(0.3deg);
    }

    50% {
        transform: translateY(-3px) rotate(0deg);
    }

    75% {
        transform: translateY(-9px) rotate(-0.3deg);
    }
}

.dashboard-header {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.ai-assistant-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: assistantPulse 2s ease-in-out infinite;
}

.assistant-info {
    flex: 1;
}

.assistant-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.assistant-status {
    font-size: 12px;
    color: #c4b5fd;
    animation: assistantStatusBlink 2s ease-in-out infinite;
}

@keyframes assistantPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes assistantStatusBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.task-requests {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8fafc;
}

.request-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    animation: requestSlideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
    position: relative;
    overflow: hidden;
}

.request-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: requestShimmer 3s ease-in-out infinite;
}

.request-item:nth-child(1) {
    animation-delay: 0.5s;
}

.request-item:nth-child(2) {
    animation-delay: 1s;
}

.request-item:nth-child(3) {
    animation-delay: 1.5s;
}

.request-item i {
    color: #6366f1;
    font-size: 16px;
}

.request-item span {
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

@keyframes requestSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes requestShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.automation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.action-bubble {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    animation: actionComplete 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.action-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: actionRipple 2s ease-in-out infinite;
}

.action-1 {
    animation-delay: 0s;
}

.action-2 {
    animation-delay: 0.7s;
}

.action-3 {
    animation-delay: 1.4s;
}

@keyframes actionComplete {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes actionRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Design for AI Agents */
@media (max-width: 768px) {

    .data-analysis-animation,
    .knowledge-search-animation,
    .customer-support-animation,
    .sales-ai-animation,
    .internal-ai-animation {
        height: 350px;
    }

    .report-generation {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .search-interface,
    .support-chat,
    .phone-call-interface,
    .employee-dashboard {
        width: 300px;
        height: 350px;
    }

    .knowledge-graph {
        display: none;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

}

/* Read More Button Styling */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.read-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Pain Points Section */
.pain-points-section {
    padding: 100px 5% 80px;
    background: #f8fafc;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-point-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pain-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pain-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff0066, #9900ff);
}

.pain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.pain-point-card:hover .pain-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
}

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

.pain-point-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cost-highlight {
    background: linear-gradient(135deg, #ff0066, #9900ff);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* ROI Section */
.roi-section {
    padding: 100px 5% 80px;
    background: white;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.roi-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.roi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.roi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff0066, #9900ff);
}

.roi-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.roi-card:hover .roi-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
}

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

.roi-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff0066;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Animation Components for Accounting Pages */
.invoice-processing-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.invoice-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invoice-item {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #475569;
    animation: slideInLeft 2s ease-in-out infinite;
}

.invoice-item:nth-child(2) {
    animation-delay: 0.5s;
}

.invoice-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes slideInLeft {

    0%,
    100% {
        transform: translateX(-20px);
        opacity: 0.7;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

.processing-arrow {
    font-size: 2rem;
    color: #ff0066;
    animation: pulse 2s infinite;
}

.processed-data {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-item {
    background: linear-gradient(135deg, #ff0066, #9900ff);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    animation: slideInRight 2s ease-in-out infinite;
}

.data-item:nth-child(2) {
    animation-delay: 0.5s;
}

.data-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes slideInRight {

    0%,
    100% {
        transform: translateX(20px);
        opacity: 0.7;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

.report-generation-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.report-preview {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    min-width: 250px;
}

.report-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.report-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 0.5rem;
}

.chart-bar {
    background: linear-gradient(135deg, #ff0066, #9900ff);
    border-radius: 4px 4px 0 0;
    width: 30px;
    animation: chartGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(2) {
    animation-delay: 0.3s;
}

.chart-bar:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes chartGrow {

    0%,
    100% {
        transform: scaleY(0.8);
    }

    50% {
        transform: scaleY(1.2);
    }
}

.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.workflow-step {
    background: #f8fafc;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #475569;
    text-align: center;
    min-width: 120px;
    animation: workflowPulse 3s ease-in-out infinite;
}

.workflow-step:nth-child(3) {
    animation-delay: 1s;
}

.workflow-step:nth-child(5) {
    animation-delay: 2s;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #ff0066;
    animation: pulse 2s infinite;
}

@keyframes workflowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.compliance-monitor {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.compliance-item {
    background: #f0fdf4;
    color: #166534;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    font-size: 0.9rem;
    animation: complianceCheck 2s ease-in-out infinite;
}

.compliance-item:nth-child(2) {
    animation-delay: 0.5s;
}

.compliance-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes complianceCheck {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

.invoice-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.flow-step {
    background: #f8fafc;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #475569;
    text-align: center;
    min-width: 200px;
    animation: flowStep 3s ease-in-out infinite;
}

.flow-step:nth-child(3) {
    animation-delay: 1s;
}

.flow-step:nth-child(5) {
    animation-delay: 2s;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #ff0066;
    animation: pulse 2s infinite;
}

@keyframes flowStep {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.report-preview {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    min-width: 250px;
}

.report-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.report-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #475569;
    animation: metricUpdate 2s ease-in-out infinite;
}

.metric:nth-child(2) {
    animation-delay: 0.5s;
}

.metric:nth-child(3) {
    animation-delay: 1s;
}

@keyframes metricUpdate {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {

    .pain-points-grid,
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pain-point-card,
    .roi-card {
        padding: 2rem 1.5rem;
    }

    .invoice-processing-animation,
    .workflow-diagram {
        flex-direction: column;
        gap: 1rem;
    }

    .invoice-stack,
    .processed-data {
        width: 100%;
    }

    .workflow-step,
    .flow-step {
        min-width: 100%;
    }
}


.visitor-id-pricing-section {
    background: black;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.visitor-id-pricing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.visitor-id-pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.visitor-id-pricing-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;

}

.visitor-id-pricing-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Toggle Switch */
.visitor-id-pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.visitor-id-pricing-toggle-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.visitor-id-pricing-toggle-label.active {
    color: white;
    transform: scale(1.05);
}

.visitor-id-pricing-toggle-switch {
    position: relative;
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.visitor-id-pricing-toggle-switch:hover {

    transform: scale(1.02);
}

.visitor-id-pricing-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.visitor-id-pricing-toggle-switch.annual .visitor-id-pricing-toggle-slider {
    transform: translateX(40px);
}

.visitor-id-pricing-savings-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #0072ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 12px;
    opacity: 0;
    transform: scale(0.8) translateY(-5px);
    transition: all 0.3s ease;
}

.visitor-id-pricing-savings-badge.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Main Pricing Card */
.visitor-id-pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.visitor-id-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 32px 32px 0 0;
}

.visitor-id-pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.visitor-id-pricing-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #0072ff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.visitor-id-pricing-plan-name {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.visitor-id-pricing-plan-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.visitor-id-pricing-amount-container {
    margin-bottom: 48px;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitor-id-pricing-amount {
    display: flex;
    align-items: baseline;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.visitor-id-pricing-amount.hidden {
    opacity: 0;
    transform: translateY(20px);
}

.visitor-id-pricing-currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.visitor-id-pricing-price {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin: 0 8px;
}

.visitor-id-pricing-period {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.visitor-id-pricing-billing-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 12px;
    font-weight: 500;
}

.visitor-id-pricing-features {
    list-style: none;
    padding: 0;
    margin: 48px 0;
    text-align: left;
}

.visitor-id-pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.visitor-id-pricing-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.visitor-id-pricing-feature-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.visitor-id-pricing-button {
    width: 100%;
    padding: 20px 40px;
    background: black;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.visitor-id-pricing-guarantee {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 16px;
}

/* Animated background elements */
.visitor-id-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #32DDE3, #1C7A7D);
    animation: visitor-id-float 25s ease-in-out infinite;
}


@media (max-width: 768px) {
    .visitor-id-pricing-section {
        padding: 80px 0;
    }

    .visitor-id-pricing-container {
        padding: 0 20px;
    }

    .visitor-id-pricing-card {
        padding: 40px 30px;
    }

    .visitor-id-pricing-toggle-container {
        flex-direction: column;
        gap: 16px;
    }

    .visitor-id-pricing-price {
        font-size: 4rem;
    }
}

/* Subscription-specific styles */
.subscription-hero {
    margin-top: 90px;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.subscription-hero-content {
    max-width: 800px;
    z-index: 10;
}

.subscription-hero h1 {
    font-size: 60px;
    font-weight: 50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.subscription-hero h1 span {
    position: relative;
    display: inline-block;
}

.subscription-hero h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, #ff0066, #9900ff);
}

.subscription-hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.subscription-section {
    padding: 60px 5% 100px;
    background: #fff;
    position: relative;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 60px;
}

.billing-toggle span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.billing-toggle span.active {
    color: #000;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: linear-gradient(135deg, #ff0066, #9900ff);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-container {
    max-width: 550px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #32DDE3, #1C7A7D, #ff0066, #9900ff);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 102, 0.2);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.plan-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.price-container {
    margin-bottom: 40px;
    position: relative;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 10px;
}

.currency {
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

.price {
    font-size: 72px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: #666;
}

.original-price {
    text-align: center;
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.savings-text {
    text-align: center;
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 600;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 12px;
}

.feature-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.4;
    flex: 1;
}

.subscribe-button {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subscribe-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.subscribe-button:hover::before {
    opacity: 1;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
}

.money-back {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.money-back i {
    color: #10b981;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.trust-badge i {
    font-size: 1.2rem;
    color: #32DDE3;
}

.faq-section {
    padding: 80px 5% 100px;
    background: #f9fafb;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.faq-header p {
    font-size: 1.2rem;
    color: #555;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question i {
    color: #ff0066;
    font-size: 1rem;
}

.faq-answer {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .subscription-hero h1 {
        font-size: 40px;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .price {
        font-size: 56px;
    }

    .plan-name {
        font-size: 28px;
    }

    .billing-toggle {
        flex-direction: column;
        gap: 15px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .faq-header h2 {
        font-size: 36px;
    }
}

/* Advanced Features Section Animations */

/* Process Timeline Animation */
.process-timeline {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInStep 0.6s ease forwards;
}

.timeline-step.step-1 {
    animation-delay: 0.2s;
}

.timeline-step.step-2 {
    animation-delay: 0.5s;
}

.timeline-step.step-3 {
    animation-delay: 0.8s;
}

.timeline-step.step-4 {
    animation-delay: 1.1s;
}

@keyframes slideInStep {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #ff0066;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.timeline-connector {
    width: 3px;
    height: 25px;
    background: linear-gradient(180deg, #ff0066 0%, #9900ff 100%);
    margin-left: 21px;
    opacity: 0;
    animation: fadeInConnector 0.4s ease forwards;
}

.connector-1 {
    animation-delay: 0.4s;
}

.connector-2 {
    animation-delay: 0.7s;
}

.connector-3 {
    animation-delay: 1s;
}

@keyframes fadeInConnector {
    to {
        opacity: 1;
    }
}

/* SaaS Dashboard Animation */
.saas-dashboard {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-window {
    background: #f8f9fb;
    border-radius: 12px;
    width: 450px;
    min-height: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.dash-header {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.dash-nav {
    display: flex;
    gap: 25px;
}

.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item.active {
    color: #ff0066;
    background: #fff0f6;
    font-weight: 600;
}

.user-profile {
    font-size: 24px;
    color: #ff0066;
}

.dash-stats {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dash-stat-card {
    background: white;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.dash-stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.dash-stat-card:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dash-stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.agents-table {
    margin: 0 20px 20px 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.table-header {
    padding: 15px 18px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f3f4f6;
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInRow 0.5s ease forwards;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.row-1 {
    animation-delay: 0.4s;
}

.table-row.row-2 {
    animation-delay: 0.6s;
}

.table-row.row-3 {
    animation-delay: 0.8s;
}

@keyframes slideInRow {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 140px;
}

.agent-info i {
    font-size: 18px;
    color: #ff0066;
    width: 36px;
    height: 36px;
    background: #fff0f6;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agent-info span {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.status-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge.running {
    background: #d1fae5;
    color: #065f46;
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    min-width: 80px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0066 0%, #9900ff 100%);
    border-radius: 10px;
    animation: progressAnimate 2s ease forwards;
}

.fill-1 {
    animation-delay: 0.5s;
}

.fill-2 {
    animation-delay: 0.7s;
}

.fill-3 {
    animation-delay: 0.9s;
}

@keyframes progressAnimate {
    0% {
        width: 0%;
    }

    100% {
        width: 85%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-container {
        max-width: 320px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .step-content h4 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

    .dashboard-window {
        width: 340px;
        min-height: 380px;
    }

    .dash-nav {
        gap: 15px;
    }

    .nav-item {
        font-size: 12px;
        padding: 6px 10px;
    }

    .dash-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .dash-stat-value {
        font-size: 26px;
    }

    .agents-table {
        margin: 0 15px 15px 15px;
    }

    .table-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .agent-info {
        min-width: auto;
    }

    .progress-bar {
        width: 100%;
        min-width: 100%;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .dashboard-window {
        width: 280px;
        min-height: 350px;
        margin: 0 auto;
    }

    .dash-nav {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item {
        font-size: 10px;
        padding: 5px 8px;
    }

    .dash-stats {
        padding: 10px;
        gap: 8px;
    }

    .dash-stat-card {
        padding: 10px;
    }

    .dash-stat-label {
        font-size: 11px;
    }

    .dash-stat-value {
        font-size: 22px;
    }

    .agents-table {
        margin: 0 10px 10px 10px;
    }

    .table-header {
        font-size: 12px;
        padding: 10px;
    }

    .table-row {
        padding: 10px;
        font-size: 11px;
    }

    .agent-info i {
        font-size: 14px;
    }

    .agent-info span {
        font-size: 11px;
    }

    .status-badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    .saas-dashboard {
        padding: 10px;
    }

    .feature-animation {
        padding: 10px;
    }
}

/* Details Page Styles */
.feature-detail-section {
    background: rgba(10, 15, 35, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-detail-section:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
}

.feature-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-detail-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-detail-header p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.feature-capabilities {
    margin-top: 30px;
}

.feature-capabilities h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
}

.feature-capabilities .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-capabilities .feature-list li {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid #667eea;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature-capabilities .feature-list li:hover {
    background: rgba(99, 102, 241, 0.2);
    border-left-color: #764ba2;
    transform: translateX(10px);
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.5) 50%, transparent 100%);
    margin: 60px 0;
}

/* Responsive for details page */
@media (max-width: 768px) {
    .feature-detail-section {
        padding: 30px 20px;
    }

    .feature-detail-header h2 {
        font-size: 28px;
    }

    .feature-detail-header p {
        font-size: 16px;
    }

    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .feature-capabilities h3 {
        font-size: 20px;
    }

    .feature-capabilities .feature-list li {
        font-size: 14px;
        padding: 15px 20px;
    }
}

/* Dashboard spacing fix for mobile */
@media (max-width: 768px) {
    .dashboard-mobile-spacing {
        margin-top: -100px;
        margin-bottom: 200px;
    }
}

/* ==========================================
   AI Agents by Department Section
   ========================================== */

.department-agents-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.department-agents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(153, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto 80px;
    position: relative;
    z-index: 1;
}

.department-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0066, #9900ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.department-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 0, 102, 0.2);
}

.department-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.department-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.department-card:hover .department-icon::before {
    width: 100px;
    height: 100px;
}

.department-card:hover .department-icon {
    transform: scale(1.1);
}

/* Department-specific icon gradients */
.sales-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.accounting-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.marketing-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.support-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.hr-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.operations-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.legal-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.it-icon {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
}

.compliance-icon {
    background: linear-gradient(135deg, #0acffe 0%, #495aff 100%);
}

.data-icon {
    background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
}

.department-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.department-card:hover h3 {
    background: linear-gradient(135deg, #ff0066, #9900ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.department-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.department-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.department-features li {
    color: #444;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.department-features li:hover {
    border-left-color: #ff0066;
    padding-left: 15px;
    background: rgba(255, 0, 102, 0.05);
}

.department-features li i {
    color: #10b981;
    font-size: 12px;
    min-width: 14px;
}

.department-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(153, 0, 255, 0.1));
    color: #9900ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(153, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.department-card:hover .stat-highlight {
    background: linear-gradient(135deg, #ff0066, #9900ff);
    color: white;
    transform: scale(1.05);
}

.department-cta {
    text-align: center;
    max-width: 700px;
    margin: 80px auto 0;
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.department-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.department-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.department-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 15px 35px;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.department-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.department-card:nth-child(1) {
    animation-delay: 0.1s;
}

.department-card:nth-child(2) {
    animation-delay: 0.2s;
}

.department-card:nth-child(3) {
    animation-delay: 0.3s;
}

.department-card:nth-child(4) {
    animation-delay: 0.4s;
}

.department-card:nth-child(5) {
    animation-delay: 0.5s;
}

.department-card:nth-child(6) {
    animation-delay: 0.6s;
}

.department-card:nth-child(7) {
    animation-delay: 0.7s;
}

.department-card:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .department-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .department-agents-section {
        padding: 60px 5%;
    }

    .department-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto 60px;
    }

    .department-card {
        padding: 30px 25px;
    }

    .department-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .department-card h3 {
        font-size: 20px;
    }

    .department-description {
        font-size: 14px;
        min-height: auto;
    }

    .department-features li {
        font-size: 13px;
    }

    .department-cta {
        padding: 40px 30px;
        margin: 60px auto 0;
    }

    .department-cta h3 {
        font-size: 24px;
    }

    .department-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .department-agents-section {
        padding: 40px 4%;
    }

    .department-card {
        padding: 25px 20px;
    }

    .department-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .department-cta {
        padding: 30px 20px;
    }

    .department-cta h3 {
        font-size: 20px;
    }

    .department-cta .cta-button {
        font-size: 14px;
        padding: 12px 25px;
    }
}

/* AI Capabilities Section - Creative Network Design */
.ai-capabilities-section {
    padding: 120px 5% 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.ai-capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(153, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}



.capabilities-network {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 800px;
    margin: 4rem auto 0;
}

/* Central Hub */
.capability-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-core {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 0 60px rgba(255, 0, 102, 0.6),
        0 0 100px rgba(153, 0, 255, 0.4);
    animation: hubPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hub-core i {
    font-size: 2.5rem;
    color: white;
}

.ai-network-icon {
    width: 60px;
    height: 60px;
    color: white;
    stroke: white;
}

.hub-core span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.hub-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 0, 102, 0.4);
    border-radius: 50%;
    animation: pulseExpand 3s ease-out infinite;
}

.pulse-2 {
    animation-delay: 1.5s;
}

@keyframes hubPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Capability Nodes */
.capability-node {
    position: absolute;
    width: 200px;
    z-index: 5;
}

.node-connector {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(255, 0, 102, 0.6) 0%,
            rgba(153, 0, 255, 0.6) 100%);
    transform-origin: left center;
    animation: connectorPulse 3s ease-in-out infinite;
}

@keyframes connectorPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.node-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.node-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(153, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.node-content:hover::before {
    opacity: 1;
}

.node-content:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 102, 0.4);
    box-shadow: 0 20px 60px rgba(255, 0, 102, 0.3);
}

.node-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.node-icon i {
    font-size: 1.5rem;
    color: white;
}

.node-content:hover .node-icon {
    transform: rotate(10deg) scale(1.1);
}

.node-content h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.node-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Node Positions - Recalculated for Better Alignment */
/* Top Center */
.node-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.node-1 .node-connector {
    width: 250px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: top center;
}

/* Top Right */
.node-2 {
    top: 22%;
    right: 10%;
}

.node-2 .node-connector {
    width: 235px;
    top: 50%;
    right: 100%;
    transform: translateY(-50%) rotate(-37deg);
    transform-origin: right center;
}

/* Bottom Right */
.node-3 {
    top: 70%;
    right: 10%;
    left: auto;
}

.node-3 .node-connector {
    width: 235px;
    top: 50%;
    right: 100%;
    transform: translateY(-50%) rotate(48deg);
    transform-origin: right center;
}

/* Bottom Left */
.node-4 {
    top: 70%;
    left: 10%;
}

.node-4 .node-connector {
    width: 235px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) rotate(-48deg);
    transform-origin: left center;
}

/* Top Left */
.node-5 {
    top: 22%;
    left: 10%;
}

.node-5 .node-connector {
    width: 235px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) rotate(37deg);
    transform-origin: left center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .capabilities-network {
        height: 700px;
    }

    .capability-node {
        width: 180px;
    }

    .node-1 .node-connector {
        width: 200px;
    }

    .node-2 .node-connector,
    .node-5 .node-connector {
        width: 220px;
    }

    .node-3 .node-connector,
    .node-4 .node-connector {
        width: 240px;
    }

    .node-2,
    .node-5 {
        top: 22%;
    }

    .node-3,
    .node-4 {
        top: 70%;
    }
}

@media (max-width: 1024px) {
    .capabilities-network {
        height: 650px;
    }

    .capability-node {
        width: 160px;
    }

    .node-content {
        padding: 1rem;
    }

    .node-content h3 {
        font-size: 0.95rem;
    }

    .node-content p {
        font-size: 0.75rem;
    }

    /* Connectors adjusted for smaller scale */
    .node-1 .node-connector {
        width: 180px;
    }

    .node-2 .node-connector,
    .node-5 .node-connector {
        width: 180px;
    }

    .node-3 .node-connector,
    .node-4 .node-connector {
        width: 200px;
    }

    .node-2,
    .node-5 {
        top: 20%;
    }

    .node-3,
    .node-4 {
        top: 72%;
    }
}

@media (max-width: 768px) {
    .ai-capabilities-section {
        padding: 80px 5% 60px;
    }

    .capabilities-network {
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
    }

    .capability-hub {
        position: static;
        transform: none;
        margin: 0 auto 3rem;
    }

    .hub-core {
        width: 120px;
        height: 120px;
    }

    .ai-network-icon {
        width: 50px;
        height: 50px;
    }

    .capability-node {
        position: static;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        transform: none;
    }

    .node-connector {
        display: none;
    }

    .node-content {
        background: rgba(255, 255, 255, 0.08);
        padding: 1.5rem 1.25rem;
    }

    .node-content h3 {
        font-size: 1.1rem;
    }

    .node-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ai-capabilities-section {
        padding: 60px 4% 50px;
    }

    .hub-core {
        width: 100px;
        height: 100px;
    }

    .hub-core i {
        font-size: 2rem;
    }

    .ai-network-icon {
        width: 45px;
        height: 45px;
    }

    .hub-core span {
        font-size: 0.8rem;
    }

    .node-content {
        padding: 1.25rem 1rem;
    }

    .node-content h3 {
        font-size: 1rem;
    }

    .node-icon {
        width: 45px;
        height: 45px;
    }

    .node-icon i {
        font-size: 1.25rem;
    }
}

/* AI Governance Section */
.governance-section {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.governance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 102, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(153, 0, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.governance-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.governance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.governance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 0, 102, 0.1);
}

.governance-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff0066;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.governance-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0066, #9900ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.governance-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.governance-card:hover .governance-icon::before {
    opacity: 1;
}

.governance-card:hover .governance-icon i {
    color: white;
    transform: scale(1.1);
}

.governance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.governance-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.governance-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.governance-item i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.governance-item span {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.governance-card:hover .governance-item i {
    color: #ff0066;
    transform: scale(1.1);
}

.governance-card:hover .governance-item span {
    color: #475569;
}

/* Responsive Design for Governance Section */
@media (max-width: 1024px) {
    .governance-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .governance-section {
        padding: 60px 5% 50px;
    }

    .governance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .governance-card {
        padding: 2rem 1.5rem;
    }

    .governance-card h3 {
        font-size: 1.3rem;
    }

    .governance-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .governance-section {
        padding: 40px 4%;
    }

    .governance-card {
        padding: 1.5rem 1.25rem;
    }

    .governance-card h3 {
        font-size: 1.2rem;
    }

    .governance-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .governance-item span {
        font-size: 0.9rem;
    }
}


.ai-capabilities-section .section-header h2,
.ai-capabilities-section .section-header p {
    color: white !important;
}