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

:root {
    --primary: #0091ff;
    --dark: #000000;
    --light: #ffffff;
    --gray: #666;
    --card-bg: #fafafa;
}

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

body {
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background: var(--dark);
}

/* Web Hero Section */
.web-hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.web-hero-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
     background: var(--dark);
    background-image: 
        radial-gradient(circle at center, transparent 0%, var(--dark) 70%),
        linear-gradient(rgba(41, 43, 41, 0.7) .1em, transparent .1em), 
        linear-gradient(90deg, rgba(40, 43, 40, 0.7) .1em, transparent .1em);
    background-size: 100% 100%, 3em 3em, 3em 3em;
}

.web-hero-subtitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--light);
    margin-bottom: 1rem;
    pointer-events: none;
}

.web-hero-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
    pointer-events: none;
}

.web-hero-title {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--light);
    pointer-events: none;
}

.web-hero-subtext {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray);
    pointer-events: none;
}

.web-hero-subtext span {
    font-weight: 600;
    font-style: italic;
    color:var(--primary);
}

.web-laptop-canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.web-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    pointer-events: auto;
}

.web-cta {
    background: var(--light);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.web-cta:hover {
    transform: scale(1.05);
}

.web-learn-more {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 1s ease;
    overflow: hidden;
    will-change: transform;
    cursor: pointer;
}

.web-learn-more::before {
    content: '';
    inset: 0;
    height: 100%;
    width: 100%;
    background: white;
    position: absolute;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 1s ease;
    z-index: -1;
    will-change: clip-path;
}

.web-learn-more:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.web-learn-more:hover {
    color: black;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .web-hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 943px) {
    .web-hero-title {
        font-size: 3rem;
    }

    .web-hero-header {
        min-width:100%;
    }

    .web-hero-subtext {
        font-size: 1.1rem;
    }

    .web-hero-cta {
        flex-direction: column;
    }
    
    .web-cta {
        width: 100%;
    }
    
    .web-learn-more {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .web-hero-title {
        font-size: 2.5rem;
    }

    .web-hero-subtext {
        font-size: 1rem;
    }

    .web-hero-header {
        padding: 1rem;
    }
}
 .main {
            min-height: 100vh;
            width: 100%;
            display: grid;
            place-items: center;
            background:rgb(9,9,9);
            position: relative;
            /* background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%); */
        }
        .line-1 {
            height:1px;
            width: 100%;
            position: absolute;
            top:25%;
            background:#242638;
            z-index: 0;
        }
        .line-2 {
            height:100%;
            width: 1px;
            position: absolute;
            left:10%;
            background:#242638;
        }
        .line-3 {
            height:100%;
            width: 1px;
            position: absolute;
            right:10%;
            background:#242638;
        }

        .dashboard-container {
            height:850px;
            width:1200px;
            border-radius: 24px;
            background:black;
            border:1px solid rgb(20,20,20);
            display: flex;
            overflow: hidden;
            filter: blur(10px);
            opacity: 0.5;
            z-index: 100;
        }
 

        .skewed {
            transform: rotateX(-52deg) rotateZ(-43deg);
            transform-style: preserve-3d;
             box-shadow:
                -1px 0 28px 0 rgba(34, 33, 81, 0.01),
                28px 28px 28px 0 rgba(34, 33, 81, 0.25);
            transition:
                .4s ease-in-out transform,
                .4s ease-in-out box-shadow;
                  &:hover {
                    transform:
                    translate3d(0px, -16px, 0px)
                    rotateX(0deg)
                    rotateZ(0deg);
                    box-shadow:
                    -1px 0 28px 0 rgba(34, 33, 81, 0.01),
                    54px 54px 28px -10px rgba(34, 33, 81, 0.15);
                }
        }

        .dash-nav {
            width:100px;
            height:100%;
            border-radius: 24px 0px 0px 24px;
            border-right:1px solid #242638;
            background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(3, 3, 3) 75%, #242638 100%);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding-block:50px;
        }
        .nav-icon-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .active-dash-icon {
            background:rgba(255,255,255,0.1);
            height:50px;
            width:50px;
            border-radius: 50%;
            display: grid;
            place-items: center;
        }
        .dash-content {
            display: flex;
            flex-direction: column;
            gap:20px;
            padding:50px;
            width:100%;
        }

        .title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-width: 100%;
        }
        
        .crm-title {
            color: white;
            font-weight: 300;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
        }
        .add-task-btn {
            padding:10px;
            border:2px solid white;
            text-align: center;
            background-color: transparent;
            color: white;
            border-radius: 8px;
        }
        .icon-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .icon-container > svg {
            cursor: pointer;
        }

        .bento-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 20px;
            height: 100%;
            width: 100%;
        }

        .bento-item {
            background: #0f0f0f;
            border:1px solid #242638;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            overflow: hidden !important;
        }
         .bento-item {
            background:linear-gradient(rgb(0,0,0), rgb(3,3,3));
         }
        .bento-item:nth-child(1) {
          background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(3, 3, 3) 45%, #242638 100%);
        }
        .bento-item:nth-child(5), .bento-item:nth-child(7), .bento-item:nth-child(4) {
        background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgb(3, 3, 3) 35%, #242638 100%);

        }

        .to-left {
            background:linear-gradient(-45deg, rgb(0, 0, 0) 0%, rgb(3, 3, 3) 45%, #242638 100%)
        }

        .bento-item h3 {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
            font-weight: 500;
            font-family: "Bebas Neue", sans-serif;
            margin: 0;
        }

        .bento-item .value {
            color: white;
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
        }

        .bento-item .subtext {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        .change-positive {
            color: #4ade80;
        }

        .change-negative {
            color: #f87171;
        }

        .chart-large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .users-tall {
            grid-row: span 2;
        }

        .chart-container {
            flex: 1;
            position: relative;
            margin-top: 10px;
        }

        .line-chart {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .user-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        .user-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background:rgb(99, 102, 241);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .user-time {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.75rem;
        }

/* Web App Features Section */
.web-app-features-section {
    background: var(--light);
    padding: 8rem 5%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.web-app-features-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 15rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.web-app-features-content h2 {
    font-size: 4rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.web-app-features-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.web-app-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.web-app-feature-item {
    font-size: 1.05rem;
    color: var(--dark);
    padding-left: 2rem;
    position: relative;
}

.web-app-feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.web-app-features-image {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
        box-shadow:  5px 5px 10px #bebebe,
    -5px -5px 10px #ffffff;
}

.web-app-features-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
    transition: transform 400ms ease;
    display: block;
}

.web-app-features-image:hover img {
    transform: scale(1.05);
}
/* Web Reviews Section */
.web-reviews-section {
    background: var(--dark);
    padding: 8rem 5%;
    position: relative;
    min-height: 100vh;
}

.web-reviews-heading {
    font-size: 4rem;
    font-weight: 500;
    color: var(--light);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.web-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 600px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
}

.web-reviews-track {
    display: flex;
    gap: 3rem;
    height: 100%;
    position: relative;
}

.web-review-card {
    min-width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    filter: blur(10px);
    position: absolute;
    will-change: opacity filter;
    top: 0;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.web-review-card.active {
    opacity: 1;
    filter: blur(0px);
    position: relative;
    will-change: opacity filter;
}

.web-review-stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.web-review-text {
    font-size: 2.0rem;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 2rem;
    font-weight: 400;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
}

.web-review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.web-review-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.web-review-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.web-review-author-info {
    flex: 1;
}

.web-review-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.3rem;
}

.web-review-author-company {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Web FAQ Section */
.web-faq-section {
    background: var(--light);
    padding: 8rem 5%;
    position: relative;
    min-height: 110vh;
}

.web-faq-heading {
    font-size: 4rem;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.web-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.web-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.web-faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid #e0e0e0;
}

.web-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.web-faq-question {
    width: 100%;
    padding: 1.5rem 2rem 0.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.web-faq-answer {
    max-height: none;
    opacity: 1;
}

.web-faq-item.active .web-faq-answer {
    max-height: none;
    opacity: 1;
}

.web-faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
    padding: 0 2rem 1.5rem 2rem;
}

/* Responsive Design */
@media (max-width: 943px) {
    .web-app-features-section {
        padding: 4rem 5%;
    }

    .web-app-features-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .web-app-features-content h2 {
        font-size: 2.5rem;
    }

    .web-app-features-content p {
        font-size: 1rem;
    }

    .web-app-feature-item {
        font-size: 1rem;
    }

    .web-reviews-section {
        padding: 4rem 5%;
    }

    .web-reviews-heading {
        font-size: 2.5rem;
    }

    .web-review-text {
        font-size: 1.3rem;
    }

    .web-faq-section {
        padding: 4rem 5%;
    }

    .web-faq-heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .web-faq-question {
        padding: 1.2rem 1.5rem 0.4rem 1.5rem;
        font-size: 1rem;
    }

    .web-faq-answer p {
        font-size: 0.95rem;
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .web-app-features-content h2 {
        font-size: 2rem;
    }

    .web-reviews-heading,
    .web-faq-heading {
        font-size: 2rem;
    }

    .web-review-text {
        font-size: 1.1rem;
    }

    .web-review-stars {
        font-size: 1.3rem;
    }

    .web-faq-question {
        padding: 1rem 1.2rem 0.3rem 1.2rem;
        font-size: 0.95rem;
    }

    .web-faq-answer p {
        font-size: 0.9rem;
        padding: 0 1.2rem 1rem 1.2rem;
    }
}
