/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #E8F0F2 0%, #F5E6D3 50%, #E8F0F2 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 120px;
    position: relative;
    overflow: hidden;
    background: #000000;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 40px;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-square {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 16px;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Hero Content */
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Corner Decorations */
.corner-dot {
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 4px;
    position: absolute;
}

.corner-top-left {
    top: -10px;
    left: -10px;
}

.corner-top-right {
    top: -10px;
    right: -10px;
}

.corner-bottom-left {
    bottom: -10px;
    left: -10px;
}

.corner-bottom-right {
    bottom: -10px;
    right: -10px;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.main-title {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.title-line-1 {
    color: #ffffff;
}

.title-line-2 {
    color: #cccccc;
}

.subtitle {
    font-size: clamp(18px, 3vw, 28px);
    color: #999999;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 60px;
}

/* Abstract Shapes */
.shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 400px;
    background: #00D084;
    border-radius: 200px 200px 0 0;
    transform: rotate(-15deg);
    right: 10%;
    top: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid #FF6B35;
    right: 25%;
    top: 40%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #FFD700;
    border-radius: 0 0 150px 0;
    left: 5%;
    bottom: 20%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: #FF6B35;
    border-radius: 50%;
    left: 15%;
    top: 30%;
    animation: pulse 3s ease-in-out infinite;
}

/* Curved Lines */
.curve-line {
    position: absolute;
    stroke: #FF6B35;
    stroke-width: 3;
    fill: none;
    opacity: 0.6;
    animation: draw 2s ease-in-out;
}

.curve-1 {
    left: 10%;
    bottom: 15%;
}

.curve-2 {
    right: 15%;
    top: 20%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-30px) rotate(-15deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes draw {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Hero Image */
.hero-image {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

/* Bottom Navigation Pills */
.bottom-nav {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    outline: none;
}

.nav-pill.breathe {
    background: white;
    color: #1a1a1a;
}

.nav-pill.learn {
    background: #00D084;
    color: white;
}

.nav-pill.create {
    background: #FF6B35;
    color: white;
}

.nav-pill.effortlessly {
    background: #1a1a1a;
    color: white;
}

.nav-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section - Stacked Cards avec Glassmorphism */
.services {
    padding: 120px 40px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F0F2 100%);
    min-height: 400vh;
}

.services-wrapper {
    position: sticky;
    top: 100px;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.services-stack {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 550px;
    perspective: 1000px;
}

.service-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 70px 60px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* État initial - toutes les cartes empilées */
.service-card {
    top: 0;
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    z-index: 60;
}

/* Décalage vertical pour voir les cartes empilées */
.service-card:nth-child(1) {
    z-index: 60;
}

.service-card:nth-child(2) {
    top: 15px;
    transform: translateX(-50%) translateY(0) scale(0.98);
    z-index: 50;
    opacity: 0.9;
}

.service-card:nth-child(3) {
    top: 30px;
    transform: translateX(-50%) translateY(0) scale(0.96);
    z-index: 40;
    opacity: 0.8;
}

.service-card:nth-child(4) {
    top: 45px;
    transform: translateX(-50%) translateY(0) scale(0.94);
    z-index: 30;
    opacity: 0.7;
}

.service-card:nth-child(5) {
    top: 60px;
    transform: translateX(-50%) translateY(0) scale(0.92);
    z-index: 20;
    opacity: 0.6;
}

.service-card:nth-child(6) {
    top: 75px;
    transform: translateX(-50%) translateY(0) scale(0.90);
    z-index: 10;
    opacity: 0.5;
}

/* Carte active (au premier plan) */
.service-card.active {
    top: 0 !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
    opacity: 1 !important;
    z-index: 100 !important;
}

/* Carte qui part (slide vers le haut et disparaît) */
.service-card.prev {
    transform: translateX(-50%) translateY(-150px) scale(0.9) !important;
    opacity: 0 !important;
    z-index: 5 !important;
    pointer-events: none;
}

/* Cartes suivantes (restent empilées) */
.service-card.next-1 {
    top: 15px !important;
    transform: translateX(-50%) translateY(0) scale(0.98) !important;
    z-index: 90 !important;
    opacity: 0.9 !important;
}

.service-card.next-2 {
    top: 30px !important;
    transform: translateX(-50%) translateY(0) scale(0.96) !important;
    z-index: 80 !important;
    opacity: 0.8 !important;
}

.service-card.next-3 {
    top: 45px !important;
    transform: translateX(-50%) translateY(0) scale(0.94) !important;
    z-index: 70 !important;
    opacity: 0.7 !important;
}

.service-card.next-4 {
    top: 60px !important;
    transform: translateX(-50%) translateY(0) scale(0.92) !important;
    z-index: 60 !important;
    opacity: 0.6 !important;
}

.service-card.next-5 {
    top: 75px !important;
    transform: translateX(-50%) translateY(0) scale(0.90) !important;
    z-index: 50 !important;
    opacity: 0.5 !important;
}

/* Couleurs avec glassmorphism */
.service-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 229, 233, 0.8), rgba(255, 245, 233, 0.8));
    border-color: rgba(255, 215, 0, 0.3);
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.8), rgba(232, 240, 242, 0.8));
    border-color: rgba(0, 208, 132, 0.3);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(240, 232, 248, 0.8), rgba(255, 229, 240, 0.8));
    border-color: rgba(255, 107, 157, 0.3);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.8), rgba(240, 248, 232, 0.8));
    border-color: rgba(0, 208, 132, 0.3);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(255, 240, 229, 0.8), rgba(255, 229, 233, 0.8));
    border-color: rgba(255, 107, 53, 0.3);
}

