/* ========================================
   MODERN DESIGN STYLES
   ======================================== */

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #b4ff39;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #b4ff39;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.05s ease;
    transform: translate(-50%, -50%);
}

.cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(180, 255, 57, 0.15), transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

/* Mouse Trail */
.mouse-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #b4ff39, #7c3aed);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    animation: trail-fade 0.8s ease-out forwards;
}

@keyframes trail-fade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #b4ff39;
    animation: ripple-animation 1s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple-animation {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #b4ff39, #7c3aed);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #9333ea, #b4ff39);
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #b4ff39, #0ea5e9);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* ========================================
   HERO MODERN
   ======================================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(180, 255, 57, 0.1);
    border: 1px solid rgba(180, 255, 57, 0.3);
    border-radius: 50px;
    color: #b4ff39;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: pulse-glow 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 18px;
    animation: rotate-gentle 10s linear infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(180, 255, 57, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(180, 255, 57, 0.4);
    }
}

@keyframes rotate-gentle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title-modern {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: #ffffff;
    background: transparent;
    overflow: visible;
}

.title-line {
    display: block;
    background: transparent;
    margin-bottom: 10px;
    overflow: visible;
}

.gradient-text {
    color: #b4ff39 !important;
    display: block;
    background: transparent;
    margin-top: 10px;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #b4ff39, #9ae622);
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(180, 255, 57, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(180, 255, 57, 0.4);
    color: #0a0a0a;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
}

.btn-arrow, .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-modern span {
    position: relative;
    z-index: 1;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 48px;
    font-weight: 900;
    color: #b4ff39 !important;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Floating 3D Cards */
.floating-cards-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-3d-card {
    width: 200px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-3d-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(180, 255, 57, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-3d-card:hover::before {
    opacity: 0;
}

.card-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(180, 255, 57, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-3d-card:hover .card-glow {
    opacity: 0;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 32px;
}

.card-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* Animasyonlar kaldırıldı - kartlar sabit */
.card-purple { }
.card-green { }
.card-blue { }

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #b4ff39;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator p {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SERVICES MODERN
   ======================================== */

.services-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(180, 255, 57, 0.1);
    border: 1px solid rgba(180, 255, 57, 0.2);
    border-radius: 50px;
    color: #b4ff39;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.section-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .gradient-text {
    color: #b4ff39 !important;
    -webkit-text-fill-color: #b4ff39 !important;
    background: none !important;
}

.section-subtitle,
.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    color: #b4ff39 !important;
    display: inline-block;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(180, 255, 57, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0;
}

.service-card:hover {
    /* Hover effects disabled */
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 255, 57, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.service-card:hover::after {
    width: 0;
    height: 0;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: none;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-glow {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(180, 255, 57, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .service-glow {
    opacity: 0;
}

/* ========================================
   CLIENTS MODERN
   ======================================== */

.clients-modern {
    padding: 100px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.clients-showcase {
    margin-top: 60px;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    user-select: none;
    pointer-events: none;
}

.marquee-content {
    display: flex;
    gap: 80px;
    animation: marquee 40s linear infinite;
    will-change: transform;
    white-space: nowrap;
}

.marquee-reverse .marquee-content {
    animation: marquee-reverse 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.client-logo {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

/* ========================================
   CTA MODERN
   ======================================== */

.cta-modern {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.cta-gradient-1,
.cta-gradient-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.cta-gradient-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #b4ff39, #7c3aed);
    top: -300px;
    left: -300px;
}

.cta-gradient-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #7c3aed, #0ea5e9);
    bottom: -250px;
    right: -250px;
}

.cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-wrapper {
    margin-bottom: 30px;
}

.cta-icon {
    font-size: 64px;
    display: inline-block;
    animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.cta-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #ffffff;
    color: #0a0a0a;
}

.btn-white:hover {
    background: #b4ff39;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(180, 255, 57, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .floating-cards-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 60px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 60px 0 40px;
        overflow-x: hidden;
        min-height: auto;
    }
    
    .hero-content-wrapper {
        overflow-x: hidden;
        padding: 0 20px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-title-modern {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .title-line {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-modern {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-arrow, .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 32px;
    }
    
    .metric-item {
        text-align: center;
    }
    
    .metric-item:last-child {
        grid-column: 1 / -1;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .metric-divider {
        display: none;
    }
    
    .metric-value {
        font-size: 36px;
    }
    
    .metric-label {
        font-size: 13px;
    }
    
    .floating-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
        margin-top: 40px;
    }
    
    .floating-3d-card {
        width: 100%;
        height: 115px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .floating-3d-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(180, 255, 57, 0.3);
    }
    
    .floating-3d-card:last-child {
        grid-column: 1 / -1;
        max-width: 60%;
        margin: 0 auto;
    }
    
    .card-icon svg {
        width: 30px;
        height: 30px;
        stroke-width: 1.8;
    }
    
    .card-content {
        padding: 10px;
        gap: 8px;
    }
    
    .card-content h3 {
        font-size: 13px;
        font-weight: 600;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .services-modern,
    .clients-modern,
    .cta-modern {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .custom-cursor,
    .cursor-dot,
    .cursor-glow {
        display: none;
    }
}

/* Magnetic Effect for Buttons */
.btn-modern {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modern.magnetic {
    will-change: transform;
}

/* Sparkle Effect */
.sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #b4ff39;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9996;
    animation: sparkle-animation 1s ease-out forwards;
}

@keyframes sparkle-animation {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(180deg) translateY(-50px);
    }
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
    display: inline-block;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: text-reveal-animation 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes text-reveal-animation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Particle Float */
.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: rgba(180, 255, 57, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9995;
    animation: particle-float 3s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .hero-modern {
        padding: 50px 0 30px;
    }
    
    .hero-content-wrapper {
        padding: 0 16px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    .hero-title-modern {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .title-line {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        gap: 10px;
    }
    
    .btn-modern {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }
    
    .metric-item:last-child {
        grid-column: 1;
        max-width: 100%;
    }
    
    .metric-value {
        font-size: 32px;
    }
    
    .metric-label {
        font-size: 12px;
    }
    
    .floating-cards-container {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .floating-3d-card {
        width: 100%;
        height: 120px;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .floating-3d-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }
    
    .card-icon {
        margin-bottom: 8px;
    }
    
    .card-icon svg {
        width: 32px;
        height: 32px;
        stroke-width: 1.8;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .card-content h3 {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 15px;
    }
    
    .service-card p {
        font-size: 12px;
    }
    
    .cta-trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .services-modern,
    .clients-modern,
    .cta-modern {
        padding: 40px 0;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   ABOUT FEATURES SHOWCASE - ELEGANT
   ======================================== */

.about-features-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.feature-item-elegant {
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-elegant-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-elegant-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #b4ff39 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-elegant-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(180, 255, 57, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.feature-item-elegant:hover .feature-elegant-inner::before {
    opacity: 1;
}

.feature-item-elegant:hover .feature-elegant-inner::after {
    width: 300px;
    height: 300px;
}

.feature-item-elegant:hover .feature-elegant-inner {
    transform: translateX(8px);
    border-color: rgba(180, 255, 57, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(180, 255, 57, 0.1);
}

.feature-icon-elegant {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(180, 255, 57, 0.15), rgba(124, 58, 237, 0.15));
    border-radius: 14px;
    transition: all 0.4s ease;
}

.feature-item-elegant:hover .icon-glow-bg {
    background: linear-gradient(135deg, rgba(180, 255, 57, 0.25), rgba(124, 58, 237, 0.25));
    box-shadow: 0 0 30px rgba(180, 255, 57, 0.3);
    transform: rotate(10deg) scale(1.05);
}

.feature-icon-elegant svg {
    position: relative;
    width: 28px;
    height: 28px;
    stroke: #b4ff39;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-item-elegant:hover .feature-icon-elegant svg {
    stroke: #fff;
    filter: drop-shadow(0 0 8px rgba(180, 255, 57, 0.8));
    transform: scale(1.1);
}

.feature-content-elegant {
    flex: 1;
}

.feature-content-elegant h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.feature-content-elegant p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.feature-item-elegant:hover .feature-content-elegant h4 {
    color: #b4ff39;
}

.feature-item-elegant:hover .feature-content-elegant p {
    color: rgba(255, 255, 255, 0.85);
}

/* Gradient variations for each item */
.feature-item-elegant:nth-child(1) .icon-glow-bg {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.1));
}

.feature-item-elegant:nth-child(2) .icon-glow-bg {
    background: linear-gradient(135deg, rgba(180, 255, 57, 0.2), rgba(34, 197, 94, 0.1));
}

.feature-item-elegant:nth-child(3) .icon-glow-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
}

.feature-item-elegant:nth-child(1):hover .icon-glow-bg {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(124, 58, 237, 0.2));
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.feature-item-elegant:nth-child(2):hover .icon-glow-bg {
    background: linear-gradient(135deg, rgba(180, 255, 57, 0.3), rgba(34, 197, 94, 0.2));
    box-shadow: 0 0 30px rgba(180, 255, 57, 0.4);
}

.feature-item-elegant:nth-child(3):hover .icon-glow-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .about-features-showcase {
        gap: 12px;
    }
    
    .feature-elegant-inner {
        padding: 20px;
        gap: 16px;
    }
    
    .feature-icon-elegant {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon-elegant svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-content-elegant h4 {
        font-size: 16px;
    }
    
    .feature-content-elegant p {
        font-size: 13px;
    }
}