* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    font-family: Pattanakarn,sans-serif;
}
@font-face {
  font-family: 'Pattanakarn';
  src: url('/z/zingsansrustb_baseg.otf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
 html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
    cursor: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.95);
    border-left: 1px solid rgba(180, 75, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #B44BFF, #FF69B4);
    border-radius: 10px;
    border: 2px solid rgba(10, 10, 10, 0.95);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #C55FFF, #FF89C4);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.9);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #B44BFF rgba(10, 10, 10, 0.95);
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #0A0A0A;
    color: #E5E5E5;
    cursor: none !important;
}

#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: linear-gradient(135deg, #0a0a14 0%, #1a0520 50%, #0a0a14 100%);
}

.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(180, 75, 255, 1);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    transition: transform 0.15s ease;
    box-shadow: 0 0 20px rgba(180, 75, 255, 0.6);
    transform: translate(-50%, -50%);
}

.cursor-trail {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #B44BFF, #FF69B4, #FF1493);
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.5) 100%);
}

.content-wrapper {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.content-wrapper > * {
    pointer-events: all;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 75, 255, 0.4) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.glass-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
     padding: 10px 24px;
    background: rgba(180, 75, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 75, 255, 0.4);
    border-radius: 30px;
    color: #E5E5E5;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.glass-button:hover {
    background: rgba(180, 75, 255, 0.3);
    border-color: rgba(180, 75, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(180, 75, 255, 0.4);
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FF69B4;
    background: rgba(255, 105, 180, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 105, 180, 0.4);
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, #B44BFF, #FF69B4, #B44BFF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    padding: 20px 10px;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: rgba(229, 229, 229, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 18px 45px;
    background: linear-gradient(135deg, #B44BFF, #FF69B4);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(180, 75, 255, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(180, 75, 255, 0.6);
}
.hero-btn-secondary {
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(180, 75, 255, 0.6);
    transform: translateY(-5px);
}

/* Section */
.section {
    padding: clamp(60px, 8vw, 100px) 5%;
    margin-top: 50px;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #B44BFF, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    
}

.section-description {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: rgba(229, 229, 229, 0.7);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Service Cards Grid */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 16px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px 16px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.3), rgba(255, 105, 180, 0.3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(180, 75, 255, 0.4);
}

.service-icon i {
    font-size: 20px;
    color: #FF69B4;
}

.service-card h3 {
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.service-card p {
    font-size: clamp(0.75rem, 0.95vw, 0.8rem);
    line-height: 1.5;
    color: rgba(229, 229, 229, 0.7);
    flex: 1;
    text-align: left;
    margin: 0;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(180, 75, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(180, 75, 255, 0.4);
}

/* Why Choose Cards */
.why-cards {
    max-width: 1400px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: 14px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.why-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.2), rgba(255, 105, 180, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 2px solid rgba(180, 75, 255, 0.4);
}

.why-icon i {
    font-size: 18px;
    color: #FF69B4;
}

.why-card h3 {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.why-card p {
    font-size: clamp(0.75rem, 0.95vw, 0.8rem);
    line-height: 1.5;
    color: rgba(229, 229, 229, 0.6);
    text-align: center;
    margin: 0;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(180, 75, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(180, 75, 255, 0.4);
}

/* TECHNOLOGIES SECTION - DESKTOP */
@media (min-width: 769px) {
    .tech-section {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        margin-top: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 8vh;
    }

    .tech-header {
        text-align: center;
        padding: 0 5% 12px;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .tech-header .section-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        margin-bottom: 6px;
        margin: 0 auto 6px auto;
        padding: 0;
    }

    .tech-header .section-description {
        font-size: clamp(0.85rem, 1.5vw, 1rem);
        line-height: 1.4;
        margin: 0 auto;
        padding: 0;
        max-width: 90%;
    }

    .horizontal-container {
        display: flex;
        height: 80vh;
        align-items: center;
        width: 100%;
        overflow: hidden;
        will-change: transform;
        flex-shrink: 0;
        margin-top: 0;
    }

    .horizontal-wrapper {
        display: flex;
        gap: 16px;
        padding: 0 3%;
        align-items: center;
        height: 100%;
    }

    .spacer-box {
        min-width: 12vw;
        height: 100%;
        visibility: hidden;
        flex-shrink: 0;
    }

    .tech-card {
        min-width: 260px;
        max-width: 260px;
        height: 360px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(30px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .tech-card:hover {
        border-color: rgba(180, 75, 255, 0.6);
        transform: scale(1.04);
        box-shadow: 0 22px 55px rgba(180, 75, 255, 0.5);
    }
.tech-card .tech-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        flex-shrink: 0;
    }

    .tech-logo {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(180, 75, 255, 0.4);
        flex-shrink: 0;
    }

    .tech-logo i {
        font-size: 20px;
        color: #FF69B4;
    }

    .tech-info h3 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1px;
        line-height: 1.2;
        margin: 0 0 1px 0;
    }

    .tech-info p {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.9px;
        color: #B44BFF;
        font-weight: 600;
        margin: 0;
        line-height: 1.1;
    }

    .tech-features {
        list-style: none;
        padding: 0;
        margin: 4px 0 6px 0;
        flex: 1;
        overflow: hidden;
    }

    .tech-features li {
        font-size: 0.75rem;
        color: rgba(229, 229, 229, 0.72);
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }

    .tech-features li i {
        color: #FF69B4;
        font-size: 11px;
        flex-shrink: 0;
        min-width: 11px;
    }

    .tech-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 7px;
        flex-shrink: 0;
    }

    .tech-stat {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        padding: 7px;
        text-align: center;
        overflow: hidden;
    }

    .tech-stat .stat-number {
        font-size: 0.85rem;
        font-weight: 900;
        background: linear-gradient(135deg, #B44BFF, #FF69B4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
        margin-bottom: 1px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tech-stat .stat-text {
        font-size: 0.58rem;
        color: rgba(229, 229, 229, 0.5);
        text-transform: uppercase;
        line-height: 1.1;
        letter-spacing: 0.8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    @media (min-width: 1400px) {
        .tech-card {
            min-width: 280px;
            max-width: 280px;
            height: 380px;
            padding: 18px;
        }

        .tech-features li {
            font-size: 0.77rem;
        }
    }
}
@media (max-width: 480px) {
    .tech-card {
        padding: 18px 14px;
    }

    .tech-card .tech-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .tech-logo {
        width: 45px;
        height: 45px;
    }

    .tech-logo i {
        font-size: 22px;
    }

    .tech-info h3 {
        font-size: 1rem;
    }

    .tech-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .tech-features li i {
        font-size: 12px;
    }

    .tech-stat .stat-number {
        font-size: 0.85rem;
    }

    .tech-stat .stat-text {
        font-size: 0.6rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: clamp(80px, 10vw, 140px) 5%;
    margin-top: 50px;
    background: linear-gradient(180deg, transparent, rgba(180, 75, 255, 0.02), transparent);
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-title {
     font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #B44BFF, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefit-split-left, .benefit-split-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-split-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 120px;
    min-height: 120px;
}

.benefit-split-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #B44BFF, #FF69B4);
    transition: height 0.4s ease;
}

.benefit-split-item:hover::before {
    height: 100%;
}

.benefit-split-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(180, 75, 255, 0.5);
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(180, 75, 255, 0.3);
}

.benefit-split-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.3), rgba(255, 105, 180, 0.3));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(180, 75, 255, 0.5);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.benefit-split-item:hover .benefit-split-icon {
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.5), rgba(255, 105, 180, 0.5));
    border-color: rgba(180, 75, 255, 0.8);
    transform: scale(1.1);
}

.benefit-split-icon i {
    font-size: 16px;
    color: #FF69B4;
    transition: color 0.4s ease;
}

.benefit-split-item:hover .benefit-split-icon i {
    color: #FFFFFF;
}

.benefit-split-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.benefit-split-text h4 {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.benefit-split-text p {
    font-size: clamp(0.75rem, 0.95vw, 0.85rem);
    color: rgba(229, 229, 229, 0.7);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .benefit-split-item {
        height: auto;
        min-height: auto;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px 15px;
        gap: 15px;
    }

    .benefit-split-icon {
        margin: 0 auto;
        width: 45px;
        height: 45px;
    }

    .benefit-split-text h4,
    .benefit-split-text p {
        text-align: center;
    }

    .benefit-split-item:hover {
        transform: translateX(0) translateY(-5px);
    }
}

/* Development Impact Section */
.dev-impact-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    margin-top: 50px;
    background: linear-gradient(180deg, transparent, rgba(180, 75, 255, 0.02));
}

.dev-impact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.dev-impact-left h2 {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 900;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.dev-impact-left p {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    line-height: 1.8;
    color: rgba(229, 229, 229, 0.7);
    margin-bottom: 30px;
    text-align: left;
}

/* Services Section */
.services-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    margin-top: 50px;
    background: linear-gradient(180deg, transparent, rgba(180, 75, 255, 0.03), transparent);
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
      font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #B44BFF, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    line-height: 1.8;
    color: rgba(229, 229, 229, 0.7);
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    margin-top: 50px;
}

/* Stats Section */
.stats-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    margin-top: 50px;
    background: linear-gradient(180deg, transparent, rgba(180, 75, 255, 0.03), transparent);
}
/* SCROLL CONTROLS */
.scroll-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10010;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFF;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-btn:active {
    transform: scale(0.95);
}

.scroll-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    padding: 0 6px;
    white-space: nowrap;
}

/* FRAME CLOSE BUTTON */
.frame-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #FFF;
    font-size: 18px;
    cursor: pointer;
    z-index: 10010;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-close:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* FAQ Accordion Section */
.faq-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    margin-top: 50px;
    background: linear-gradient(180deg, transparent, rgba(180, 75, 255, 0.02));
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(180, 75, 255, 0.3);
}

.accordion-item.active {
    border-color: rgba(180, 75, 255, 0.5);
    box-shadow: 0 10px 40px rgba(180, 75, 255, 0.3);
}

.accordion-header {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header h3 {
    font-size: clamp(0.95rem, 1.4vw, 1.125rem);
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    padding-right: 20px;
}

.accordion-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.2), rgba(255, 105, 180, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 75, 255, 0.3);
}

