* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

/* Background Mobile Mockups */
.bg-mockups {
    position: absolute;
    top: -20px;
    right: -50px;
    width: 60%;
    height: 120%;
    opacity: 0.08;
    z-index: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 800"><defs><pattern id="wireframe" patternUnits="userSpaceOnUse" width="4" height="4"><rect width="4" height="4" fill="%23f1f5f9"/><rect width="2" height="2" fill="%23e2e8f0"/></pattern></defs><g transform="translate(50,50)"><rect x="0" y="0" width="100" height="180" rx="12" fill="white" stroke="%23cbd5e1" stroke-width="2"/><rect x="10" y="15" width="80" height="6" rx="3" fill="%23e2e8f0"/><rect x="10" y="30" width="80" height="40" rx="4" fill="%23f1f5f9"/><rect x="10" y="80" width="35" height="4" rx="2" fill="%23cbd5e1"/><rect x="10" y="90" width="60" height="4" rx="2" fill="%23cbd5e1"/><rect x="10" y="100" width="45" height="4" rx="2" fill="%23cbd5e1"/><circle cx="80" cy="150" r="8" fill="%236366f1"/></g><g transform="translate(200,30)"><rect x="0" y="0" width="100" height="180" rx="12" fill="white" stroke="%23cbd5e1" stroke-width="2"/><rect x="10" y="15" width="80" height="8" rx="4" fill="%23e2e8f0"/><rect x="10" y="35" width="80" height="50" rx="6" fill="%23f1f5f9"/><rect x="15" y="95" width="25" height="25" rx="4" fill="%23cbd5e1"/><rect x="45" y="95" width="25" height="25" rx="4" fill="%23cbd5e1"/><rect x="75" y="95" width="10" height="25" rx="2" fill="%23cbd5e1"/><rect x="10" y="130" width="80" height="6" rx="3" fill="%23e2e8f0"/></g><g transform="translate(350,80)"><rect x="0" y="0" width="100" height="180" rx="12" fill="white" stroke="%23cbd5e1" stroke-width="2"/><rect x="10" y="20" width="80" height="30" rx="4" fill="%236366f1" opacity="0.1"/><rect x="20" y="28" width="60" height="4" rx="2" fill="%236366f1"/><rect x="20" y="35" width="40" height="4" rx="2" fill="%236366f1"/><rect x="10" y="60" width="80" height="2" rx="1" fill="%23e2e8f0"/><rect x="10" y="70" width="70" height="4" rx="2" fill="%23cbd5e1"/><rect x="10" y="80" width="60" height="4" rx="2" fill="%23cbd5e1"/><rect x="10" y="90" width="80" height="4" rx="2" fill="%23cbd5e1"/><rect x="10" y="110" width="25" height="20" rx="3" fill="%2310b981" opacity="0.2"/></g><g transform="translate(120,250)"><rect x="0" y="0" width="120" height="200" rx="15" fill="white" stroke="%23cbd5e1" stroke-width="2"/><rect x="15" y="20" width="90" height="10" rx="5" fill="%23e2e8f0"/><rect x="15" y="40" width="90" height="60" rx="8" fill="%23f8fafc"/><rect x="25" y="50" width="70" height="6" rx="3" fill="%23cbd5e1"/><rect x="25" y="60" width="50" height="6" rx="3" fill="%23cbd5e1"/><rect x="15" y="110" width="90" height="2" rx="1" fill="%23e2e8f0"/><rect x="15" y="125" width="25" height="25" rx="4" fill="%2310b981" opacity="0.3"/><rect x="50" y="125" width="25" height="25" rx="4" fill="%236366f1" opacity="0.3"/><rect x="80" y="125" width="25" height="25" rx="4" fill="%23f59e0b" opacity="0.3"/></g></svg>');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.main-content {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
}

/* Header */
.header {
    text-align: left;
    margin-bottom: 80px;
}

.logo {
    font-size: 3rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    margin-right: 15px;
    vertical-align: middle;
    border-radius: 4px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3rem;
    color: #475569;
    max-width: 600px;
    font-weight: 400;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px 20px 8px 8px;
    margin-bottom: 30px;
}

.service-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 160px;
    margin: 20px auto 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Central glowing circle */
.central-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.central-icon {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
}

