﻿section::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    left: 50%;
    top: -300px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(146, 146, 172, 0.18), transparent 70%);
    filter: blur(90px);
    z-index: -4;
}

/* =========================
   HERO SECTION
========================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.hero-section {
    margin-bottom: 5em;
}

.hero-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: -25px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    z-index: -5;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    opacity: 0.6;
    filter: brightness(0.6) contrast(1.2);
    mix-blend-mode: soft-light;
    z-index: -10;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, .25), transparent 35%), radial-gradient(circle at bottom left, rgba(168, 85, 247, .18), transparent 35%), linear-gradient(135deg, rgba(5, 8, 22, .92), rgba(15, 23, 42, .82));
}

    .hero-overlay::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(2, 6, 23, .35) 70%, rgba(2, 6, 23, .95) 100%);
    }

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

    .hero-content::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(99, 102, 241, 0.22), transparent 20%);
        filter: blur(60px);
        z-index: -1;
    }

.hero-actions a {
    font-size: .99em;
    transition: all ease .3s;
    padding-left: 3rem;
    padding-right: 3rem;
}

.hero-badge,
.mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    animation: heroFloat 3.5s ease-in-out infinite;
}

@keyframes heroFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.hero-title {
    margin-top: 30px;
    font-size: 3.6rem;
    line-height: 1.5;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #d8b4fe 35%, #818cf8 70%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(129, 140, 248, 0.18);
    letter-spacing: -1px;
}

.hero-subtitle {
    max-width: 760px;
    margin: 30px auto 0;
    color: #cbd5e1;
    line-height: 2.1;
    font-size: 1.15rem;
    letter-spacing: .3px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 45px;
}


.typing-cursor {
    display: inline-block;
    color: #a78bfa;
    animation: blink .8s infinite;
    font-weight: bold;
}

@keyframes blink {

    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

/* =========================
   SECTION TITLES
========================= */
.section-title {
    position: relative;
}

    .section-title::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(99, 102, 241, .18), transparent 70%);
        filter: blur(60px);
        z-index: -1;
    }

    .section-title h2 {
        font-size: 2.6rem;
        font-weight: 800;
        margin-top: 35px;
        line-height: 1.7;
        letter-spacing: -1px;
        background: linear-gradient(180deg, #f0f0f0 0%, #e5cbff 40%, #aa98be 90%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .section-title p {
        opacity: .82;
        font-size: 1.05em;
        font-weight: 800;
        margin-top: 30px;
        line-height: 2.3;
        max-width: 800px;
        text-align: center;
        background: linear-gradient(181deg, #f0f0f0 0%, #e5cbff 40%, #d8c2f1 90%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

/* =========================
   SERVICES
========================= */

.services-section {
    position: relative;
    z-index: 20;
    background: radial-gradient(circle at center, rgba(99, 102, 241, .08), transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(16px);
    border-radius: 34px;
    padding: 0px 00px;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

    .service-card h3::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        margin-top: 14px;
        background: linear-gradient(90deg, #7c3aed, transparent);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #4f46e5, #7c3aed, #818cf8);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-12px);
        border-color: rgba(129, 140, 248, .4);
        box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    }

.service-content {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 25px;
}

.service-preview {
    position: relative;
    /* top: -25px; */
    width: 100%;
    z-index: 5;
    margin-bottom: 1.1em;
    padding: .79em;
}

    .service-preview img {
        width: 100%;
        border-radius: 24px;
        transition: transform .5s ease, filter .5s ease;
        /* transform:
           perspective(1400px) rotateX(14deg); */

        filter: drop-shadow(0 25px 40px rgba(79, 70, 229, .35));
        opacity: .9;
    }

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

    .service-features span {
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .06);
        color: #cbd5e1;
        font-size: .82rem;
    }

/* .service-card:hover .service-preview img {

       transform:
           scale(1.05);
   } */

.service-card h3 {
    color: white;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 18px;
    opacity: .9;
}

.service-card p {
    color: #94a3b8;
    line-height: 2;
    margin: 0;
}

/* =========================
   STATS
========================= */

.stats-section {
    position: relative;
    z-index: 3;
}

.stat-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border-radius: 30px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, .05);
    backdrop-filter: blur(16px);
    transition: .35s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(129, 140, 248, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/*
   .service-card::before {
       content: '';

       position: absolute;

       width: 250px;
       height: 250px;

       left: var(--x);
       top: var(--y);

       transform: translate(-50%, -50%);

       background:
           radial-gradient(circle,
               rgba(129, 140, 248, 0.18),
               transparent 70%);

       opacity: 0;

       transition: opacity .3s ease;

       pointer-events: none;
   }

   .service-card:hover::before {
       opacity: 1;
   } */

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(129, 140, 248, .35);
}

.stat-card h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: .95rem;
}


/* =========================
   FLOATING GLOW
========================= */

.services-section::before,
.stats-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, .08), transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.services-section::before {
    top: -100px;
    right: -150px;
}

.stats-section::before {
    bottom: -150px;
    left: -150px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .hero-title {
        font-size: 3.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-box h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    .hero-bg {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: .95rem;
        line-height: 1.9;
    }

    .hero-actions a {
        font-size: .88em;
        padding-left: .5em;
        padding-right: .5em;
        min-width: 11em;
    }

    .services-grid {
        padding-right: 1em;
        padding-left: 1em;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: .9em;
    }

    .service-content h3 {
        font-size: 1.2em;
    }

    .service-content p {
        font-size: .9em;
        line-height: 1.7;
    }

    .service-features span {
        font-size: .7em;
    }

    .section-en-title {
        font-size: .9em;
    }

    .hero-badge {
        font-size: 12px;
    }

    .cta-box {
        padding: 60px 24px;
    }

        .cta-box h2 {
            font-size: 1.8rem;
        }
}

/* =========================
   PORTFOLIO
========================= */
/* =========================
   PORTFOLIO
========================= */

.portfolio-section {
    position: relative;
    margin-top: -60px;
    padding-top: 140px;
    z-index: 10;
}

    .portfolio-section::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        left: 50%;
        top: -250px;
        transform: translateX(-50%);
        background: radial-gradient(circle, rgba(99, 102, 241, .15), transparent 70%);
        filter: blur(90px);
        z-index: -1;
    }

.section-en-title {
    margin-top: 18px;
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    font-family: 'Inter', 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
    opacity: .78;
    letter-spacing: 6px;
}

    /* subtle glow line */
    .section-en-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -12px;
        transform: translateX(-50%);
        width: 70%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(129, 140, 248, .7), transparent);
    }

