/* ============================================
   APP DEVELOPMENT SERVICE PAGE - FUTURISTIC NEON
   Unique premium effects, neon glow, 3D animations
   ============================================ */

/* ============================================
   BASE PAGE STYLES
   ============================================ */
.app-service-page {
    background: #050510;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION - FUTURISTIC NEON DESIGN
   ============================================ */
.app-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            #050510 0%,
            #0a0a20 30%,
            #0f0f2a 60%,
            #1a1a3a 100%);
    z-index: 0;
}

/* Neon Grid */
.neon-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    perspective: 1000px;
    transform: rotateX(60deg) translateY(-100px);
    transform-origin: center top;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 60px;
    }
}

/* Floating Phones */
.floating-phones {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.phone {
    position: absolute;
    width: 80px;
    height: 160px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
    animation: floatPhone 8s ease-in-out infinite;
}

.phone::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.phone-screen {
    position: absolute;
    top: 20px;
    left: 8px;
    right: 8px;
    bottom: 20px;
    background: linear-gradient(180deg, #0a0a1a 0%, #1e1e3a 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
}

.app-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b00 0%, #ffd700 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.app-lines span {
    display: block;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 4px;
}

.app-lines span:nth-child(1) {
    width: 40px;
}

.app-lines span:nth-child(2) {
    width: 30px;
}

.app-lines span:nth-child(3) {
    width: 35px;
}

.phone-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.phone-2 {
    top: 25%;
    right: 10%;
    animation-delay: -3s;
    transform: rotate(10deg);
}

.phone-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
    transform: rotate(-15deg);
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
    }

    50% {
        transform: translateY(-30px) rotate(var(--rotate, 0deg));
    }
}

/* Glow Orbs */
.glow-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-cyan {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-yellow {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.35) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
}

.orb-magenta {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Hero Content */
.hero-content-center {
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin: 0 auto;
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #0ff;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: pulseBadge 3s ease-in-out infinite;
}

.pulse-badge i {
    font-size: 18px;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(0, 255, 255, 0);
    }
}

.hero-mega-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -2px;
}

.typewriter-text {
    display: block;
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0;
    margin-bottom: 10px;
}

.neon-text {
    background: linear-gradient(135deg,
            #00ffff 0%,
            #00d4ff 25%,
            #ffd700 50%,
            #ffab00 75%,
            #ff6b00 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonShift 5s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

@keyframes neonShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.highlight-glow {
    color: #ffd700;
    position: relative;
}

.highlight-glow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-neon-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b00 0%, #ffab00 50%, #ffd700 100%);
    background-size: 200% 200%;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border-radius: 60px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(255, 107, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.3);
}

.btn-neon-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 20px 60px rgba(255, 107, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.btn-neon-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-plus {
    position: absolute;
    top: 0;
    right: -20px;
    font-size: 20px;
    font-weight: 700;
    color: #0ff;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.3), transparent);
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: rgba(0, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge-glow {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 107, 0, 0.1);
    color: #ffd700;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.gradient-text-yellow {
    background: linear-gradient(135deg, #ffd700 0%, #ffab00 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   APP TYPES SECTION
   ============================================ */
.section-app-types {
    padding: 120px 0;
    background: linear-gradient(180deg, #050510 0%, #0a0a20 100%);
    position: relative;
}

.app-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-type-card {
    perspective: 1000px;
}

.card-3d-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.app-type-card:hover .card-3d-inner {
    transform: translateY(-15px) rotateX(5deg);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 0, 0.1);
}

.card-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    opacity: 0.2;
}

.icon-bg-orange {
    background: linear-gradient(135deg, #ff6b00, #ffd700);
}

.icon-bg-cyan {
    background: linear-gradient(135deg, #00d4ff, #00ffff);
}

.icon-bg-magenta {
    background: linear-gradient(135deg, #ff0080, #ff66b2);
}

.icon-bg-green {
    background: linear-gradient(135deg, #00ff88, #00d477);
}

.icon-bg-blue {
    background: linear-gradient(135deg, #0066ff, #00aaff);
}

.icon-bg-yellow {
    background: linear-gradient(135deg, #ffd700, #ffab00);
}

.card-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    z-index: 1;
}

.app-type-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.app-type-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mini-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mini-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.mini-features li i {
    color: #ffd700;
    font-size: 10px;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    transition: left 0.8s ease;
}

.app-type-card:hover .card-shine {
    left: 100%;
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.section-platforms {
    padding: 120px 0;
    background: #080815;
}

.platforms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.platforms-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 35px;
}

.platform-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.platform-tab i {
    font-size: 24px;
}

.platform-tab:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.2);
}

.platform-tab.active {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.platform-tab.active i {
    color: #ffd700;
}

/* Platform Panels */
.platform-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.platform-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.platform-header i {
    font-size: 40px;
    color: #ffd700;
}

.platform-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.tech-stack {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex: 1;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.tech-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tech-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.platform-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.section-process {
    padding: 120px 0;
    background: linear-gradient(180deg, #080815 0%, #0a0a20 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 50px;
}

.process-line {
    display: none;
}

.process-step {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.step-marker {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ffd700;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-marker i {
    font-size: 28px;
    color: #0ff;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.section-features {
    padding: 120px 0;
    background: #050510;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.features-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 35px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.feature-icon i {
    font-size: 22px;
    color: #0ff;
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta-mega {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #1a0a2e 0%,
            #2d1b4e 40%,
            #4a0e4e 70%,
            #ff6b35 100%);
    z-index: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    top: -30%;
    left: 10%;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    bottom: -20%;
    right: 10%;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #fff;
    color: #1a0a2e;
    font-size: 16px;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-white-glow:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-mega-title {
        font-size: 50px;
    }

    .app-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .platforms-wrapper,
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .platform-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .app-hero {
        padding: 120px 0 80px;
    }

    .hero-mega-title {
        font-size: 36px;
    }

    .typewriter-text {
        font-size: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }

    .stat-divider {
        width: 100px;
        height: 1px;
    }

    .app-types-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .floating-phones {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .btn-neon-primary,
    .btn-glass {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-white-glow,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}