.service-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(232, 240, 248, 0.8), rgba(229, 240, 255, 0.8));
    border-color: rgba(199, 206, 234, 0.3);
}

.service-card:nth-child(7) {
    background: linear-gradient(135deg, rgba(255, 245, 229, 0.8), rgba(255, 235, 215, 0.8));
    border-color: rgba(255, 165, 0, 0.3);
}

.service-card:nth-child(8) {
    background: linear-gradient(135deg, rgba(240, 232, 255, 0.8), rgba(229, 240, 255, 0.8));
    border-color: rgba(138, 43, 226, 0.3);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B35;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.section-description {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-number::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, currentColor, transparent);
    opacity: 0.3;
}

.service-icon {
    font-size: 60px;
    margin-bottom: 30px;
    display: block;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Portfolio Section - Black Grid Style */
.portfolio {
    padding: 120px 40px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Grille de fond */
.portfolio::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.portfolio .section-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.portfolio .section-label {
    color: #FFD700;
}

.portfolio .section-title {
    color: white;
}

.portfolio .section-description {
    color: #999;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.portfolio-visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px;
    position: relative;
}

/* Couleurs par projet */
.portfolio-item:nth-child(1) .portfolio-visual {
    background: #FFD700;
    color: #0a0a0a;
}

.portfolio-item:nth-child(2) .portfolio-visual {
    background: #FF6B9D;
    color: white;
}

.portfolio-item:nth-child(3) .portfolio-visual {
    background: #00D9A3;
    color: #0a0a0a;
}

.portfolio-arrow {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    display: block;
}

.portfolio-client {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.portfolio-role {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.portfolio-image-container {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.portfolio-emoji {
    font-size: 120px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* CTA Button */
.portfolio-cta {
    text-align: center;
    position: relative;
    z-index: 10;
}

.portfolio-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: white;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid white;
}

.portfolio-cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

/* Formes décoratives */
.portfolio-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 5;
    animation: floatShape 8s ease-in-out infinite;
}

.portfolio-shape-1 {
    width: 150px;
    height: 150px;
    background: rgba(0, 217, 163, 0.3);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.portfolio-shape-2 {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 157, 0.3);
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Contact Section */
.contact {
    padding: 120px 40px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: clamp(50px, 10vw, 100px);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.contact-content p {
    font-size: 24px;
    color: #999;
    margin-bottom: 50px;
}

.contact-button {
    display: inline-block;
    padding: 20px 50px;
    background: white;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    padding: 60px 40px 40px;
    background: #0a0a0a;
    color: white;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s;
}

.social-link:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #666;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .shape-1, .shape-2, .shape-3, .shape-4,
    .portfolio-shape {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-stack {
        max-width: 700px;
        height: 500px;
    }

    .service-card {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 100px;
    }

    .top-bar {
        padding: 15px 20px;
    }

    .top-bar.scrolled {
        padding: 12px 20px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-square {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .main-title {
        font-size: clamp(32px, 10vw, 80px);
    }

    .subtitle {
        font-size: clamp(14px, 3.5vw, 24px);
    }

    .bottom-nav {
        bottom: 15px;
        left: 20px;
        right: 20px;
        transform: none;
        flex-wrap: nowrap;
        padding: 8px;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bottom-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-pill {
        padding: 11px 18px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .services {
        padding: 80px 20px;
        min-height: 400vh;
    }

    .services-wrapper {
        top: 80px;
        height: calc(100vh - 160px);
    }

    .services-stack {
        max-width: 100%;
        height: 480px;
    }

    .service-card {
        padding: 50px 30px;
        border-radius: 25px;
    }

    .service-card:nth-child(2) {
        top: 12px;
    }

    .service-card:nth-child(3) {
        top: 24px;
    }

    .service-card:nth-child(4) {
        top: 36px;
    }

    .service-card:nth-child(5) {
        top: 48px;
    }

    .service-card:nth-child(6) {
        top: 60px;
    }

    .service-card:nth-child(7) {
        top: 72px;
    }

    .service-card:nth-child(8) {
        top: 84px;
    }

    .service-card.next-1 {
        top: 12px !important;
    }

    .service-card.next-2 {
        top: 24px !important;
    }

    .service-card.next-3 {
        top: 36px !important;
    }

    .service-card.next-4 {
        top: 48px !important;
    }

    .service-card.next-5 {
        top: 60px !important;
    }

    .service-card.next-6 {
        top: 72px !important;
    }

    .service-card.next-7 {
        top: 84px !important;
    }

    .service-icon {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-text {
        font-size: 15px;
    }

    .portfolio {
        padding: 80px 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item {
        aspect-ratio: 4/3;
    }

    .portfolio-visual {
        padding: 30px;
    }

    .portfolio-client {
        font-size: 28px;
    }

    .portfolio-role {
        font-size: 14px;
    }

    .portfolio-emoji {
        font-size: 80px;
    }

    .portfolio-cta-button {
        padding: 16px 40px;
        font-size: 16px;
    }

    .contact {
        padding: 80px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 12px 15px;
    }

    .top-bar.scrolled {
        padding: 10px 15px;
    }

    .logo {
        font-size: 14px;
    }

    .logo-square {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .corner-dot {
        width: 10px;
        height: 10px;
    }

    .main-title {
        font-size: clamp(28px, 9vw, 50px);
        line-height: 1;
    }

    .subtitle {
        font-size: clamp(13px, 3.5vw, 18px);
    }

    .bottom-nav {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 6px;
        gap: 6px;
    }

    .nav-pill {
        padding: 9px 12px;
        font-size: 11px;
        border-radius: 20px;
    }

    .services-stack {
        height: 420px;
    }

    .service-card {
        padding: 40px 25px;
    }

    .service-number {
        font-size: 12px;
    }

    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .service-text {
        font-size: 14px;
    }

    .service-card:nth-child(2),
    .service-card.next-1 {
        top: 10px !important;
    }

    .service-card:nth-child(3),
    .service-card.next-2 {
        top: 20px !important;
    }

    .service-card:nth-child(4),
    .service-card.next-3 {
        top: 30px !important;
    }

    .service-card:nth-child(5),
    .service-card.next-4 {
        top: 40px !important;
    }

    .service-card:nth-child(6),
    .service-card.next-5 {
        top: 50px !important;
    }

    .service-card:nth-child(7),
    .service-card.next-6 {
        top: 60px !important;
    }

    .service-card:nth-child(8),
    .service-card.next-7 {
        top: 70px !important;
    }

    .portfolio-visual {
        padding: 25px;
    }

    .portfolio-arrow {
        font-size: 24px;
    }

    .portfolio-client {
        font-size: 24px;
    }

    .portfolio-role {
        font-size: 13px;
    }

    .portfolio-emoji {
        font-size: 60px;
    }

    .portfolio-cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}