/* =========================
   LAYOUT
========================= */

.portfolio-layout {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 28px;
    align-items: stretch;
}

.portfolio-side-grid {
    display: grid;
    gap: 28px;
}

/* =========================
   CARD
========================= */

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

    .portfolio-card:hover {
        transform: translateY(-8px);
        border-color: rgba(129, 140, 248, .28);
        box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    }

/* =========================
   IMAGE
========================= */

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .portfolio-image img {
        width: 100%;
        height: 100%;
        opacity: .91;
        object-fit: cover;
        filter: brightness(.84) contrast(1.05);
        transition: transform 1s ease;
    }

    .portfolio-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(2, 6, 23, .85), transparent 40%);
        pointer-events: none;
    }

.portfolio-card:hover img {
    transform: scale(1.04);
}

/* =========================
   OVERLAY
========================= */

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, .92), rgba(2, 6, 23, .15) 55%, transparent 100%);
}

/* =========================
   INFO
========================= */

.portfolio-info {
    position: absolute;
    right: 28px;
    left: 28px;
    bottom: 28px;
    z-index: 5;
}

.portfolio-category {
    display: inline-flex;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    color: #dbe4ff;
    font-size: .78rem;
    margin-bottom: 18px;
}

.portfolio-info h3 {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.5;
}

.portfolio-info p {
    color: #cbd5e1;
    line-height: 2;
    max-width: 90%;
}

/* =========================
   LARGE CARD
========================= */

.portfolio-large {
    min-height: 700px;
}

/* =========================
   SMALL CARDS
========================= */

.portfolio-side-grid .portfolio-card {
    min-height: 215px;
}

.portfolio-side-grid .portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px) {

    .portfolio-layout {
        grid-template-columns: 1fr;
    }

    .portfolio-large {
        min-height: 500px;
    }

    .portfolio-side-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .portfolio-section {
        padding-top: 100px;
    }

    .portfolio-side-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-info {
        right: 20px;
        left: 20px;
        bottom: 20px;
    }

        .portfolio-info h3 {
            font-size: 1.5rem;
        }

        .portfolio-info p {
            max-width: 100%;
            font-size: .9rem;
        }
}

