
/* ===== HERO SECTION ===== */
.hero-mobile {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    color: white;
    padding-top: 80px;
}

.hero-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(28, 77, 143, 0.3) 0%, transparent 30%),
            radial-gradient(circle at 80% 70%, rgba(237, 90, 47, 0.3) 0%, transparent 30%);
}

.hero-mobile .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-mobile-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, white 60%, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-mobile-title .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-mobile-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-secondary);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.3;
}

.hero-mobile-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%;
}

.hero-mobile-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}

.btn-animated {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-animated:hover::before {
    opacity: 1;
}

.btn-animated span {
    position: relative;
    z-index: 2;
}

.btn-animatedcn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.btn-animatedcn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ===== PHONE MOCKUP STYLES ===== */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 525px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 40px;
    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.5),
            inset 0 0 15px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border: 12px solid #0a0a0a;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    overflow: hidden;
    border-radius: 28px;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 80%);
    z-index: -1;
    filter: blur(10px);
}

/* Phone top elements */
.phone-top {
    position: absolute;
    top: 0px;
    right: 50%;
    transform: translate(50%, 0%);
    width: 35%;
    height: 18px;
    background-color: #111;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 2;
}

.phone-speaker {
    position: absolute;
    top: 2px;
    right: 50%;
    transform: translate(50%, 0%);
    width: 40%;
    height: 2px;
    border-radius: 2px;
    background-color: rgb(20, 20, 20);
}

.phone-camera {
    position: absolute;
    top: 6px;
    right: 84%;
    transform: translate(50%, 0%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.048);
}

.phone-camera::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: rgba(0, 0, 255, 0.212);
}

/* Phone side buttons */
.phone-btn {
    position: absolute;
    width: 2px;
}


.phone-btn2, .phone-btn3 {
    transform: scale(-1);
    left: -4px;
}

.phone-btn2, .phone-btn3 {
    height: 30px;
}

.phone-btn2 {
    top: 26%;
}

.phone-btn3 {
    top: 36%;
}

/* App Screen Styles */
.app-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
    position: relative;
}

.app-header {
    padding: 15px 20px;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-nav i {
    font-size: 1rem;
    opacity: 0.8;
}

.app-nav h3 {
    font-size: 1rem;
    font-weight: 600;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6e9f0 100%);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.stat-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--primary);
    font-size: 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 150px;
    position: relative;
    overflow: hidden;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.recent-activity h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(0,0,0,0.02);
    transform: translateX(5px);
}

.activity-icon {
    width: 36px;
    height: 36px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 0.9rem;
}

.activity-details {
    flex: 1;
}

.activity-title {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 3px;
    font-weight: 500;
}

.activity-time {
    font-size: 0.7rem;
    color: var(--text-light);
}

.activity-amount {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.app-footer {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.02);
}

.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 0.7rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    transition: all 0.3s ease;
}

