/* Mobile-First Solutions Page - Enhanced Animations & UX */

/* Mobile Hero Section - Enhanced */
@media (max-width: 768px) {
    .solutions-hero {
        min-height: 100vh;
        padding: 80px 1rem 2rem;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    }

    /* Enhanced Mobile Background Animation */
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .animated-bg {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .bg-circle {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(38, 189, 239, 0.15), rgba(0, 212, 255, 0.08));
        animation: mobileFloat 15s ease-in-out infinite;
        filter: blur(1px);
    }

    .circle-1 {
        width: 150px;
        height: 150px;
        top: 15%;
        left: 10%;
        animation-delay: 0s;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
        top: 70%;
        right: 10%;
        animation-delay: 3s;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        left: 15%;
        animation-delay: 6s;
    }

    .circle-4 {
        width: 120px;
        height: 120px;
        top: 40%;
        right: 20%;
        animation-delay: 9s;
    }

    @keyframes mobileFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.4;
        }
        25% {
            transform: translateY(-20px) rotate(90deg) scale(1.1);
            opacity: 0.6;
        }
        50% {
            transform: translateY(-10px) rotate(180deg) scale(0.9);
            opacity: 0.8;
        }
        75% {
            transform: translateY(-30px) rotate(270deg) scale(1.05);
            opacity: 0.5;
        }
    }

    /* Mobile Hero Content */
    .hero-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .hero-text {
        animation: mobileFadeInUp 1.2s ease-out;
        width: 100%;
    }

    @keyframes mobileFadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(38, 189, 239, 0.25), rgba(0, 212, 255, 0.15));
        border: 1px solid rgba(38, 189, 239, 0.4);
        border-radius: 20px;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
        backdrop-filter: blur(15px);
        animation: mobilePulse 2s ease-in-out infinite;
    }

    @keyframes mobilePulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(38, 189, 239, 0.3);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 0 0 10px rgba(38, 189, 239, 0);
        }
    }

    .badge-text {
        color: #26bdef;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .title-line {
        display: block;
        opacity: 0;
        transform: translateY(30px);
        animation: mobileSlideInUp 0.8s ease-out forwards;
    }

    .title-line:nth-child(1) { animation-delay: 0.3s; }
    .title-line:nth-child(2) { animation-delay: 0.5s; }
    .title-line:nth-child(3) { animation-delay: 0.7s; }
    .title-line:nth-child(4) { animation-delay: 0.9s; }

    @keyframes mobileSlideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 2rem;
        animation: mobileFadeInUp 1s ease-out 1.2s both;
        padding: 0 0.5rem;
    }

    /* Enhanced Mobile Buttons */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
        animation: mobileFadeInUp 1s ease-out 1.4s both;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1.2rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: none;
        font-size: 1rem;
        min-height: 55px;
        width: 100%;
        backdrop-filter: blur(10px);
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }

    .btn:active::before {
        left: 100%;
    }

    .btn-primary {
        background: linear-gradient(135deg, #26bdef, #00d4ff);
        color: white;
        border: none;
        box-shadow: 0 8px 25px rgba(38, 189, 239, 0.4);
        transform: translateY(0);
    }

    .btn-primary:active {
        transform: translateY(2px) scale(0.98);
        box-shadow: 0 4px 15px rgba(38, 189, 239, 0.3);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
    }

    .btn-secondary:active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(2px) scale(0.98);
    }

    .btn-icon {
        transition: transform 0.3s ease;
        font-size: 1.1rem;
    }

    .btn:active .btn-icon {
        transform: translateX(8px);
    }

    /* Enhanced Mobile Stats */
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        animation: mobileFadeInUp 1s ease-out 1.6s both;
        width: 100%;
        max-width: 280px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .stat-item:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.1);
    }

    .stat-number {
        font-size: 2.2rem;
        font-weight: 700;
        color: #26bdef;
        margin-bottom: 0.3rem;
        text-shadow: 0 2px 4px rgba(38, 189, 239, 0.3);
    }

    .stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
    }

    /* Mobile Tech Sphere - Simplified but Animated */
    .hero-visual {
        position: relative;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: mobileFadeInUp 1s ease-out 1.8s both;
    }

    .tech-sphere {
        position: relative;
        width: 200px;
        height: 200px;
    }

    .sphere-core {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, #26bdef, #00d4ff);
        border-radius: 50%;
        box-shadow: 0 0 30px rgba(38, 189, 239, 0.6);
        animation: mobilePulse 2.5s ease-in-out infinite;
    }

    .sphere-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        border: 2px solid rgba(38, 189, 239, 0.4);
        border-radius: 50%;
        animation: mobileRotate 25s linear infinite;
    }

    .ring-1 {
        width: 80px;
        height: 80px;
        transform: translate(-50%, -50%);
        animation-duration: 20s;
    }

    .ring-2 {
        width: 120px;
        height: 120px;
        transform: translate(-50%, -50%);
        animation-duration: 15s;
        animation-direction: reverse;
    }

    .ring-3 {
        width: 160px;
        height: 160px;
        transform: translate(-50%, -50%);
        animation-duration: 30s;
    }

    @keyframes mobileRotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    /* Mobile Floating Elements - Simplified */
    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        display: none; /* Hide on mobile for cleaner look */
    }

    /* Mobile Scroll Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        animation: mobileBounce 2s infinite;
    }

    .scroll-arrow {
        width: 2px;
        height: 25px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
        position: relative;
    }

    .scroll-arrow::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid rgba(255, 255, 255, 0.8);
    }

    .scroll-text {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @keyframes mobileBounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-8px);
        }
        60% {
            transform: translateX(-50%) translateY(-4px);
        }
    }
}

/* Mobile Solutions Grid - Enhanced */
@media (max-width: 768px) {
    .solutions-grid-section {
        padding: 4rem 1rem;
        background: rgba(0, 0, 0, 0.4);
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        animation: mobileFadeInUp 1s ease-out;
    }

    .section-badge {
       
        display: inline-block;
        background: linear-gradient(135deg, rgba(38, 189, 239, 0.25), rgba(0, 212, 255, 0.15));
        border: 1px solid rgba(38, 189, 239, 0.4);
        border-radius: 20px;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1rem;
        backdrop-filter: blur(15px);
    }

    .section-badge span {
        color: #26bdef;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 100%;
        margin: 0 auto;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .solutions-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .solution-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(15px);
        cursor: pointer;
        opacity: 0;
        transform: translateY(30px);
        animation: mobileCardSlideIn 0.6s ease-out forwards;
    }

    .solution-card:nth-child(1) { animation-delay: 0.1s; }
    .solution-card:nth-child(2) { animation-delay: 0.2s; }
    .solution-card:nth-child(3) { animation-delay: 0.3s; }
    .solution-card:nth-child(4) { animation-delay: 0.4s; }
    .solution-card:nth-child(5) { animation-delay: 0.5s; }
    .solution-card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes mobileCardSlideIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .card-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(38, 189, 239, 0.15), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .solution-card:active .card-glow {
        opacity: 1;
    }

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .solution-card:active::before {
        left: 100%;
    }

    .solution-card:active {
        transform: translateY(-5px) scale(0.98);
        border-color: rgba(38, 189, 239, 0.6);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .solution-icon {
        margin-bottom: 1.2rem;
    }

    .icon-wrapper {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #26bdef, #00d4ff);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px #26bdef4d;
    }

    .solution-card:active .icon-wrapper {
        transform: rotate(360deg) scale(1.1);
        box-shadow: 0 6px 20px rgba(38, 189, 239, 0.5);
    }

    .icon-wrapper svg {
        width: 28px;
        height: 28px;
        color: white;
    }

    .solution-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .solution-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }

    .solution-features {
        list-style: none;
        margin-bottom: 1.5rem;
    }

    .solution-features li {
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 0.4rem;
        padding-left: 1.2rem;
        position: relative;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .solution-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #26bdef;
        font-weight: bold;
        font-size: 0.8rem;
    }

    .solution-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-outline {
        background: transparent;
        color: #26bdef;
        border: 2px solid #26bdef;
        padding: 0.9rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 0.95rem;
    }

    .btn-outline:active {
        background: #26bdef;
        color: white;
        transform: translateY(2px) scale(0.98);
    }

    .tech-stack {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-tag {
        background: rgba(38, 189, 239, 0.25);
        color: #26bdef;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(38, 189, 239, 0.4);
        transition: all 0.3s ease;
    }

    .tech-tag:active {
        background: rgba(38, 189, 239, 0.4);
        transform: scale(0.95);
    }
}

/* Mobile Process Section - Enhanced */
@media (max-width: 768px) {
    .process-section {
        padding: 4rem 1rem;
        background: rgba(0, 0, 0, 0.6);
    }

    .process-timeline {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0 1rem;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        left: 25px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, #26bdef, transparent);
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2.5rem;
        position: relative;
        opacity: 0;
        transform: translateX(-30px);
        animation: mobileProcessSlideIn 0.6s ease-out forwards;
    }

    .process-step:nth-child(1) { animation-delay: 0.1s; }
    .process-step:nth-child(2) { animation-delay: 0.2s; }
    .process-step:nth-child(3) { animation-delay: 0.3s; }
    .process-step:nth-child(4) { animation-delay: 0.4s; }

    @keyframes mobileProcessSlideIn {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #26bdef, #00d4ff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
        color: white;
        position: relative;
        z-index: 2;
        box-shadow: 0 4px 15px rgba(38, 189, 239, 0.4);
        flex-shrink: 0;
        margin-right: 1.5rem;
    }

    .step-content {
        flex: 1;
        padding-top: 0.5rem;
    }

    .step-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .step-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .step-duration {
        display: inline-block;
        background: rgba(38, 189, 239, 0.25);
        color: #26bdef;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(38, 189, 239, 0.4);
    }
}

/* Mobile Contact Form - Enhanced */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 4rem 1rem;
        background: rgba(0, 0, 0, 0.4);
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-info {
        animation: mobileFadeInUp 1s ease-out;
        text-align: center;
    }

    .contact-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .contact-highlights {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .highlight-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: mobileHighlightSlideIn 0.6s ease-out forwards;
    }

    .highlight-item:nth-child(1) { animation-delay: 0.1s; }
    .highlight-item:nth-child(2) { animation-delay: 0.2s; }
    .highlight-item:nth-child(3) { animation-delay: 0.3s; }

    @keyframes mobileHighlightSlideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .highlight-item:active {
        transform: translateY(-3px) scale(0.98);
        background: rgba(255, 255, 255, 0.12);
    }

    .highlight-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #26bdef, #00d4ff);
        border-radius: 15px;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(38, 189, 239, 0.3);
    }

    .highlight-content h4 {
        color: white;
        font-weight: 600;
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
    }

    .highlight-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Enhanced Mobile Form */
    .contact-form {
        animation: mobileFadeInUp 1s ease-out 0.5s both;
    }

    .form {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 1.5rem;
        backdrop-filter: blur(15px);
        position: relative;
    }

    .form-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .form-header h3 {
        color: white;
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .form-header p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        display: block;
        color: white;
        font-weight: 500;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
        min-height: 48px;
        font-family: 'Poppins', sans-serif;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #26bdef;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 3px rgba(38, 189, 239, 0.15);
        transform: translateY(-1px);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2326bdef' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 0.75rem center;
        background-repeat: no-repeat;
        background-size: 1.5em 1.5em;
        padding-right: 2.5rem;
        cursor: pointer;
    }

    .form-group select option {
        background-color: #1a1a1a;
        color: white;
        padding: 0.5rem;
    }

    .btn-full {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
        min-height: 55px;
        background: linear-gradient(135deg, #26bdef, #00d4ff);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(38, 189, 239, 0.3);
    }

    .btn-full:active {
        transform: translateY(2px) scale(0.98);
        box-shadow: 0 2px 10px rgba(38, 189, 239, 0.2);
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .solutions-hero {
        padding: 70px 0.8rem 1.5rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1.2rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        min-height: 50px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .solutions-grid-section {
        padding: 3rem 0.8rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .solution-card {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .solution-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .solution-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .solution-features li {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.3rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .process-section {
        padding: 3rem 0.8rem;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
        margin-right: 1.2rem;
    }

    .step-content {
        padding-top: 0.3rem;
    }

    .step-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .step-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .step-duration {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .contact-form-section {
        padding: 3rem 0.8rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .form {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .form-header h3 {
        font-size: 1.2rem;
    }

    .form-header p {
        font-size: 0.85rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        min-height: 45px;
    }

    .btn-full {
        padding: 1rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .highlight-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .highlight-icon {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
    }

    .highlight-content h4 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .highlight-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .contact-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .tech-sphere {
        width: 150px;
        height: 150px;
    }

    .sphere-core {
        width: 50px;
        height: 50px;
    }

    .ring-1 {
        width: 60px;
        height: 60px;
    }

    .ring-2 {
        width: 90px;
        height: 90px;
    }

    .ring-3 {
        width: 120px;
        height: 120px;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .solution-card:hover {
        transform: none;
    }
    
    .solution-card:active {
        transform: translateY(-5px) scale(0.98);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: translateY(2px) scale(0.98);
    }
    
    .btn-outline:hover {
        transform: none;
    }
    
    .btn-outline:active {
        transform: translateY(2px) scale(0.98);
    }
    
    .highlight-item:hover {
        transform: none;
    }
    
    .highlight-item:active {
        transform: translateY(-3px) scale(0.98);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .solution-card,
    .process-step,
    .highlight-item,
    .btn,
    .sphere-ring,
    .sphere-core,
    .bg-circle,
    .hero-badge,
    .title-line {
        animation: none;
        transition: none;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn {
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-group select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2326bdef' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    }
} 