.accordion-icon i {
    font-size: 18px;
    color: #FF69B4;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.4), rgba(255, 105, 180, 0.4));
}

.accordion-item.active .accordion-icon i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 22px;
}

.accordion-content p {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    line-height: 1.8;
    color: rgba(229, 229, 229, 0.7);
    margin: 0;
    text-align: left;
}

/* Client Logos */
.clients-section {
    padding: clamp(60px, 8vw, 100px) 5%;
    margin-top: 50px;
}

/* CTA */
.cta-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vw, 100px) 5%;
    text-align: center;
    margin-top: 50px;
}

.cta-content {
    max-width: 900px;
}

.cta-title {
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, #B44BFF, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: rgba(229, 229, 229, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
}

.cta-button {
    padding: clamp(14px, 2vw, 20px) clamp(35px, 5vw, 55px);
    font-size: clamp(0.9rem, 1.4vw, 1.125rem);
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(270deg, #FF69B4, #B44BFF, #FF1493);
    background-size: 200% 100%;
    border: none;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6), 0 15px 40px rgba(180, 75, 255, 0.5);
    animation: gradientShift 3s ease infinite;
    transition: all 0.4s ease;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 105, 180, 1), 0 20px 60px rgba(180, 75, 255, 0.8);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 5%;
    text-align: center;
}