.tab.active {
    color: var(--primary);
    position: relative;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

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

/* Floating App Icons */
.floating-app-icons {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.app-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(20px);
    animation: floatIn 0.5s ease-out forwards;
    animation-delay: var(--delay);
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    color: var(--secondary);
}

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

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-down {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    margin: -4px 0;
    animation: bounce 2s infinite;
}

.arrow-down.delay-1 {
    animation-delay: 0.2s;
}

.arrow-down.delay-2 {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* ===== SERVICES SECTION ===== */
.mobile-services {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.mobile-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 10% 20%, rgba(28, 77, 143, 0.05) 0%, transparent 20%),
            radial-gradient(circle at 90% 80%, rgba(237, 90, 47, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Space Grotesk", sans-serif;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

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

.mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mobile-service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.mobile-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.mobile-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(28, 77, 143, 0.2);
}

.mobile-service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(28, 77, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
    position: relative;
}

.service-icon .icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(28, 77, 143, 0.1);
    animation: pulse 3s infinite;
    z-index: -1;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    font-family: "Space Grotesk", sans-serif;
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-features {
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.feature:last-child {
    border-bottom: none;
}

.feature:hover {
    transform: translateX(5px);
    border-bottom-color: var(--primary);
}

.feature i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* ===== APP SHOWCASE SECTION ===== */
.app-showcase {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.app-process {
    display: grid;
    gap: 80px;
    margin-top: 60px;
    position: relative;
}

.app-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.1;
    border-radius: 2px;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.process-step:nth-child(even) .step-content {
    order: 2;
}

.process-step:nth-child(even) .step-visual {
    order: 1;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(28, 77, 143, 0.1);
    font-family: "Space Grotesk", sans-serif;
    position: absolute;
    top: -30px;
    left: -30px;
    line-height: 1;
    z-index: -1;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Space Grotesk", sans-serif;
    color: var(--text-color);
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.step-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Discovery Screen */
.discovery .app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6e9f0 100%);
}

.idea-bulb {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.discovery:hover .idea-bulb {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(237, 90, 47, 0.2);
}

.idea-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Design Screen */
.design .app-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #e6e9f0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.design-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.design-elements .element {
    background: white;
    border-radius: 10px;
    height: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.design:hover .element {
    transform: rotate(5deg);
}

.color-palette {
    display: flex;
    justify-content: space-between;
}

.color-palette .color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-palette .color:hover {
    transform: scale(1.1);
}

/* Development Screen */
.development .app-content {
    background: #1e1e1e;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-editor {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.editor-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #252526;
    border-bottom: 1px solid #333;
}

.editor-dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.editor-title {
    color: #888;
    font-size: 0.8rem;
    font-family: monospace;
}

.editor-body {
    padding: 15px;
    font-family: 'Courier New', monospace;
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow: hidden;
}

/* Testing Screen */
.testing .app-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6e9f0 100%);
    padding: 30px;
}

.test-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 5px;
    transition: width 1s ease;
}

.test-result {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.test-result i {
    margin-right: 10px;
}

.test-stats {
    display: flex;
    justify-content: space-around;
}

.test-stats .stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== APP FEATURES SECTION ===== */
.app-features {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card.active {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(28, 77, 143, 0.3);
}

.feature-card.active .feature-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.feature-card:hover:not(.active) {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(28, 77, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.feature-name {
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.feature-detail {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-detail h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: "Space Grotesk", sans-serif;
}

.feature-detail p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tech span {
    background: rgba(28, 77, 143, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(28, 77, 143, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(28, 77, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-family: "Space Grotesk", sans-serif;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== TECH STACK SECTION ===== */
.mobile-tech-stack {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.tech-stack-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-radius: 30px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.tab-btn.active {
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-btn.active::before {
    opacity: 1;
}

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

.tabs-content {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(28, 77, 143, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: rgba(28, 77, 143, 0.1);
}

.tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

/* ===== APP GALLERY SECTION ===== */
.app-gallery {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.gallery-slider {
    padding: 20px 0;
    overflow: hidden;
}

.app-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0;
}

.app-phones {
    position: relative;
    height: 500px;
}

.phone-mockup.left {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-5deg);
    z-index: 2;
}

.phone-mockup.right {
    position: absolute;
    right: 0;
    top: 50px;
    transform: rotate(5deg);
}

.app-details {
    padding: 20px;
}

.app-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: "Space Grotesk", sans-serif;
}

.app-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.app-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.app-stats .stat {
    text-align: center;
}

.app-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: "Space Grotesk", sans-serif;
}

.app-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.app-tech span {
    background: rgba(28, 77, 143, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-slide {
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    color: rgba(28, 77, 143, 0.1);
    z-index: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid rgba(28, 77, 143, 0.2);
}

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

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 30%),
            radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 30%);
    pointer-events: none;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 500px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Space Grotesk", sans-serif;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Space Grotesk", sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(28, 77, 143, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(28, 77, 143, 0.05) 0%, transparent 30%),
            radial-gradient(circle at 80% 70%, rgba(237, 90, 47, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Space Grotesk", sans-serif;
    color: var(--text-color);
}

.final-cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    grid-column: span 1;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
}

.footer-links {
    grid-column: span 1;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Space Grotesk", sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-link:hover {
    opacity: 1;
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-icon {
    width: 20px;
    margin-right: 15px;
    color: var(--secondary);
}

.footer-contact-text {
    flex: 1;
    opacity: 0.8;
}

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

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
    .hero-mobile-title {
        font-size: 3rem;
    }

    .features-container,
    .app-slide,
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-phones {
        height: 400px;
    }

    .phone-mockup.left,
    .phone-mockup.right {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 0 auto;
    }

    .phone-mockup.right {
        display: none;
    }

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

@media (max-width: 992px) {
    .hero-mobile .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-mobile-content {
        margin: 0 auto;
    }

    .hero-mobile-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-mobile-btns {
        justify-content: center;
    }

    .floating-app-icons {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(even) .step-visual {
        order: initial;
    }

    .step-visual {
        margin-top: 40px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 20px 0;
    }

    .nav-item:hover .mega-menu {
        display: grid;
    }

    .language-switcher {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-mobile-title {
        font-size: 2.5rem;
    }

    .mobile-service-card {
        padding: 30px 20px;
    }

    .testimonial-slide {
        padding: 30px 20px;
    }

    .cta-form {
        padding: 30px 20px;
    }

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

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-mobile-title {
        font-size: 2rem;
    }

    .hero-mobile-btns {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .mobile-services-grid {
        grid-template-columns: 1fr;
    }

    .app-stats {
        flex-direction: column;
        gap: 20px;
    }

    .chat-widget {
        width: calc(100% - 40px);
        right: 20px;
    }
}