/* =========================
   PORTFOLIO BUTTON
========================= */

.portfolio-more {
    position: relative;
    z-index: 5;
}

.portfolio-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 25px;
    border-radius: 999px;
    text-decoration: none;
    overflow: hidden;
    opacity: .92;
    background: linear-gradient(135deg, rgba(99, 102, 241, .22), rgba(124, 58, 237, .16));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    color: white;
    font-weight: 600;
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

    /* glow */
    .portfolio-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .12), transparent);
        transform: translateX(-100%);
        transition: transform .7s ease;
    }

    .portfolio-btn:hover::before {
        transform: translateX(100%);
    }

    .portfolio-btn:hover {
        transform: translateY(-4px);
        color: #c6aedf;
        border-color: rgba(129, 140, 248, .35);
        box-shadow: 0 18px 40px rgba(79, 70, 229, .28);
    }

    .portfolio-btn span {
        position: relative;
        z-index: 2;
    }

    .portfolio-btn i {
        position: relative;
        z-index: 2;
        font-size: .9rem;
        transition: transform .35s ease;
    }

    .portfolio-btn:hover i {
        transform: translateX(-6px);
    }

.portfolio-more::before {
    content: '';
    display: block;
    width: 180px;
    height: 1px;
    margin: 0 auto 35px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

.portfolio-stats {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

    .portfolio-stats span {
        font-size: .78rem;
        color: #cbd5e1;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .05);
    }

/* =========================
TEAM SECTION
========================= */

.team-section {
    position: relative;
    overflow: visible;
    padding-top: 140px;
    z-index: 5;
}

section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
    z-index: -10;
}

/* =========================
GRID
========================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
    align-items: center;
}

/* =========================
CARD
========================= */

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(22px);
    transition: transform .7s cubic-bezier(.22, 1, .36, 1), border-color .5s ease, box-shadow .5s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 -40px 80px rgba(0, 0, 0, .35);
    text-decoration: none;
    color: inherit;
}

    .team-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .08), transparent);
        transform: translateX(-120%);
        transition: 1.2s;
        z-index: 5;
    }

    .team-card:hover::before {
        transform: translateX(120%);
    }

    .team-card:hover {
        transform: translateY(-14px);
        border-color: rgba(129, 140, 248, .35);
        box-shadow: 0 35px 100px rgba(79, 70, 229, .22), 0 20px 60px rgba(0, 0, 0, .5);
    }

/* =========================
FEATURED CARD
========================= */

.featured-card {
    transform: translateY(-24px) scale(1.03);
    border-color: rgba(129, 140, 248, .28);
    box-shadow: 0 40px 120px rgba(79, 70, 229, .28), 0 25px 70px rgba(0, 0, 0, .55);
}

    .featured-card:hover {
        transform: translateY(-34px) scale(1.04);
    }

.featured-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 10;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(99, 102, 241, .18);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    color: #dbe4ff;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================
EMPTY CARDS
========================= */

.empty-card .team-image img {
    filter: brightness(.58) contrast(1.08) saturate(1.05);
}

.frontend-card .team-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, .96), rgba(0, 140, 180, .16) 60%, transparent 100%);
}

.backend-card .team-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, .96), rgba(120, 0, 160, .14) 60%, transparent 100%);
}

.empty-card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    color: #dbe4ff;
    font-size: .72rem;
    letter-spacing: 1px;
}

/* =========================
IMAGE
========================= */

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s ease, filter .8s ease;
        filter: brightness(.78) contrast(1.1);
    }

.team-card:hover .team-image img {
    transform: scale(1.06);
    filter: brightness(.88) contrast(1.12) saturate(1.08);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, .96), rgba(2, 6, 23, .15) 55%, transparent 100%);
}

/* =========================
LIGHTS
========================= */

.team-lights {
    position: absolute;
    top: 26px;
    left: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

    .team-lights span {
        width: 18px;
        height: 18px;
        opacity: .75;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .08);
        transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease, opacity .45s ease;
    }

        .team-lights span:nth-child(1) {
            background: rgba(99, 102, 241, .95);
        }

        .team-lights span:nth-child(2) {
            background: rgba(168, 85, 247, .78);
        }

        .team-lights span:nth-child(3) {
            background: rgba(255, 255, 255, .28);
        }

