/* Unique Base Styles */
:root {
    --mobileapp-primary: #6c5ce7;
    --mobileapp-secondary: #a29bfe;
    --mobileapp-accent: #fd79a8;
    --mobileapp-dark: #2d3436;
    --mobileapp-light: #f5f6fa;
    --mobileapp-text: #2d3436;
    --mobileapp-text-light: #636e72;
    --mobileapp-bg-gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--mobileapp-text);
    background-color: var(--mobileapp-light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Unique Navigation */
.mobileapp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 20px rgba(108, 92, 231, 0.1);
}

.mobileapp-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mobileapp-dark);
    text-decoration: none;
}

.mobileapp-brand span {
    color: var(--mobileapp-primary);
}

.mobileapp-navlinks {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobileapp-navlink {
    color: var(--mobileapp-text);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.mobileapp-navlink:hover {
    color: var(--mobileapp-primary);
}

.mobileapp-navlink:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--mobileapp-primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.mobileapp-navlink:hover:after {
    width: 100%;
}

.mobileapp-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--mobileapp-dark);
    cursor: pointer;
}

/* Unique Hero Section */
.mobileapp-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mobileapp-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--mobileapp-bg-gradient);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: -1;
}

.mobileapp-hero-content {
    max-width: 600px;
    color: white;
}

.mobileapp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mobileapp-title-line {
    display: block;
}

.mobileapp-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.mobileapp-hero-buttons {
    display: flex;
    gap: 15px;
}

.mobileapp-primary-btn, .mobileapp-secondary-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.mobileapp-primary-btn {
    background: white;
    color: var(--mobileapp-primary);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.mobileapp-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

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

.mobileapp-secondary-btn:hover {
    background: white;
    color: var(--mobileapp-primary);
    transform: translateY(-3px);
}

.mobileapp-hero-devices {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: -1;
}

.mobileapp-phone, .mobileapp-tablet {
    position: absolute;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.mobileapp-phone {
    width: 250px;
    height: 500px;
}

.mobileapp-tablet {
    width: 350px;
    height: 450px;
}

.mobileapp-device-1 {
    top: 20%;
    right: 20%;
    transform: rotate(-10deg);
}

.mobileapp-device-2 {
    top: 40%;
    right: 10%;
    transform: rotate(5deg);
}

.mobileapp-device-3 {
    top: 15%;
    right: 5%;
    transform: rotate(15deg);
}

.mobileapp-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.mobileapp-device-1 .mobileapp-screen {
    background-image: url('https://img.freepik.com/free-vector/gradient-mobile-app-interface_23-2149028251.jpg');
}

.mobileapp-device-2 .mobileapp-screen {
    background-image: url('https://img.freepik.com/free-vector/gradient-ui-ux-background_23-2149052117.jpg');
}

.mobileapp-device-3 .mobileapp-screen {
    background-image: url('https://img.freepik.com/free-vector/app-development-banner_33099-1720.jpg');
}

/* Unique Stats Section */
.mobileapp-stats {
    padding: 80px 0;
    background: white;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

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

.mobileapp-stat-item {
    text-align: center;
}

.mobileapp-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--mobileapp-primary);
    margin-bottom: 10px;
}

.mobileapp-stat-label {
    font-size: 1.1rem;
    color: var(--mobileapp-text-light);
}

/* Unique Section Styles */
.mobileapp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mobileapp-section-tag {
    display: inline-block;
    background: var(--mobileapp-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.mobileapp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mobileapp-dark);
    margin-bottom: 15px;
}

.mobileapp-section-desc {
    font-size: 1.1rem;
    color: var(--mobileapp-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Unique Services Section */
.mobileapp-services {
    padding: 100px 0;
    background: var(--mobileapp-light);
}

.mobileapp-services-tabs {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mobileapp-tab-buttons {
    display: flex;
    border-bottom: 1px solid #eee;
}

.mobileapp-tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--mobileapp-text-light);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.mobileapp-tab-btn.active {
    color: var(--mobileapp-primary);
}

.mobileapp-tab-btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--mobileapp-primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.mobileapp-tab-btn.active:after {
    width: 100%;
}

.mobileapp-tab-contents {
    padding: 40px;
}

.mobileapp-tab-content {
    display: none;
    align-items: center;
    gap: 40px;
}

.mobileapp-tab-content.active {
    display: flex;
}

.mobileapp-tab-left {
    flex: 1;
}

.mobileapp-tab-right {
    flex: 1;
}

.mobileapp-tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--mobileapp-dark);
}

.mobileapp-tab-content p {
    color: var(--mobileapp-text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.mobileapp-feature-list {
    list-style: none;
}

.mobileapp-feature-list li {
    margin-bottom: 10px;
    color: var(--mobileapp-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobileapp-feature-list i {
    color: var(--mobileapp-primary);
}

.mobileapp-tab-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Unique Process Section */
.mobileapp-process {
    padding: 100px 0;
    background: white;
}

.mobileapp-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.mobileapp-process-step {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s;
}

.mobileapp-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.1);
}

.mobileapp-step-icon {
    width: 80px;
    height: 80px;
    background: var(--mobileapp-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.mobileapp-process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--mobileapp-dark);
}

.mobileapp-process-step p {
    color: var(--mobileapp-text-light);
}

/* Unique Features Section */
.mobileapp-features {
    padding: 100px 0;
    background: var(--mobileapp-light);
}

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

.mobileapp-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.mobileapp-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.1);
}

.mobileapp-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--mobileapp-secondary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.mobileapp-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--mobileapp-dark);
}