.footer-text {
    font-size: clamp(0.75rem, 1vw, 0.75rem);
    color: rgba(229, 229, 229, 0.4);
}
/* Hamburger & Menu */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.15), rgba(255, 105, 180, 0.15));
    border: 2px solid rgba(180, 75, 255, 0.4);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.hamburger:hover {
    border-color: rgba(180, 75, 255, 0.8);
    box-shadow: 0 0 20px rgba(180, 75, 255, 0.4);
    transform: scale(1.05);
}

.hamburger i {
    font-size: 22px;
    color: #B44BFF;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 5, 32, 0.98), rgba(10, 0, 20, 0.98));
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s ease;
    border-left: 2px solid rgba(180, 75, 255, 0.3);
    overflow: hidden;
    pointer-events: all;
}

.menu-overlay.active {
    right: 0;
}

.menu-header {
    padding: 0px 25px;
    border-bottom: 1px solid rgba(180, 75, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-links {
    padding: 0px 25px;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    margin-bottom: 5px;
    color: rgba(229, 229, 229, 0.9);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.menu-link:hover {
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.1), rgba(255, 105, 180, 0.1));
    border-color: rgba(180, 75, 255, 0.4);
    transform: translateX(5px);
}

.menu-link i {
    font-size: 18px;
    width: 28px;
    text-align: center;
    color: #B44BFF;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.dropdown-trigger span {
    flex: 1;
}

.dropdown-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 10px;
    color: #FF69B4;
}

