* {
    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);
}

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

.mobile-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;
}

.mobile-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;
}

.mobile-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;
}

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

.mobile-hero-subtext {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--light);
    pointer-events: none;
    span {
        color: orange;
        font-weight: 600;
        font-style: italic;
    }
}

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

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

.mobile-cta {
    background: var(--light);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
}
.mobile-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;
}

.mobile-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;
}

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

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


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

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

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

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

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

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

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

    .mobile-hero-header {
        padding: 1rem;
    }
}

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

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

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

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

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

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

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

.mobile-app-features-image {
    overflow: visible;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

}

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

.mobile-app-features-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Mobile App Features Section */
@media (max-width: 943px) {
    .mobile-app-features-section {
        padding: 4rem 5%;
    }

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

    .mobile-app-features-content h2 {
        font-size: 2rem;
    }

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

    .mobile-app-feature-item {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .mobile-app-features-image {
        max-width: 100%;
        aspect-ratio: 9 / 16;
    }
}

/* Mobile Reviews Section - Black Background */
.mobile-reviews-section {
    background: var(--dark);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

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

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

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

.mobile-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);
}

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

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

.mobile-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;
}

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

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

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

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

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

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

/* Responsive Design for Mobile Reviews Section */
@media (max-width: 943px) {
    .mobile-reviews-section {
        padding: 4rem 5%;
    }

    .mobile-reviews-heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .mobile-reviews-container {
        height: 500px;
    }

    .mobile-review-card {
        padding: 2rem 1.5rem;
    }

    .mobile-review-text {
        font-size: 1.2rem;
    }

    .mobile-review-author-name {
        font-size: 1rem;
    }

    .mobile-review-author-company {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .mobile-reviews-heading {
        font-size: 2rem;
    }

    .mobile-reviews-container {
        height: 450px;
    }

    .mobile-review-card {
        padding: 1.5rem;
    }

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

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

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

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

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

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

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

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

.mobile-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;
}

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

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

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

/* Responsive Design for FAQ Section */
@media (max-width: 943px) {
    .mobile-faq-section {
        padding: 4rem 5%;
    }

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

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

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

@media (max-width: 576px) {
    .mobile-faq-heading {
        font-size: 2rem;
    }

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

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