/* =========================
DOTS HOVER ANIMATION
========================= */

.team-card:hover .team-lights span:nth-child(1) {
    transform: translateX(-10px) scale(1.1);
}

.team-card:hover .team-lights span:nth-child(2) {
    transform: translateX(10px) scale(1.18);
}

.team-card:hover .team-lights span:nth-child(3) {
    transform: translateX(-10px) scale(1.1);
}

.team-card:hover .team-lights span {
    box-shadow: 0 0 30px rgba(99, 102, 241, .45), 0 0 60px rgba(168, 85, 247, .18);
}

/* =========================
CONTENT
========================= */

.team-content {
    position: relative;
    padding: 29px 28px 30px;
    text-align: center;
    z-index: 2;
}

.team-role {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .06);
    color: #c4b5fd;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.team-content h3 {
    font-size: 1.7rem;
    opacity: .9;
    font-weight: 900;
    margin-bottom: 10px;
    transition: transform .4s ease;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.team-card:hover h3 {
    transform: translateY(-2px);
}

.team-en-name {
    color: rgba(255, 255, 255, .45);
    font-size: .92rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

/* =========================
TAGS
========================= */

.team-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .team-tags span {
        padding: 9px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .06);
        color: #dbe4ff;
        font-size: .8rem;
        transition: transform .35s ease, border-color .35s ease;
    }

.team-card:hover .team-tags span {
    transform: translateY(-3px);
    border-color: rgba(129, 140, 248, .25);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px) {

    .featured-card {
        transform: none;
    }

        .featured-card:hover {
            transform: translateY(-14px);
        }

    .team-image {
        height: 400px;
    }
}

@media(max-width:768px) {

    .team-section {
        padding-top: 100px;
    }

    .team-grid {
        gap: 24px;
    }

    .team-content h3 {
        font-size: 1.6rem;
    }

    .team-image {
        height: 340px;
    }
}

/* =========================
BLOG SECTION
========================= */

.blog-section {
    position: relative;
    padding-top: 140px;
    z-index: 5;
}

.blog-section::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        right: -200px;
        top: -250px;
        background: radial-gradient(circle, rgba(99, 102, 241, .16), transparent 70%);
        filter: blur(100px);
        z-index: -2;
    }

.blog-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(99, 102, 241, .22);
    filter: blur(80px);
    right: -60px;
    top: -60px;
}

/* =========================
   CTA
========================= */

.cta-section {
    position: relative;
    z-index: 3;
}

.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: 50px 50px;
    background: linear-gradient(135deg, rgba(79, 70, 229, .28), rgba(124, 58, 237, .18));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(22px);
}

    .cta-box::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .04);
        top: -120px;
        left: -120px;
    }

    .cta-box::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(129, 140, 248, .08);
        bottom: -80px;
        right: -80px;
    }

    .cta-box h2 {
        position: relative;
        z-index: 2;
        color: white;
        opacity: .87;
        font-size: 2.7rem;
        font-weight: 900;
        margin-top: 1em;
    }

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .cta-actions a {
        font-size: 1em;
        transition: all ease .4s;
    }

/* =========================
   BUTTONS
========================= */

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border: none;
    box-shadow: 0 12px 30px rgba(79, 70, 229, .35);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 35px rgba(79, 70, 229, .45);
    }

.btn-outline-light:hover {
    color: #0f172a;
}

.cta-en-title {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .42);
    font-size: .82rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* =========================
   DESCRIPTION
========================= */

.cta-box p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 2.2;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* =========================
   ACTIONS
========================= */

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 45px;
}

    /* =========================
   BUTTONS
========================= */

    .cta-actions .btn {
        min-width: 150px;
        padding: 11px 0px;
        border-radius: 999px;
        font-weight: 700;
        opacity: .8;
        transition: all .35s ease;
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .cta-box {
        padding: 60px 35px;
    }

        .cta-box h2 {
            font-size: 2.4rem;
        }
}

@media(max-width:768px) {

    .cta-box {
        padding: 50px 25px;
        border-radius: 30px;
    }

        .cta-box h2 {
            font-size: 2.2rem;
            line-height: 1.6;
        }

    .cta-en-title {
        letter-spacing: 4px;
        font-size: .72rem;
    }

    .cta-box p {
        font-size: .95rem;
        line-height: 2;
    }

    .cta-actions .btn {
        width: 100%;
    }
}