.menu-link-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #B44BFF;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, margin 0.4s ease;
    background: transparent;
    border-radius: 15px;
    margin-left: 20px;
}

.menu-link-dropdown.active .dropdown-content {
    max-height: 600px;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: rgba(229, 229, 229, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 5px 12px;
    cursor: pointer;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B44BFF, #FF69B4);
    transition: width 0.3s ease;
}

.dropdown-item:hover::before {
    width: 8px;
}

.dropdown-item:hover {
    background: rgba(180, 75, 255, 0.3);
    color: #FFFFFF;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(180, 75, 255, 0.3);
}

.dropdown-item i {
    font-size: 18px;
    color: #FF69B4;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-item:hover i {
    transform: scale(1.15) rotate(5deg);
    color: #B44BFF;
}

.dropdown-item span {
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .success-card {
        grid-template-columns: 340px 1fr;
    }

    .screenshot-preview {
        height: 380px;
    }

    .screenshot-preview:hover img {
        transform: translateY(calc(-100% + 380px));
    }
}

@media (max-width: 1024px) {
    .dev-impact-container,
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .success-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 25px;
    }

    .card-left {
        align-items: center;
        text-align: center;
    }

    .card-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tech-card {
        min-width: min(300px, 90vw);
        max-width: min(300px, 90vw);
        padding: 22px 18px;
    }

    .service-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }

    html, body {
        cursor: auto !important;
    }

    .cursor, .cursor-trail {
        display: none;
    }

    .hero {
        padding: 100px 5% 60px;
        min-height: auto;
    }

    .hero h1 {
        padding: 15px 5px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hero-btn-primary, .hero-btn-secondary {
        padding: 16px 35px;
        font-size: 14px;
        width: 100%;
    }

    .tech-section, .success-section {
        height: auto;
        padding: 60px 0;
        margin-top: 50px;
        min-height: auto;
    }

    .tech-header, .success-header {
        position: relative;
        padding: 40px 5% 30px;
    }

    .horizontal-container, .success-horizontal-container {
        height: auto;
        margin-top: 0;
    }

    .horizontal-wrapper, .success-horizontal-wrapper {
        flex-direction: column;
        padding: 20px 5%;
        gap: 20px;
    }

    .tech-card, .success-card {
        min-width: 100%;
        max-width: 100%;
        padding: 22px 18px;
    }

    .tech-card {
        padding: 25px 20px;
    }

    .tech-header {
        gap: 15px;
        margin-bottom: 18px;
    }

    .tech-logo {
        width: 50px;
        height: 50px;
    }

    .tech-logo i {
        font-size: 26px;
    }

    .tech-features li {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .spacer-box {
        display: none;
    }

    .success-card {
        grid-template-columns: 1fr;
        padding: 25px 20px;
        gap: 20px;
    }
.client-logo {
        width: 60px;
        height: 60px;
    }

    .card-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .metric-item {
        padding: 10px;
    }

    .screenshot-preview {
        height: 350px;
    }

    .screenshot-preview:hover img {
        transform: translateY(calc(-100% + 350px));
    }

    .benefit-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px 15px;
        gap: 15px;
    }

    .benefit-icon {
        margin: 0 auto;
        width: 45px;
        height: 45px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-text h4, .benefit-text p {
        text-align: center;
    }

    .card-description {
        text-align: left;
    }

    .service-card {
        padding: 22px 18px;
        gap: 14px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .why-card {
        padding: 22px 18px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .why-icon i {
        font-size: 22px;
    }

    .stat-card {
        padding: 22px 18px;
    }

    .stat-icon {
        margin-bottom: 14px;
    }

    .client-logo-card {
        padding: 20px 16px;
        min-height: 110px;
    }

    .client-logo-initial {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-icon {
        width: 35px;
        height: 35px;
    }

    .accordion-icon i {
        font-size: 16px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 18px;
    }

    .dropdown-content {
        margin-left: 15px;
    }

    .dropdown-item {
        padding: 12px 18px;
        font-size: 13px;
        gap: 10px;
        margin: 4px 8px;
    }

    .dropdown-item i {
        font-size: 15px;
    }

    .dropdown-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 5% 50px;
    }

    .glass-button {
        padding: 12px 26px;
        font-size: 13px;
        margin-bottom: 30px;
    }

    .hero-tag {
        padding: 12px 26px;
        font-size: 13px;
        margin-bottom: 30px;
    }

    .hero-btn-primary, .hero-btn-secondary {
        padding: 14px 30px;
        font-size: 13px;
    }

    .request-btn {
        padding: 14px 35px;
        font-size: 13px;
    }

    .section {
        padding: 50px 5%;
        margin-top: 40px;
    }

    .services-section,
    .benefits-section,
    .dev-impact-section,
    .why-choose-section,
    .stats-section,
    .clients-section,
    .faq-section,
    .cta-section {
        padding: 50px 5%;
        margin-top: 40px;
    }

    .service-card,
    .stat-card,
    .why-card,
    .client-logo-card,
    .benefit-item,
    .tech-card {
        border-radius: 18px;
    }

    .success-card {
        border-radius: 20px;
        min-width: min(350px, 95vw);
        max-width: min(350px, 95vw);
    }

    .screenshot-preview {
        height: 300px;
    }

    .screenshot-preview:hover img {
        transform: translateY(calc(-100% + 300px));
    }

    .hamburger {
        width: 42px;
        height: 42px;
    }

    .hamburger i {
        font-size: 20px;
    }

    .menu-overlay {
        max-width: 320px;
    }
}
/* TECHNOLOGIES SECTION - DESKTOP & MOBILE UNIFIED */
.tech-section {
    min-height: auto;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 8vh;
}

.tech-header {
    text-align: center;
    padding: 0 5% 12px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.tech-header .section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 6px;
    margin: 0 auto 6px auto;
    padding: 0;
}

.tech-header .section-description {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    line-height: 1.4;
    margin: 0 auto;
    padding: 0;
    max-width: 90%;
}

.horizontal-container {
    display: flex;
    height: 80vh;
    align-items: center;
    width: 100%;
    overflow: hidden;
    will-change: transform;
    flex-shrink: 0;
    margin-top: 0;
}

.horizontal-wrapper {
    display: flex;
    gap: 16px;
    padding: 0 3%;
    align-items: center;
    height: 100%;
}

.spacer-box {
    min-width: 12vw;
    height: 100%;
    visibility: hidden;
    flex-shrink: 0;
}

.tech-card {
    min-width: 260px;
    max-width: 260px;
    height: 360px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tech-card:hover {
    border-color: rgba(180, 75, 255, 0.6);
    transform: scale(1.04);
    box-shadow: 0 22px 55px rgba(180, 75, 255, 0.5);
}

.tech-card .tech-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.tech-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(180, 75, 255, 0.4);
    flex-shrink: 0;
}

.tech-logo i {
    font-size: 20px;
    color: #FF69B4;
}

.tech-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1px;
    line-height: 1.2;
    margin: 0 0 1px 0;
}

.tech-info p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #B44BFF;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 6px 0;
    flex: 1;
    overflow: hidden;
}

.tech-features li {
    font-size: 0.75rem;
    color: rgba(229, 229, 229, 0.72);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    justify-content: flex-start;
}

.tech-features li i {
    color: #FF69B4;
    font-size: 11px;
    flex-shrink: 0;
    min-width: 11px;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 7px;
    flex-shrink: 0;
}

.tech-stat {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 7px;
    text-align: center;
    overflow: hidden;
}

.tech-stat .stat-number {
    font-size: 0.85rem;
    font-weight: 900;
    background: linear-gradient(135deg, #B44BFF, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 1px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tech-stat .stat-text {
    font-size: 0.58rem;
    color: rgba(229, 229, 229, 0.5);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* DESKTOP VERSION - HORIZONTAL SCROLL */
@media (min-width: 769px) {
    .tech-section {
        min-height: 100vh;
        padding-top: 8vh;
    }

    .horizontal-container {
        height: 80vh;
        overflow: hidden;
    }

    .horizontal-wrapper {
        padding: 0 3%;
    }

    .spacer-box {
        display: block;
    }

    .tech-card {
        min-width: 260px;
        max-width: 260px;
        height: 360px;
    }

    .tech-features li {
        justify-content: flex-start;
    }

    @media (min-width: 1400px) {
        .tech-card {
            min-width: 280px;
            max-width: 280px;
            height: 380px;
            padding: 18px;
        }

        .tech-features li {
            font-size: 0.77rem;
        }
    }
}

/* TABLET & MOBILE VERSION - VERTICAL STACK */
@media (max-width: 768px) {
    .tech-section {
        padding: 40px 0 60px 0;
        min-height: auto;
        height: auto;
    }

    .tech-header {
        padding: 0 5% 30px 5%;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tech-header .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 8px;
        margin: 0 auto 8px auto;
        padding: 0;
    }

    .tech-header .section-description {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        line-height: 1.5;
        margin: 0 auto;
        padding: 0;
        max-width: 95%;
    }

    .horizontal-container {
        height: auto;
        overflow: visible;
        margin-top: 0;
        display: block;
    }

    .horizontal-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 5%;
        align-items: stretch;
        width: 100%;
        height: auto;
    }

    .spacer-box {
        display: none !important;
    }

    .tech-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 24px 18px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .tech-card .tech-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        width: 100%;
    }

    .tech-logo {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }

    .tech-logo i {
        font-size: 24px;
    }

    .tech-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
.tech-info h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
    }

    .tech-info p {
        font-size: 0.7rem;
        margin: 0;
    }

    .tech-features {
        list-style: none;
        padding: 0;
        margin: 12px 0 16px 0;
        width: 100%;
        text-align: left;
    }

    .tech-features li {
        font-size: 0.85rem;
        color: rgba(229, 229, 229, 0.72);
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        margin: 0;
    }

    .tech-features li:last-child {
        border-bottom: none;
    }

    .tech-features li i {
        color: #FF69B4;
        font-size: 13px;
        flex-shrink: 0;
    }

    .tech-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 16px;
        width: 100%;
    }

    .tech-stat {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        padding: 12px;
        text-align: center;
        overflow: hidden;
    }

    .tech-stat .stat-number {
        font-size: 1rem;
        font-weight: 900;
        background: linear-gradient(135deg, #B44BFF, #FF69B4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .tech-stat .stat-text {
        font-size: 0.7rem;
        color: rgba(229, 229, 229, 0.5);
        text-transform: uppercase;
        line-height: 1.2;
        letter-spacing: 0.8px;
    }
}

/* SMALL MOBILE - EXTRA ADJUSTMENTS */
@media (max-width: 480px) {
    .tech-section {
        padding: 30px 0 50px 0;
    }

    .tech-header {
        padding: 0 5% 25px 5%;
    }

    .tech-card {
        padding: 20px 16px;
        align-items: flex-start;
        text-align: left;
    }

    .tech-card .tech-header {
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 14px;
        width: 100%;
    }

    .tech-logo {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .tech-logo i {
        font-size: 22px;
    }

    .tech-info h3 {
        font-size: 1rem;
    }

    .tech-features {
        text-align: left;
    }

    .tech-features li {
        font-size: 0.8rem;
        padding: 6px 0;
        justify-content: flex-start;
    }

    .tech-features li i {
        font-size: 12px;
    }

    .tech-stats {
        gap: 10px;
        margin-top: 14px;
    }

    .tech-stat {
        padding: 10px;
    }

    .tech-stat .stat-number {
        font-size: 0.9rem;
    }

    .tech-stat .stat-text {
        font-size: 0.65rem;
    }
}