.mobileapp-feature-card p {
    color: var(--mobileapp-text-light);
}

/* Unique Showcase Section */
.mobileapp-showcase {
    padding: 100px 0;
    background: white;
}

.mobileapp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mobileapp-showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.mobileapp-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mobileapp-showcase-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 92, 231, 0.9);
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: bottom 0.5s;
}

.mobileapp-showcase-item:hover .mobileapp-showcase-overlay {
    bottom: 0;
}

.mobileapp-showcase-item:hover img {
    transform: scale(1.1);
}

.mobileapp-showcase-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mobileapp-showcase-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.mobileapp-showcase-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.mobileapp-showcase-btn:hover {
    gap: 15px;
}

/* Unique FAQ Section */
.mobileapp-faq {
    padding: 100px 0;
    background: var(--mobileapp-light);
}

.mobileapp-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.mobileapp-accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mobileapp-accordion-btn {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mobileapp-dark);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.mobileapp-accordion-btn:hover {
    color: var(--mobileapp-primary);
}

.mobileapp-accordion-btn i {
    transition: transform 0.3s;
}

.mobileapp-accordion-btn.active i {
    transform: rotate(45deg);
}

.mobileapp-accordion-content {
    padding: 0 20px;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobileapp-accordion-content p {
    padding: 0 0 20px;
    color: var(--mobileapp-text-light);
}

/* Unique Testimonials Section */
.mobileapp-testimonials {
    padding: 100px 0;
    background: white;
}

.mobileapp-testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.mobileapp-testimonial-slide {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mobileapp-testimonial-content {
    text-align: center;
}

.mobileapp-testimonial-quote {
    font-size: 2rem;
    color: var(--mobileapp-secondary);
    margin-bottom: 20px;
}

.mobileapp-testimonial-content p {
    font-size: 1.1rem;
    color: var(--mobileapp-text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.mobileapp-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mobileapp-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mobileapp-testimonial-author-info h4 {
    font-size: 1.2rem;
    color: var(--mobileapp-dark);
    margin-bottom: 5px;
}

.mobileapp-testimonial-author-info span {
    font-size: 0.9rem;
    color: var(--mobileapp-text-light);
}

/* Unique Blog Section */
.mobileapp-blog {
    padding: 100px 0;
    background: var(--mobileapp-light);
}

.mobileapp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mobileapp-blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.mobileapp-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.1);
}

.mobileapp-blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mobileapp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mobileapp-blog-card:hover .mobileapp-blog-img img {
    transform: scale(1.1);
}

.mobileapp-blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--mobileapp-primary);
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
}

.mobileapp-blog-date span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.mobileapp-blog-content {
    padding: 25px;
}

.mobileapp-blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--mobileapp-dark);
}

.mobileapp-blog-content p {
    color: var(--mobileapp-text-light);
    margin-bottom: 20px;
}

.mobileapp-blog-link {
    color: var(--mobileapp-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.mobileapp-blog-link:hover {
    gap: 15px;
}

/* Unique Responsive Styles */
@media (max-width: 1024px) {
    .mobileapp-hero-title {
        font-size: 3rem;
    }
    
    .mobileapp-hero-devices {
        width: 40%;
    }
    
    .mobileapp-device-1 {
        right: 10%;
    }
    
    .mobileapp-device-2 {
        right: 0;
    }
    
    .mobileapp-device-3 {
        right: -5%;
    }
    
    .mobileapp-tab-content {
        flex-direction: column;
    }
    
    .mobileapp-tab-left, .mobileapp-tab-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobileapp-navlinks {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobileapp-navlinks.active {
        display: flex;
    }
    
    .mobileapp-menu-btn {
        display: block;
    }
    
    .mobileapp-hero {
        text-align: center;
        padding-top: 120px;
    }
    
    .mobileapp-hero-content {
        margin: 0 auto;
    }
    
    .mobileapp-hero-buttons {
        justify-content: center;
    }
    
    .mobileapp-hero-devices {
        display: none;
    }
    
    .mobileapp-stats {
        margin-top: 0;
    }
    
    .mobileapp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobileapp-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .mobileapp-hero-title {
        font-size: 2.5rem;
    }
    
    .mobileapp-hero-buttons {
        flex-direction: column;
    }
    
    .mobileapp-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mobileapp-tab-buttons {
        flex-direction: column;
    }
    
    .mobileapp-tab-btn {
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    
    .mobileapp-process-steps {
        grid-template-columns: 1fr;
    }
    
    .mobileapp-showcase-grid, .mobileapp-blog-grid {
        grid-template-columns: 1fr;
    }
}