/* Surrounding icons */
.orbit-icon {
    position: absolute;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Dotted connecting lines */
.connecting-line {
    position: absolute;
    border: 1px dotted rgba(16, 185, 129, 0.4);
    z-index: 1;
}

/* Transparency service - Image 1 (cube with surrounding icons) */
.service-transparency .central-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
}

.service-transparency .central-icon::before {
    content: '📦';
}

.service-transparency .orbit-icon:nth-child(2) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.service-transparency .orbit-icon:nth-child(2)::before { content: '📊'; }

.service-transparency .orbit-icon:nth-child(3) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.service-transparency .orbit-icon:nth-child(3)::before { content: '⚡'; }

.service-transparency .orbit-icon:nth-child(4) {
    bottom: 20px;
    right: 30px;
}
.service-transparency .orbit-icon:nth-child(4)::before { content: '📋'; }

.service-transparency .orbit-icon:nth-child(5) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.service-transparency .orbit-icon:nth-child(5)::before { content: '💬'; }

.service-transparency .orbit-icon:nth-child(6) {
    bottom: 20px;
    left: 30px;
}
.service-transparency .orbit-icon:nth-child(6)::before { content: '🔍'; }

/* Idea service - Image 2 (bulb with surrounding icons) */
.service-idea .central-icon::before {
    content: '💡';
}

.service-idea .orbit-icon:nth-child(2) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.service-idea .orbit-icon:nth-child(2)::before { content: '🎯'; }

.service-idea .orbit-icon:nth-child(3) {
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
.service-idea .orbit-icon:nth-child(3)::before { content: '⚡'; }

.service-idea .orbit-icon:nth-child(4) {
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
}
.service-idea .orbit-icon:nth-child(4)::before { content: '👁️'; }

/* Tech service - Image 3 (shield with surrounding icons) */
.service-tech .central-icon::before {
    content: '🛡️';
}

.service-tech .orbit-icon:nth-child(2) {
    top: 25px;
    right: 25px;
}
.service-tech .orbit-icon:nth-child(2)::before { content: '☁️'; }

.service-tech .orbit-icon:nth-child(3) {
    bottom: 25px;
    right: 25px;
}
.service-tech .orbit-icon:nth-child(3)::before { content: '📱'; }

.service-tech .orbit-icon:nth-child(4) {
    bottom: 25px;
    left: 25px;
}
.service-tech .orbit-icon:nth-child(4)::before { content: '💬'; }

.service-tech .orbit-icon:nth-child(5) {
    top: 25px;
    left: 25px;
}
.service-tech .orbit-icon:nth-child(5)::before { content: '📱'; }

/* Connecting lines for each service */
.service-transparency .connecting-line:nth-child(7) {
    top: 60px;
    left: 50%;
    width: 0;
    height: 20px;
    transform: translateX(-50%);
}

.service-transparency .connecting-line:nth-child(8) {
    top: 50%;
    right: 60px;
    width: 20px;
    height: 0;
    transform: translateY(-50%);
}

.service-transparency .connecting-line:nth-child(9) {
    bottom: 60px;
    right: 70px;
    width: 15px;
    height: 0;
}

.service-transparency .connecting-line:nth-child(10) {
    top: 50%;
    left: 60px;
    width: 20px;
    height: 0;
    transform: translateY(-50%);
}

.service-transparency .connecting-line:nth-child(11) {
    bottom: 60px;
    left: 70px;
    width: 15px;
    height: 0;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: center;
}

.service-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.floating-1 {
    top: 10%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: #6366f1;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    top: 60%;
    right: 8%;
    width: 40px;
    height: 40px;
    background: #8b5cf6;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite reverse;
}

.floating-3 {
    top: 35%;
    right: 25%;
    width: 30px;
    height: 30px;
    background: #10b981;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .main-content {
        padding: 40px 0 60px;
    }

    .header {
        text-align: center;
        margin-bottom: 50px;
    }

    .logo {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .main-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .service-card {
        padding: 30px;
        margin: 0 10px;
    }

    .service-image {
        height: 140px;
        margin: 50px auto 30px;
    }

    .central-glow {
        width: 60px;
        height: 60px;
    }

    .central-icon {
        font-size: 1.5rem;
    }

    .orbit-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .bg-mockups {
        display: none;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 25px;
        margin: 0 5px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

/* Animation for cards on load */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.footer-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-link:hover::after {
    transform: translateX(3px);
}