/* ========================================
   MOBILE RESPONSIVE UI DESIGN
   Complete Mobile-First Approach
   ======================================== */

/* ========================================
   BASE MOBILE STYLES (320px+)
   ======================================== */

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

@media (max-width: 991px) {
    /* Topbar Mobile */
    .topbar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .topbar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .topbar-left,
    .topbar-right {
        width: 100%;
        justify-content: center;
        gap: 15px;
        font-size: 11px;
    }
    
    .topbar-item span {
        display: none;
    }
    
    .topbar-item i {
        font-size: 16px;
    }
    
    .topbar-social {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
    }
    
    .topbar-social a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    /* Scrolling Banner Mobile */
    .scrolling-banner {
        padding: 10px 0;
    }
    
    .scrolling-content {
        font-size: 12px;
        animation: scrollText 25s linear infinite;
    }
    
    .scroll-item {
        margin-right: 30px;
    }
    
    /* Header Mobile */
    .navbar-wrapper {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo-primary {
        font-size: 22px;
    }
    
    .logo-secondary {
        font-size: 22px;
    }
    
    .tagline {
        font-size: 9px;
    }
    
    /* Mobile Menu */
    .mobile-toggle {
        display: block;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        gap: 15px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 999;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
    
    /* Mobile Menu Overlay */
    .navbar-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .navbar-menu.active::before {
        opacity: 1;
        visibility: visible;
    }
}

/* ========================================
   HERO SECTION MOBILE
   ======================================== */

@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 18px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 32px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}

/* ========================================
   FEATURES SECTION MOBILE
   ======================================== */

@media (max-width: 992px) {
    .features-section-ultra {
        padding: 60px 0;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .features-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-section-ultra {
        padding: 50px 0;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-grid-ultra {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card-inner {
        padding: 30px 20px;
    }
    
    .feature-icon-ultra {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon-ultra i {
        font-size: 32px;
    }
    
    .feature-title-ultra {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-desc-ultra {
        font-size: 14px;
    }
    
    .stat-number-ultra {
        font-size: 42px;
    }
    
    .stat-label-ultra {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .features-section-ultra {
        padding: 40px 0;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .feature-icon-ultra {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-ultra i {
        font-size: 28px;
    }
    
    .stat-number-ultra {
        font-size: 36px;
    }
}

/* ========================================
   ABOUT SECTION MOBILE
   ======================================== */

@media (max-width: 992px) {
    .about-section-ultra {
        padding: 60px 0;
    }
    
    .about-ultra-card {
        padding: 50px 30px;
    }
    
    .badge-ultra {
        font-size: 12px;
        padding: 10px 22px;
        margin-bottom: 24px;
    }
    
    .title-ultra {
        font-size: 42px;
        margin-bottom: 28px;
    }
    
    .description-ultra p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-section-ultra {
        padding: 50px 0;
    }
    
    .about-ultra-card {
        padding: 40px 25px;
        border-radius: 24px;
    }
    
    .title-ultra {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .description-ultra p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .about-section-ultra {
        padding: 40px 0;
    }
    
    .about-ultra-card {
        padding: 30px 20px;
    }
    
    .badge-ultra {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .title-ultra {
        font-size: 26px;
    }
    
    .description-ultra p {
        font-size: 14px;
    }
}

/* ========================================
   SERVICES SECTION MOBILE
   ======================================== */

@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .service-card {
        border-radius: 16px;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .service-features li {
        font-size: 13px;
        padding: 6px 0;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .service-image img {
        height: 160px;
    }
    
    .service-content {
        padding: 16px;
    }
}

/* ========================================
   CLIENTS SECTION MOBILE
   ======================================== */

@media (max-width: 992px) {
    .clients-section-ultra {
        padding: 60px 0;
    }
    
    .clients-title {
        font-size: 42px;
    }
    
    .clients-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .clients-stats-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .clients-section-ultra {
        padding: 50px 0;
    }
    
    .clients-header {
        margin-bottom: 40px;
    }
    
    .clients-badge {
        font-size: 12px;
        padding: 10px 22px;
    }
    
    .clients-title {
        font-size: 32px;
    }
    
    .clients-subtitle {
        font-size: 15px;
    }
    
    .filter-section {
        margin-bottom: 40px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .filter-btn span:not(.count) {
        display: none;
    }
    
    .filter-btn i {
        font-size: 14px;
    }
    
    .clients-grid-ultra {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card-inner {
        height: 300px;
    }
    
    .client-image {
        max-height: 140px;
    }
    
    .clients-stats-ultra {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .clients-section-ultra {
        padding: 40px 0;
    }
    
    .clients-title {
        font-size: 26px;
    }
    
    .clients-subtitle {
        font-size: 14px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .card-inner {
        height: 280px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* ========================================
   FOOTER MOBILE
   ======================================== */

@media (max-width: 768px) {
    footer {
        padding: 40px 20px !important;
    }
    
    footer .col-lg-4,
    footer .col-lg-3 {
        margin-bottom: 30px;
    }
    
    footer h6 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    footer p,
    footer a {
        font-size: 13px;
    }
    
    .back-to-top {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 30px 15px !important;
    }
    
    footer .small {
        font-size: 12px !important;
    }
}

/* ========================================
   FLOATING SHAPES MOBILE
   ======================================== */

@media (max-width: 768px) {
    .floating-shapes {
        display: none;
    }
    
    .feature-orb,
    .gradient-orb {
        width: 200px !important;
        height: 200px !important;
        filter: blur(60px);
    }
}

/* ========================================
   CONTAINER PADDING MOBILE
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ========================================
   TOUCH OPTIMIZATIONS
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .feature-card-ultra:hover .feature-card-inner,
    .service-card:hover,
    .client-card-ultra:hover .card-inner {
        transform: none;
    }
    
    /* Increase tap targets */
    .btn,
    .filter-btn,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove complex animations on mobile */
    .card-inner {
        transform-style: flat;
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero-slide {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}

/* ========================================
   SMALL MOBILE (320px)
   ======================================== */

@media (max-width: 375px) {
    .hero-title {
        font-size: 24px;
    }
    
    .features-title,
    .clients-title {
        font-size: 24px;
    }
    
    .title-ultra {
        font-size: 24px;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .feature-card-inner {
        padding: 24px 16px;
    }
    
    .about-ultra-card {
        padding: 24px 16px;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

@media (max-width: 768px) {
    /* Reduce animations on mobile */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Simplify gradients on mobile */
    .hero-overlay {
        background: rgba(139, 92, 246, 0.85) !important;
    }
    
    /* Reduce blur effects */
    .feature-orb,
    .gradient-orb {
        filter: blur(40px) !important;
    }
}

/* ========================================
   ACCESSIBILITY - MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Larger focus indicators */
    *:focus {
        outline: 3px solid #8b5cf6;
        outline-offset: 2px;
    }
    
    /* Better contrast for small screens */
    .hero-description,
    .feature-desc-ultra,
    .clients-subtitle {
        color: rgba(255, 255, 255, 0.95);
    }
}

/* ========================================
   CAROUSEL CONTROLS MOBILE
   ======================================== */

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   GRID SYSTEM MOBILE
   ======================================== */

@media (max-width: 768px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ========================================
   MODAL/POPUP MOBILE
   ======================================== */

@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-content {
        border-radius: 16px;
    }
}

/* ========================================
   FORM ELEMENTS MOBILE
   ======================================== */

@media (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }
    
    .form-control {
        border-radius: 12px;
    }
}

/* ========================================
   SAFE AREA INSETS (iPhone X+)
   ======================================== */

@supports (padding: max(0px)) {
    .navbar-wrapper,
    .hero-content,
    footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .back-to-top {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(20px, env(safe-area-inset-right));
    }
}


/* ========================================
   MOBILE MENU ENHANCEMENTS
   ======================================== */

@media (max-width: 991px) {
    /* Smooth menu animation */
    .navbar-menu {
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    /* Menu items stagger animation */
    .navbar-menu.active .nav-item {
        animation: slideInRight 0.3s ease forwards;
        opacity: 0;
    }
    
    .navbar-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-menu.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .navbar-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .navbar-menu.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .navbar-menu.active .nav-item:nth-child(5) { animation-delay: 0.3s; }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Close button in mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #8b5cf6, #3b82f6);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
    }
}

/* ========================================
   SWIPE GESTURES SUPPORT
   ======================================== */

@media (max-width: 768px) {
    .carousel-inner {
        touch-action: pan-y pinch-zoom;
    }
    
    /* Better touch feedback */
    .btn:active,
    .filter-btn:active,
    .nav-link:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* ========================================
   MOBILE CARD LAYOUTS
   ======================================== */

@media (max-width: 768px) {
    /* Stack cards vertically on mobile */
    .feature-card-ultra,
    .service-card,
    .client-card-ultra {
        margin-bottom: 16px;
    }
    
    /* Full width cards on small screens */
    .card {
        border-radius: 16px;
        overflow: hidden;
    }
    
    /* Optimize card images for mobile */
    .service-image,
    .client-image-wrapper {
        height: auto;
        min-height: 150px;
    }
}

/* ========================================
   MOBILE TYPOGRAPHY
   ======================================== */

@media (max-width: 768px) {
    h1 { font-size: 28px; line-height: 1.3; }
    h2 { font-size: 24px; line-height: 1.3; }
    h3 { font-size: 20px; line-height: 1.4; }
    h4 { font-size: 18px; line-height: 1.4; }
    h5 { font-size: 16px; line-height: 1.4; }
    h6 { font-size: 14px; line-height: 1.4; }
    
    p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Better readability on mobile */
    body {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 24px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }
    h4 { font-size: 16px; }
}

/* ========================================
   MOBILE SPACING UTILITIES
   ======================================== */

@media (max-width: 768px) {
    .mb-5 { margin-bottom: 2rem !important; }
    .mb-4 { margin-bottom: 1.5rem !important; }
    .mb-3 { margin-bottom: 1rem !important; }
    
    .mt-5 { margin-top: 2rem !important; }
    .mt-4 { margin-top: 1.5rem !important; }
    .mt-3 { margin-top: 1rem !important; }
    
    .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
}

/* ========================================
   MOBILE IMAGES OPTIMIZATION
   ======================================== */

@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Lazy loading placeholder */
    img[loading="lazy"] {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }
    
    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
}

/* ========================================
   MOBILE BUTTONS
   ======================================== */

@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 25px;
        font-weight: 600;
    }
    
    .btn-lg {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .btn-sm {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Full width buttons on mobile */
    .btn-block-mobile {
        width: 100%;
        display: block;
    }
}

/* ========================================
   MOBILE TABLES
   ======================================== */

@media (max-width: 768px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 13px;
    }
    
    th, td {
        padding: 8px;
    }
}

/* ========================================
   MOBILE LOADING STATES
   ======================================== */

@media (max-width: 768px) {
    .loading-spinner {
        width: 40px;
        height: 40px;
        margin: 20px auto;
    }
    
    .skeleton-loader {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
        border-radius: 8px;
    }
}

/* ========================================
   MOBILE NOTIFICATIONS/TOASTS
   ======================================== */

@media (max-width: 768px) {
    .toast,
    .notification {
        width: calc(100% - 32px);
        max-width: 100%;
        margin: 16px;
        border-radius: 12px;
        font-size: 14px;
    }
}

/* ========================================
   MOBILE SEARCH
   ======================================== */

@media (max-width: 768px) {
    .search-box {
        width: 100%;
        margin-bottom: 16px;
    }
    
    .search-box input {
        width: 100%;
        padding: 12px 16px 12px 40px;
        font-size: 14px;
        border-radius: 25px;
    }
}

/* ========================================
   MOBILE TABS
   ======================================== */

@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-tabs .nav-link {
        white-space: nowrap;
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* ========================================
   MOBILE BADGES
   ======================================== */

@media (max-width: 768px) {
    .badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ========================================
   MOBILE PROGRESS BARS
   ======================================== */

@media (max-width: 768px) {
    .progress {
        height: 8px;
        border-radius: 4px;
    }
}

/* ========================================
   MOBILE BREADCRUMBS
   ======================================== */

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 12px;
        padding: 8px 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .breadcrumb-item {
        white-space: nowrap;
    }
}

/* ========================================
   MOBILE PAGINATION
   ======================================== */

@media (max-width: 768px) {
    .pagination {
        font-size: 13px;
    }
    
    .page-link {
        padding: 8px 12px;
    }
    
    /* Hide some pagination items on mobile */
    .pagination .page-item:not(.active):not(:first-child):not(:last-child) {
        display: none;
    }
}

/* ========================================
   MOBILE ALERTS
   ======================================== */

@media (max-width: 768px) {
    .alert {
        font-size: 13px;
        padding: 12px 16px;
        border-radius: 12px;
    }
}

/* ========================================
   MOBILE VIDEO EMBEDS
   ======================================== */

@media (max-width: 768px) {
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
        overflow: hidden;
    }
    
    .video-container iframe,
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* ========================================
   MOBILE PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .mobile-toggle,
    .back-to-top,
    .floating-shapes {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}

/* ========================================
   DARK MODE SUPPORT (Mobile)
   ======================================== */

@media (max-width: 768px) and (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles for mobile */
    body {
        background: #1a1a2e;
        color: #ffffff;
    }
}

/* ========================================
   REDUCED MOTION (Accessibility)
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   HIGH CONTRAST MODE (Accessibility)
   ======================================== */

@media (prefers-contrast: high) {
    .btn,
    .card,
    .feature-card-inner {
        border: 2px solid currentColor;
    }
}
